Skip to content

Commit 15b35d6

Browse files
1 parent 82e748a commit 15b35d6

File tree

12 files changed

+284
-12
lines changed

12 files changed

+284
-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-rev20260207-2.0.0</version>
25+
<version>v1-rev20260403-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-rev20260207-2.0.0'
38+
implementation 'com.google.apis:google-api-services-firebaseappcheck:v1-rev20260403-2.0.0'
3939
}
4040
```
4141

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

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3507,6 +3507,40 @@ public Delete setName(java.lang.String name) {
35073507
return this;
35083508
}
35093509

3510+
/**
3511+
* Optional. The checksum to be validated against the current DebugToken, to ensure the
3512+
* client has an up-to-date value before proceeding. This checksum is computed by the
3513+
* server based on the values of fields in the DebugToken object, and can be obtained from
3514+
* the DebugToken object received from the last CreateDebugToken, GetDebugToken,
3515+
* ListDebugTokens, or UpdateDebugToken call. This etag is strongly validated as defined
3516+
* by RFC 7232.
3517+
*/
3518+
@com.google.api.client.util.Key
3519+
private java.lang.String etag;
3520+
3521+
/** Optional. The checksum to be validated against the current DebugToken, to ensure the client has an
3522+
up-to-date value before proceeding. This checksum is computed by the server based on the values of
3523+
fields in the DebugToken object, and can be obtained from the DebugToken object received from the
3524+
last CreateDebugToken, GetDebugToken, ListDebugTokens, or UpdateDebugToken call. This etag is
3525+
strongly validated as defined by RFC 7232.
3526+
*/
3527+
public java.lang.String getEtag() {
3528+
return etag;
3529+
}
3530+
3531+
/**
3532+
* Optional. The checksum to be validated against the current DebugToken, to ensure the
3533+
* client has an up-to-date value before proceeding. This checksum is computed by the
3534+
* server based on the values of fields in the DebugToken object, and can be obtained from
3535+
* the DebugToken object received from the last CreateDebugToken, GetDebugToken,
3536+
* ListDebugTokens, or UpdateDebugToken call. This etag is strongly validated as defined
3537+
* by RFC 7232.
3538+
*/
3539+
public Delete setEtag(java.lang.String etag) {
3540+
this.etag = etag;
3541+
return this;
3542+
}
3543+
35103544
@Override
35113545
public Delete set(String parameterName, Object value) {
35123546
return (Delete) super.set(parameterName, value);

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

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,15 @@ public final class GoogleFirebaseAppcheckV1DebugToken extends com.google.api.cli
3939
@com.google.api.client.util.Key
4040
private java.lang.String displayName;
4141

42+
/**
43+
* Optional. This checksum is computed by the server based on the value of other fields, and may
44+
* be sent on update and delete requests to ensure the client has an up-to-date value before
45+
* proceeding. This etag is strongly validated as defined by RFC 7232.
46+
* The value may be {@code null}.
47+
*/
48+
@com.google.api.client.util.Key
49+
private java.lang.String etag;
50+
4251
/**
4352
* Required. The relative resource name of the debug token, in the format: ```
4453
* projects/{project_number}/apps/{app_id}/debugTokens/{debug_token_id} ```
@@ -82,6 +91,27 @@ public GoogleFirebaseAppcheckV1DebugToken setDisplayName(java.lang.String displa
8291
return this;
8392
}
8493

94+
/**
95+
* Optional. This checksum is computed by the server based on the value of other fields, and may
96+
* be sent on update and delete requests to ensure the client has an up-to-date value before
97+
* proceeding. This etag is strongly validated as defined by RFC 7232.
98+
* @return value or {@code null} for none
99+
*/
100+
public java.lang.String getEtag() {
101+
return etag;
102+
}
103+
104+
/**
105+
* Optional. This checksum is computed by the server based on the value of other fields, and may
106+
* be sent on update and delete requests to ensure the client has an up-to-date value before
107+
* proceeding. This etag is strongly validated as defined by RFC 7232.
108+
* @param etag etag or {@code null} for none
109+
*/
110+
public GoogleFirebaseAppcheckV1DebugToken setEtag(java.lang.String etag) {
111+
this.etag = etag;
112+
return this;
113+
}
114+
85115
/**
86116
* Required. The relative resource name of the debug token, in the format: ```
87117
* projects/{project_number}/apps/{app_id}/debugTokens/{debug_token_id} ```

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

Lines changed: 99 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,15 @@ public final class GoogleFirebaseAppcheckV1Service extends com.google.api.client
3737
@com.google.api.client.util.Key
3838
private java.lang.String enforcementMode;
3939

40+
/**
41+
* Optional. This checksum is computed by the server based on the value of other fields, and may
42+
* be sent on update and delete requests to ensure the client has an up-to-date value before
43+
* proceeding. This etag is strongly validated as defined by RFC 7232.
44+
* The value may be {@code null}.
45+
*/
46+
@com.google.api.client.util.Key
47+
private java.lang.String etag;
48+
4049
/**
4150
* Required. The relative resource name of the service configuration object, in the format: ```
4251
* projects/{project_number}/services/{service_id} ``` Note that the `service_id` element must be
@@ -49,6 +58,27 @@ public final class GoogleFirebaseAppcheckV1Service extends com.google.api.client
4958
@com.google.api.client.util.Key
5059
private java.lang.String name;
5160

61+
/**
62+
* Optional. The replay protection enforcement mode for this service. Note that this field cannot
63+
* be set to a level higher than the overall App Check enforcement mode. For example, if the
64+
* overall App Check enforcement mode is set to `UNENFORCED`, this field cannot be set to
65+
* `ENFORCED`. In order to enforce replay protection, you must first enforce App Check. An HTTP
66+
* 400 error will be returned in this case. By default, this field is set to `OFF`. Setting this
67+
* field to `UNENFORCED` or `ENFORCED` is considered opting into replay protection. Once opted in,
68+
* requests to your protected services may experience higher latency. To opt out of replay
69+
* protection after opting in, set this field to `OFF`.
70+
* The value may be {@code null}.
71+
*/
72+
@com.google.api.client.util.Key
73+
private java.lang.String replayProtection;
74+
75+
/**
76+
* Output only. Timestamp when this service configuration object was most recently updated.
77+
* The value may be {@code null}.
78+
*/
79+
@com.google.api.client.util.Key
80+
private String updateTime;
81+
5282
/**
5383
* Required. The App Check enforcement mode for this service.
5484
* @return value or {@code null} for none
@@ -66,6 +96,27 @@ public GoogleFirebaseAppcheckV1Service setEnforcementMode(java.lang.String enfor
6696
return this;
6797
}
6898

99+
/**
100+
* Optional. This checksum is computed by the server based on the value of other fields, and may
101+
* be sent on update and delete requests to ensure the client has an up-to-date value before
102+
* proceeding. This etag is strongly validated as defined by RFC 7232.
103+
* @return value or {@code null} for none
104+
*/
105+
public java.lang.String getEtag() {
106+
return etag;
107+
}
108+
109+
/**
110+
* Optional. This checksum is computed by the server based on the value of other fields, and may
111+
* be sent on update and delete requests to ensure the client has an up-to-date value before
112+
* proceeding. This etag is strongly validated as defined by RFC 7232.
113+
* @param etag etag or {@code null} for none
114+
*/
115+
public GoogleFirebaseAppcheckV1Service setEtag(java.lang.String etag) {
116+
this.etag = etag;
117+
return this;
118+
}
119+
69120
/**
70121
* Required. The relative resource name of the service configuration object, in the format: ```
71122
* projects/{project_number}/services/{service_id} ``` Note that the `service_id` element must be
@@ -93,6 +144,54 @@ public GoogleFirebaseAppcheckV1Service setName(java.lang.String name) {
93144
return this;
94145
}
95146

147+
/**
148+
* Optional. The replay protection enforcement mode for this service. Note that this field cannot
149+
* be set to a level higher than the overall App Check enforcement mode. For example, if the
150+
* overall App Check enforcement mode is set to `UNENFORCED`, this field cannot be set to
151+
* `ENFORCED`. In order to enforce replay protection, you must first enforce App Check. An HTTP
152+
* 400 error will be returned in this case. By default, this field is set to `OFF`. Setting this
153+
* field to `UNENFORCED` or `ENFORCED` is considered opting into replay protection. Once opted in,
154+
* requests to your protected services may experience higher latency. To opt out of replay
155+
* protection after opting in, set this field to `OFF`.
156+
* @return value or {@code null} for none
157+
*/
158+
public java.lang.String getReplayProtection() {
159+
return replayProtection;
160+
}
161+
162+
/**
163+
* Optional. The replay protection enforcement mode for this service. Note that this field cannot
164+
* be set to a level higher than the overall App Check enforcement mode. For example, if the
165+
* overall App Check enforcement mode is set to `UNENFORCED`, this field cannot be set to
166+
* `ENFORCED`. In order to enforce replay protection, you must first enforce App Check. An HTTP
167+
* 400 error will be returned in this case. By default, this field is set to `OFF`. Setting this
168+
* field to `UNENFORCED` or `ENFORCED` is considered opting into replay protection. Once opted in,
169+
* requests to your protected services may experience higher latency. To opt out of replay
170+
* protection after opting in, set this field to `OFF`.
171+
* @param replayProtection replayProtection or {@code null} for none
172+
*/
173+
public GoogleFirebaseAppcheckV1Service setReplayProtection(java.lang.String replayProtection) {
174+
this.replayProtection = replayProtection;
175+
return this;
176+
}
177+
178+
/**
179+
* Output only. Timestamp when this service configuration object was most recently updated.
180+
* @return value or {@code null} for none
181+
*/
182+
public String getUpdateTime() {
183+
return updateTime;
184+
}
185+
186+
/**
187+
* Output only. Timestamp when this service configuration object was most recently updated.
188+
* @param updateTime updateTime or {@code null} for none
189+
*/
190+
public GoogleFirebaseAppcheckV1Service setUpdateTime(String updateTime) {
191+
this.updateTime = updateTime;
192+
return this;
193+
}
194+
96195
@Override
97196
public GoogleFirebaseAppcheckV1Service set(String fieldName, Object value) {
98197
return (GoogleFirebaseAppcheckV1Service) super.set(fieldName, value);

clients/google-api-services-firebaseappcheck/v1/2.0.0/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88

99
<groupId>com.google.apis</groupId>
1010
<artifactId>google-api-services-firebaseappcheck</artifactId>
11-
<version>v1-rev20260207-2.0.0</version>
12-
<name>Firebase App Check API v1-rev20260207-2.0.0</name>
11+
<version>v1-rev20260403-2.0.0</version>
12+
<name>Firebase App Check API v1-rev20260403-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-firebaseappcheck/v1/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-rev20260207-2.0.0</version>
25+
<version>v1-rev20260403-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-rev20260207-2.0.0'
38+
implementation 'com.google.apis:google-api-services-firebaseappcheck:v1-rev20260403-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-firebaseappcheck/v1beta/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>v1beta-rev20260207-2.0.0</version>
25+
<version>v1beta-rev20260403-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:v1beta-rev20260207-2.0.0'
38+
implementation 'com.google.apis:google-api-services-firebaseappcheck:v1beta-rev20260403-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-firebaseappcheck/v1beta/2.0.0/com/google/api/services/firebaseappcheck/v1beta/Firebaseappcheck.java

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4094,6 +4094,40 @@ public Delete setName(java.lang.String name) {
40944094
return this;
40954095
}
40964096

4097+
/**
4098+
* Optional. The checksum to be validated against the current DebugToken, to ensure the
4099+
* client has an up-to-date value before proceeding. This checksum is computed by the
4100+
* server based on the values of fields in the DebugToken object, and can be obtained from
4101+
* the DebugToken object received from the last CreateDebugToken, GetDebugToken,
4102+
* ListDebugTokens, or UpdateDebugToken call. This etag is strongly validated as defined
4103+
* by RFC 7232.
4104+
*/
4105+
@com.google.api.client.util.Key
4106+
private java.lang.String etag;
4107+
4108+
/** Optional. The checksum to be validated against the current DebugToken, to ensure the client has an
4109+
up-to-date value before proceeding. This checksum is computed by the server based on the values of
4110+
fields in the DebugToken object, and can be obtained from the DebugToken object received from the
4111+
last CreateDebugToken, GetDebugToken, ListDebugTokens, or UpdateDebugToken call. This etag is
4112+
strongly validated as defined by RFC 7232.
4113+
*/
4114+
public java.lang.String getEtag() {
4115+
return etag;
4116+
}
4117+
4118+
/**
4119+
* Optional. The checksum to be validated against the current DebugToken, to ensure the
4120+
* client has an up-to-date value before proceeding. This checksum is computed by the
4121+
* server based on the values of fields in the DebugToken object, and can be obtained from
4122+
* the DebugToken object received from the last CreateDebugToken, GetDebugToken,
4123+
* ListDebugTokens, or UpdateDebugToken call. This etag is strongly validated as defined
4124+
* by RFC 7232.
4125+
*/
4126+
public Delete setEtag(java.lang.String etag) {
4127+
this.etag = etag;
4128+
return this;
4129+
}
4130+
40974131
@Override
40984132
public Delete set(String parameterName, Object value) {
40994133
return (Delete) super.set(parameterName, value);

clients/google-api-services-firebaseappcheck/v1beta/2.0.0/com/google/api/services/firebaseappcheck/v1beta/model/GoogleFirebaseAppcheckV1betaDebugToken.java

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,15 @@ public final class GoogleFirebaseAppcheckV1betaDebugToken extends com.google.api
3939
@com.google.api.client.util.Key
4040
private java.lang.String displayName;
4141

42+
/**
43+
* Optional. This checksum is computed by the server based on the value of other fields, and may
44+
* be sent on update and delete requests to ensure the client has an up-to-date value before
45+
* proceeding. This etag is strongly validated as defined by RFC 7232.
46+
* The value may be {@code null}.
47+
*/
48+
@com.google.api.client.util.Key
49+
private java.lang.String etag;
50+
4251
/**
4352
* Required. The relative resource name of the debug token, in the format: ```
4453
* projects/{project_number}/apps/{app_id}/debugTokens/{debug_token_id} ```
@@ -82,6 +91,27 @@ public GoogleFirebaseAppcheckV1betaDebugToken setDisplayName(java.lang.String di
8291
return this;
8392
}
8493

94+
/**
95+
* Optional. This checksum is computed by the server based on the value of other fields, and may
96+
* be sent on update and delete requests to ensure the client has an up-to-date value before
97+
* proceeding. This etag is strongly validated as defined by RFC 7232.
98+
* @return value or {@code null} for none
99+
*/
100+
public java.lang.String getEtag() {
101+
return etag;
102+
}
103+
104+
/**
105+
* Optional. This checksum is computed by the server based on the value of other fields, and may
106+
* be sent on update and delete requests to ensure the client has an up-to-date value before
107+
* proceeding. This etag is strongly validated as defined by RFC 7232.
108+
* @param etag etag or {@code null} for none
109+
*/
110+
public GoogleFirebaseAppcheckV1betaDebugToken setEtag(java.lang.String etag) {
111+
this.etag = etag;
112+
return this;
113+
}
114+
85115
/**
86116
* Required. The relative resource name of the debug token, in the format: ```
87117
* projects/{project_number}/apps/{app_id}/debugTokens/{debug_token_id} ```

0 commit comments

Comments
 (0)