Skip to content

Commit 33e66d6

Browse files
1 parent 97691c0 commit 33e66d6

File tree

8 files changed

+96
-12
lines changed

8 files changed

+96
-12
lines changed

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

clients/google-api-services-firebaseappdistribution/v1/2.0.0/com/google/api/services/firebaseappdistribution/v1/model/GdataBlobstore2Info.java

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,14 @@ public final class GdataBlobstore2Info extends com.google.api.client.json.Generi
4444
@com.google.api.client.util.Key
4545
private java.lang.String blobId;
4646

47+
/**
48+
* A serialized External Read Token passed from Bigstore -> Scotty for a GCS download. This field
49+
* must never be consumed outside of Bigstore, and is not applicable to non-GCS media uploads.
50+
* The value may be {@code null}.
51+
*/
52+
@com.google.api.client.util.Key
53+
private java.lang.String downloadExternalReadToken;
54+
4755
/**
4856
* Read handle passed from Bigstore -> Scotty for a GCS download. This is a signed, serialized
4957
* blobstore2.ReadHandle proto which must never be set outside of Bigstore, and is not applicable
@@ -104,6 +112,55 @@ public GdataBlobstore2Info setBlobId(java.lang.String blobId) {
104112
return this;
105113
}
106114

115+
/**
116+
* A serialized External Read Token passed from Bigstore -> Scotty for a GCS download. This field
117+
* must never be consumed outside of Bigstore, and is not applicable to non-GCS media uploads.
118+
* @see #decodeDownloadExternalReadToken()
119+
* @return value or {@code null} for none
120+
*/
121+
public java.lang.String getDownloadExternalReadToken() {
122+
return downloadExternalReadToken;
123+
}
124+
125+
/**
126+
* A serialized External Read Token passed from Bigstore -> Scotty for a GCS download. This field
127+
* must never be consumed outside of Bigstore, and is not applicable to non-GCS media uploads.
128+
* @see #getDownloadExternalReadToken()
129+
* @return Base64 decoded value or {@code null} for none
130+
*
131+
* @since 1.14
132+
*/
133+
public byte[] decodeDownloadExternalReadToken() {
134+
return com.google.api.client.util.Base64.decodeBase64(downloadExternalReadToken);
135+
}
136+
137+
/**
138+
* A serialized External Read Token passed from Bigstore -> Scotty for a GCS download. This field
139+
* must never be consumed outside of Bigstore, and is not applicable to non-GCS media uploads.
140+
* @see #encodeDownloadExternalReadToken()
141+
* @param downloadExternalReadToken downloadExternalReadToken or {@code null} for none
142+
*/
143+
public GdataBlobstore2Info setDownloadExternalReadToken(java.lang.String downloadExternalReadToken) {
144+
this.downloadExternalReadToken = downloadExternalReadToken;
145+
return this;
146+
}
147+
148+
/**
149+
* A serialized External Read Token passed from Bigstore -> Scotty for a GCS download. This field
150+
* must never be consumed outside of Bigstore, and is not applicable to non-GCS media uploads.
151+
* @see #setDownloadExternalReadToken()
152+
*
153+
* <p>
154+
* The value is encoded Base64 or {@code null} for none.
155+
* </p>
156+
*
157+
* @since 1.14
158+
*/
159+
public GdataBlobstore2Info encodeDownloadExternalReadToken(byte[] downloadExternalReadToken) {
160+
this.downloadExternalReadToken = com.google.api.client.util.Base64.encodeBase64URLSafeString(downloadExternalReadToken);
161+
return this;
162+
}
163+
107164
/**
108165
* Read handle passed from Bigstore -> Scotty for a GCS download. This is a signed, serialized
109166
* blobstore2.ReadHandle proto which must never be set outside of Bigstore, and is not applicable

clients/google-api-services-firebaseappdistribution/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-firebaseappdistribution</artifactId>
11-
<version>v1-rev20251113-2.0.0</version>
12-
<name>Firebase App Distribution API v1-rev20251113-2.0.0</name>
11+
<version>v1-rev20251203-2.0.0</version>
12+
<name>Firebase App Distribution API v1-rev20251203-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

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

clients/google-api-services-firebaseappdistribution/v1alpha/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-firebaseappdistribution</artifactId>
25-
<version>v1alpha-rev20251107-2.0.0</version>
25+
<version>v1alpha-rev20251203-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-firebaseappdistribution:v1alpha-rev20251107-2.0.0'
38+
implementation 'com.google.apis:google-api-services-firebaseappdistribution:v1alpha-rev20251203-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-firebaseappdistribution/v1alpha/2.0.0/com/google/api/services/firebaseappdistribution/v1alpha/model/GoogleFirebaseAppdistroV1alphaDeviceExecution.java

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,14 @@ public final class GoogleFirebaseAppdistroV1alphaDeviceExecution extends com.goo
7878
@com.google.api.client.util.Key
7979
private java.lang.String failedReason;
8080

81+
/**
82+
* Output only. Indicates that the test replayed saved actions and concluded without a final AI
83+
* assertion.
84+
* The value may be {@code null}.
85+
*/
86+
@com.google.api.client.util.Key
87+
private java.lang.Boolean finalAiAssertionMissing;
88+
8189
/**
8290
* Output only. The reason why the test was inconclusive.
8391
* The value may be {@code null}.
@@ -249,6 +257,25 @@ public GoogleFirebaseAppdistroV1alphaDeviceExecution setFailedReason(java.lang.S
249257
return this;
250258
}
251259

260+
/**
261+
* Output only. Indicates that the test replayed saved actions and concluded without a final AI
262+
* assertion.
263+
* @return value or {@code null} for none
264+
*/
265+
public java.lang.Boolean getFinalAiAssertionMissing() {
266+
return finalAiAssertionMissing;
267+
}
268+
269+
/**
270+
* Output only. Indicates that the test replayed saved actions and concluded without a final AI
271+
* assertion.
272+
* @param finalAiAssertionMissing finalAiAssertionMissing or {@code null} for none
273+
*/
274+
public GoogleFirebaseAppdistroV1alphaDeviceExecution setFinalAiAssertionMissing(java.lang.Boolean finalAiAssertionMissing) {
275+
this.finalAiAssertionMissing = finalAiAssertionMissing;
276+
return this;
277+
}
278+
252279
/**
253280
* Output only. The reason why the test was inconclusive.
254281
* @return value or {@code null} for none

clients/google-api-services-firebaseappdistribution/v1alpha/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-firebaseappdistribution</artifactId>
11-
<version>v1alpha-rev20251107-2.0.0</version>
12-
<name>Firebase App Distribution API v1alpha-rev20251107-2.0.0</name>
11+
<version>v1alpha-rev20251203-2.0.0</version>
12+
<name>Firebase App Distribution API v1alpha-rev20251203-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-firebaseappdistribution/v1alpha/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-firebaseappdistribution</artifactId>
25-
<version>v1alpha-rev20251107-2.0.0</version>
25+
<version>v1alpha-rev20251203-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-firebaseappdistribution:v1alpha-rev20251107-2.0.0'
38+
implementation 'com.google.apis:google-api-services-firebaseappdistribution:v1alpha-rev20251203-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)