Skip to content

Commit b387ceb

Browse files
1 parent 1837913 commit b387ceb

21 files changed

+1124
-12
lines changed

clients/google-api-services-firebaseappcheck/v1/2.0.0/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
2222
<dependency>
2323
<groupId>com.google.apis</groupId>
2424
<artifactId>google-api-services-firebaseappcheck</artifactId>
25-
<version>v1-rev20240930-2.0.0</version>
25+
<version>v1-rev20250901-2.0.0</version>
2626
</dependency>
2727
</dependencies>
2828
</project>
@@ -35,7 +35,7 @@ repositories {
3535
mavenCentral()
3636
}
3737
dependencies {
38-
implementation 'com.google.apis:google-api-services-firebaseappcheck:v1-rev20240930-2.0.0'
38+
implementation 'com.google.apis:google-api-services-firebaseappcheck:v1-rev20250901-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-firebaseappcheck/v1/2.0.0/com/google/api/services/firebaseappcheck/v1/model/GoogleFirebaseAppcheckV1PlayIntegrityConfig.java

Lines changed: 132 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,47 @@
3535
@SuppressWarnings("javadoc")
3636
public final class GoogleFirebaseAppcheckV1PlayIntegrityConfig extends com.google.api.client.json.GenericJson {
3737

38+
/**
39+
* Specifies account requirements for Android devices running your app. These settings correspond
40+
* to requirements on the [**account details**
41+
* field](https://developer.android.com/google/play/integrity/verdicts#account-details-field)
42+
* obtained from the Play Integrity API. See the [default responses
43+
* table](https://developer.android.com/google/play/integrity/setup#default) for a quick summary.
44+
* The default values for these settings work for most apps, and are recommended.
45+
* The value may be {@code null}.
46+
*/
47+
@com.google.api.client.util.Key
48+
private GoogleFirebaseAppcheckV1PlayIntegrityConfigAccountDetails accountDetails;
49+
50+
/**
51+
* Specifies application integrity requirements for Android devices running your app. These
52+
* settings correspond to requirements on the [**application integrity**
53+
* field](https://developer.android.com/google/play/integrity/verdicts#application-integrity-
54+
* field) obtained from the Play Integrity API. See the [default responses
55+
* table](https://developer.android.com/google/play/integrity/setup#default) for a quick summary.
56+
* The default values for these settings work for most apps, and are recommended.
57+
* The value may be {@code null}.
58+
*/
59+
@com.google.api.client.util.Key
60+
private GoogleFirebaseAppcheckV1PlayIntegrityConfigAppIntegrity appIntegrity;
61+
62+
/**
63+
* Specifies device integrity requirements for Android devices running your app. These settings
64+
* correspond to requirements on the [**device integrity**
65+
* field](https://developer.android.com/google/play/integrity/verdicts#device-integrity-field)
66+
* obtained from the Play Integrity API. See the [default responses
67+
* table](https://developer.android.com/google/play/integrity/setup#default) for a quick summary.
68+
* Warning: There are also
69+
* [conditional](https://developer.android.com/google/play/integrity/setup#conditional) as well as
70+
* [optional](https://developer.android.com/google/play/integrity/setup#optional_device_informatio
71+
* n) responses that you can receive, but requires additional explicit opt-in from you. The App
72+
* Check API is **not** responsible for any such opt-ins. The default values for these settings
73+
* work for most apps, and are recommended.
74+
* The value may be {@code null}.
75+
*/
76+
@com.google.api.client.util.Key
77+
private GoogleFirebaseAppcheckV1PlayIntegrityConfigDeviceIntegrity deviceIntegrity;
78+
3879
/**
3980
* Required. The relative resource name of the Play Integrity configuration object, in the format:
4081
* ``` projects/{project_number}/apps/{app_id}/playIntegrityConfig ```
@@ -52,6 +93,97 @@ public final class GoogleFirebaseAppcheckV1PlayIntegrityConfig extends com.googl
5293
@com.google.api.client.util.Key
5394
private String tokenTtl;
5495

96+
/**
97+
* Specifies account requirements for Android devices running your app. These settings correspond
98+
* to requirements on the [**account details**
99+
* field](https://developer.android.com/google/play/integrity/verdicts#account-details-field)
100+
* obtained from the Play Integrity API. See the [default responses
101+
* table](https://developer.android.com/google/play/integrity/setup#default) for a quick summary.
102+
* The default values for these settings work for most apps, and are recommended.
103+
* @return value or {@code null} for none
104+
*/
105+
public GoogleFirebaseAppcheckV1PlayIntegrityConfigAccountDetails getAccountDetails() {
106+
return accountDetails;
107+
}
108+
109+
/**
110+
* Specifies account requirements for Android devices running your app. These settings correspond
111+
* to requirements on the [**account details**
112+
* field](https://developer.android.com/google/play/integrity/verdicts#account-details-field)
113+
* obtained from the Play Integrity API. See the [default responses
114+
* table](https://developer.android.com/google/play/integrity/setup#default) for a quick summary.
115+
* The default values for these settings work for most apps, and are recommended.
116+
* @param accountDetails accountDetails or {@code null} for none
117+
*/
118+
public GoogleFirebaseAppcheckV1PlayIntegrityConfig setAccountDetails(GoogleFirebaseAppcheckV1PlayIntegrityConfigAccountDetails accountDetails) {
119+
this.accountDetails = accountDetails;
120+
return this;
121+
}
122+
123+
/**
124+
* Specifies application integrity requirements for Android devices running your app. These
125+
* settings correspond to requirements on the [**application integrity**
126+
* field](https://developer.android.com/google/play/integrity/verdicts#application-integrity-
127+
* field) obtained from the Play Integrity API. See the [default responses
128+
* table](https://developer.android.com/google/play/integrity/setup#default) for a quick summary.
129+
* The default values for these settings work for most apps, and are recommended.
130+
* @return value or {@code null} for none
131+
*/
132+
public GoogleFirebaseAppcheckV1PlayIntegrityConfigAppIntegrity getAppIntegrity() {
133+
return appIntegrity;
134+
}
135+
136+
/**
137+
* Specifies application integrity requirements for Android devices running your app. These
138+
* settings correspond to requirements on the [**application integrity**
139+
* field](https://developer.android.com/google/play/integrity/verdicts#application-integrity-
140+
* field) obtained from the Play Integrity API. See the [default responses
141+
* table](https://developer.android.com/google/play/integrity/setup#default) for a quick summary.
142+
* The default values for these settings work for most apps, and are recommended.
143+
* @param appIntegrity appIntegrity or {@code null} for none
144+
*/
145+
public GoogleFirebaseAppcheckV1PlayIntegrityConfig setAppIntegrity(GoogleFirebaseAppcheckV1PlayIntegrityConfigAppIntegrity appIntegrity) {
146+
this.appIntegrity = appIntegrity;
147+
return this;
148+
}
149+
150+
/**
151+
* Specifies device integrity requirements for Android devices running your app. These settings
152+
* correspond to requirements on the [**device integrity**
153+
* field](https://developer.android.com/google/play/integrity/verdicts#device-integrity-field)
154+
* obtained from the Play Integrity API. See the [default responses
155+
* table](https://developer.android.com/google/play/integrity/setup#default) for a quick summary.
156+
* Warning: There are also
157+
* [conditional](https://developer.android.com/google/play/integrity/setup#conditional) as well as
158+
* [optional](https://developer.android.com/google/play/integrity/setup#optional_device_informatio
159+
* n) responses that you can receive, but requires additional explicit opt-in from you. The App
160+
* Check API is **not** responsible for any such opt-ins. The default values for these settings
161+
* work for most apps, and are recommended.
162+
* @return value or {@code null} for none
163+
*/
164+
public GoogleFirebaseAppcheckV1PlayIntegrityConfigDeviceIntegrity getDeviceIntegrity() {
165+
return deviceIntegrity;
166+
}
167+
168+
/**
169+
* Specifies device integrity requirements for Android devices running your app. These settings
170+
* correspond to requirements on the [**device integrity**
171+
* field](https://developer.android.com/google/play/integrity/verdicts#device-integrity-field)
172+
* obtained from the Play Integrity API. See the [default responses
173+
* table](https://developer.android.com/google/play/integrity/setup#default) for a quick summary.
174+
* Warning: There are also
175+
* [conditional](https://developer.android.com/google/play/integrity/setup#conditional) as well as
176+
* [optional](https://developer.android.com/google/play/integrity/setup#optional_device_informatio
177+
* n) responses that you can receive, but requires additional explicit opt-in from you. The App
178+
* Check API is **not** responsible for any such opt-ins. The default values for these settings
179+
* work for most apps, and are recommended.
180+
* @param deviceIntegrity deviceIntegrity or {@code null} for none
181+
*/
182+
public GoogleFirebaseAppcheckV1PlayIntegrityConfig setDeviceIntegrity(GoogleFirebaseAppcheckV1PlayIntegrityConfigDeviceIntegrity deviceIntegrity) {
183+
this.deviceIntegrity = deviceIntegrity;
184+
return this;
185+
}
186+
55187
/**
56188
* Required. The relative resource name of the Play Integrity configuration object, in the format:
57189
* ``` projects/{project_number}/apps/{app_id}/playIntegrityConfig ```
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,90 @@
1+
/*
2+
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
3+
* in compliance with the License. You may obtain a copy of the License at
4+
*
5+
* http://www.apache.org/licenses/LICENSE-2.0
6+
*
7+
* Unless required by applicable law or agreed to in writing, software distributed under the License
8+
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
9+
* or implied. See the License for the specific language governing permissions and limitations under
10+
* the License.
11+
*/
12+
/*
13+
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
14+
* Modify at your own risk.
15+
*/
16+
17+
package com.google.api.services.firebaseappcheck.v1.model;
18+
19+
/**
20+
* A settings object specifying account requirements for Android devices running your app. These
21+
* settings correspond to requirements on the [**account details**
22+
* field](https://developer.android.com/google/play/integrity/verdicts#account-details-field)
23+
* obtained from the Play Integrity API. See the [default responses
24+
* table](https://developer.android.com/google/play/integrity/setup#default) for a quick summary.
25+
* The default values for these settings work for most apps, and are recommended.
26+
*
27+
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
28+
* transmitted over HTTP when working with the Firebase App Check API. For a detailed explanation
29+
* see:
30+
* <a href="https://developers.google.com/api-client-library/java/google-http-java-client/json">https://developers.google.com/api-client-library/java/google-http-java-client/json</a>
31+
* </p>
32+
*
33+
* @author Google, Inc.
34+
*/
35+
@SuppressWarnings("javadoc")
36+
public final class GoogleFirebaseAppcheckV1PlayIntegrityConfigAccountDetails extends com.google.api.client.json.GenericJson {
37+
38+
/**
39+
* Specifies whether the caller must have received the [`LICENSED`
40+
* verdict](https://developer.android.com/google/play/integrity/verdicts#account-details-field).
41+
* For additional details about scenarios where your users will receive this `LICENSED` label, see
42+
* [the default responses
43+
* table](https://developer.android.com/google/play/integrity/setup#default). If set to `true`,
44+
* apps without the `LICENSED` app licensing verdict will be rejected. If set to `false`, any app
45+
* licensing verdict is allowed. The default value is `false`.
46+
* The value may be {@code null}.
47+
*/
48+
@com.google.api.client.util.Key
49+
private java.lang.Boolean requireLicensed;
50+
51+
/**
52+
* Specifies whether the caller must have received the [`LICENSED`
53+
* verdict](https://developer.android.com/google/play/integrity/verdicts#account-details-field).
54+
* For additional details about scenarios where your users will receive this `LICENSED` label, see
55+
* [the default responses
56+
* table](https://developer.android.com/google/play/integrity/setup#default). If set to `true`,
57+
* apps without the `LICENSED` app licensing verdict will be rejected. If set to `false`, any app
58+
* licensing verdict is allowed. The default value is `false`.
59+
* @return value or {@code null} for none
60+
*/
61+
public java.lang.Boolean getRequireLicensed() {
62+
return requireLicensed;
63+
}
64+
65+
/**
66+
* Specifies whether the caller must have received the [`LICENSED`
67+
* verdict](https://developer.android.com/google/play/integrity/verdicts#account-details-field).
68+
* For additional details about scenarios where your users will receive this `LICENSED` label, see
69+
* [the default responses
70+
* table](https://developer.android.com/google/play/integrity/setup#default). If set to `true`,
71+
* apps without the `LICENSED` app licensing verdict will be rejected. If set to `false`, any app
72+
* licensing verdict is allowed. The default value is `false`.
73+
* @param requireLicensed requireLicensed or {@code null} for none
74+
*/
75+
public GoogleFirebaseAppcheckV1PlayIntegrityConfigAccountDetails setRequireLicensed(java.lang.Boolean requireLicensed) {
76+
this.requireLicensed = requireLicensed;
77+
return this;
78+
}
79+
80+
@Override
81+
public GoogleFirebaseAppcheckV1PlayIntegrityConfigAccountDetails set(String fieldName, Object value) {
82+
return (GoogleFirebaseAppcheckV1PlayIntegrityConfigAccountDetails) super.set(fieldName, value);
83+
}
84+
85+
@Override
86+
public GoogleFirebaseAppcheckV1PlayIntegrityConfigAccountDetails clone() {
87+
return (GoogleFirebaseAppcheckV1PlayIntegrityConfigAccountDetails) super.clone();
88+
}
89+
90+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,96 @@
1+
/*
2+
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
3+
* in compliance with the License. You may obtain a copy of the License at
4+
*
5+
* http://www.apache.org/licenses/LICENSE-2.0
6+
*
7+
* Unless required by applicable law or agreed to in writing, software distributed under the License
8+
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
9+
* or implied. See the License for the specific language governing permissions and limitations under
10+
* the License.
11+
*/
12+
/*
13+
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
14+
* Modify at your own risk.
15+
*/
16+
17+
package com.google.api.services.firebaseappcheck.v1.model;
18+
19+
/**
20+
* A settings object specifying application integrity requirements for Android devices running your
21+
* app. These settings correspond to requirements on the [**application integrity**
22+
* field](https://developer.android.com/google/play/integrity/verdicts#application-integrity-field)
23+
* obtained from the Play Integrity API. See the [default responses
24+
* table](https://developer.android.com/google/play/integrity/setup#default) for a quick summary.
25+
* The default values for these settings work for most apps, and are recommended.
26+
*
27+
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
28+
* transmitted over HTTP when working with the Firebase App Check API. For a detailed explanation
29+
* see:
30+
* <a href="https://developers.google.com/api-client-library/java/google-http-java-client/json">https://developers.google.com/api-client-library/java/google-http-java-client/json</a>
31+
* </p>
32+
*
33+
* @author Google, Inc.
34+
*/
35+
@SuppressWarnings("javadoc")
36+
public final class GoogleFirebaseAppcheckV1PlayIntegrityConfigAppIntegrity extends com.google.api.client.json.GenericJson {
37+
38+
/**
39+
* Specifies whether your running app is allowed to have the `UNRECOGNIZED_VERSION` [app
40+
* recognition verdict](https://developer.android.com/google/play/integrity/verdicts#application-
41+
* integrity-field). Note that the app recognition verdict `PLAY_RECOGNIZED` is a strong,
42+
* comprehensive integrity signal that takes into account various other signals, including
43+
* conditional and optional device integrity responses that you have opted into. If your app is
44+
* published off-Play, this field should be set to `true` to allow instances of your app installed
45+
* from off-Play sources to function. If set to `false`, only `PLAY_RECOGNIZED` verdicts are
46+
* allowed, and both `UNRECOGNIZED_VERSION` and `UNEVALUATED` will be rejected. If set to `true`,
47+
* any app recognition verdict is allowed. The default value is `false`.
48+
* The value may be {@code null}.
49+
*/
50+
@com.google.api.client.util.Key
51+
private java.lang.Boolean allowUnrecognizedVersion;
52+
53+
/**
54+
* Specifies whether your running app is allowed to have the `UNRECOGNIZED_VERSION` [app
55+
* recognition verdict](https://developer.android.com/google/play/integrity/verdicts#application-
56+
* integrity-field). Note that the app recognition verdict `PLAY_RECOGNIZED` is a strong,
57+
* comprehensive integrity signal that takes into account various other signals, including
58+
* conditional and optional device integrity responses that you have opted into. If your app is
59+
* published off-Play, this field should be set to `true` to allow instances of your app installed
60+
* from off-Play sources to function. If set to `false`, only `PLAY_RECOGNIZED` verdicts are
61+
* allowed, and both `UNRECOGNIZED_VERSION` and `UNEVALUATED` will be rejected. If set to `true`,
62+
* any app recognition verdict is allowed. The default value is `false`.
63+
* @return value or {@code null} for none
64+
*/
65+
public java.lang.Boolean getAllowUnrecognizedVersion() {
66+
return allowUnrecognizedVersion;
67+
}
68+
69+
/**
70+
* Specifies whether your running app is allowed to have the `UNRECOGNIZED_VERSION` [app
71+
* recognition verdict](https://developer.android.com/google/play/integrity/verdicts#application-
72+
* integrity-field). Note that the app recognition verdict `PLAY_RECOGNIZED` is a strong,
73+
* comprehensive integrity signal that takes into account various other signals, including
74+
* conditional and optional device integrity responses that you have opted into. If your app is
75+
* published off-Play, this field should be set to `true` to allow instances of your app installed
76+
* from off-Play sources to function. If set to `false`, only `PLAY_RECOGNIZED` verdicts are
77+
* allowed, and both `UNRECOGNIZED_VERSION` and `UNEVALUATED` will be rejected. If set to `true`,
78+
* any app recognition verdict is allowed. The default value is `false`.
79+
* @param allowUnrecognizedVersion allowUnrecognizedVersion or {@code null} for none
80+
*/
81+
public GoogleFirebaseAppcheckV1PlayIntegrityConfigAppIntegrity setAllowUnrecognizedVersion(java.lang.Boolean allowUnrecognizedVersion) {
82+
this.allowUnrecognizedVersion = allowUnrecognizedVersion;
83+
return this;
84+
}
85+
86+
@Override
87+
public GoogleFirebaseAppcheckV1PlayIntegrityConfigAppIntegrity set(String fieldName, Object value) {
88+
return (GoogleFirebaseAppcheckV1PlayIntegrityConfigAppIntegrity) super.set(fieldName, value);
89+
}
90+
91+
@Override
92+
public GoogleFirebaseAppcheckV1PlayIntegrityConfigAppIntegrity clone() {
93+
return (GoogleFirebaseAppcheckV1PlayIntegrityConfigAppIntegrity) super.clone();
94+
}
95+
96+
}

0 commit comments

Comments
 (0)