Skip to content

Commit a6a8045

Browse files
1 parent 787a9fd commit a6a8045

File tree

4 files changed

+68
-6
lines changed

4 files changed

+68
-6
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-rev20251203-2.0.0</version>
25+
<version>v1-rev20260113-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-rev20251203-2.0.0'
38+
implementation 'com.google.apis:google-api-services-firebaseappdistribution:v1-rev20260113-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: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,15 @@ public final class GdataBlobstore2Info extends com.google.api.client.json.Generi
6969
@com.google.api.client.util.Key
7070
private java.lang.String readToken;
7171

72+
/**
73+
* A serialized Object Fragment List Creation Info passed from Bigstore -> Scotty for a GCS
74+
* upload. This field must never be consumed outside of Bigstore, and is not applicable to non-GCS
75+
* media uploads.
76+
* The value may be {@code null}.
77+
*/
78+
@com.google.api.client.util.Key
79+
private java.lang.String uploadFragmentListCreationInfo;
80+
7281
/**
7382
* Metadata passed from Blobstore -> Scotty for a new GCS upload. This is a signed, serialized
7483
* blobstore2.BlobMetadataContainer proto which must never be consumed outside of Bigstore, and is
@@ -233,6 +242,59 @@ public GdataBlobstore2Info setReadToken(java.lang.String readToken) {
233242
return this;
234243
}
235244

245+
/**
246+
* A serialized Object Fragment List Creation Info passed from Bigstore -> Scotty for a GCS
247+
* upload. This field must never be consumed outside of Bigstore, and is not applicable to non-GCS
248+
* media uploads.
249+
* @see #decodeUploadFragmentListCreationInfo()
250+
* @return value or {@code null} for none
251+
*/
252+
public java.lang.String getUploadFragmentListCreationInfo() {
253+
return uploadFragmentListCreationInfo;
254+
}
255+
256+
/**
257+
* A serialized Object Fragment List Creation Info passed from Bigstore -> Scotty for a GCS
258+
* upload. This field must never be consumed outside of Bigstore, and is not applicable to non-GCS
259+
* media uploads.
260+
* @see #getUploadFragmentListCreationInfo()
261+
* @return Base64 decoded value or {@code null} for none
262+
*
263+
* @since 1.14
264+
*/
265+
public byte[] decodeUploadFragmentListCreationInfo() {
266+
return com.google.api.client.util.Base64.decodeBase64(uploadFragmentListCreationInfo);
267+
}
268+
269+
/**
270+
* A serialized Object Fragment List Creation Info passed from Bigstore -> Scotty for a GCS
271+
* upload. This field must never be consumed outside of Bigstore, and is not applicable to non-GCS
272+
* media uploads.
273+
* @see #encodeUploadFragmentListCreationInfo()
274+
* @param uploadFragmentListCreationInfo uploadFragmentListCreationInfo or {@code null} for none
275+
*/
276+
public GdataBlobstore2Info setUploadFragmentListCreationInfo(java.lang.String uploadFragmentListCreationInfo) {
277+
this.uploadFragmentListCreationInfo = uploadFragmentListCreationInfo;
278+
return this;
279+
}
280+
281+
/**
282+
* A serialized Object Fragment List Creation Info passed from Bigstore -> Scotty for a GCS
283+
* upload. This field must never be consumed outside of Bigstore, and is not applicable to non-GCS
284+
* media uploads.
285+
* @see #setUploadFragmentListCreationInfo()
286+
*
287+
* <p>
288+
* The value is encoded Base64 or {@code null} for none.
289+
* </p>
290+
*
291+
* @since 1.14
292+
*/
293+
public GdataBlobstore2Info encodeUploadFragmentListCreationInfo(byte[] uploadFragmentListCreationInfo) {
294+
this.uploadFragmentListCreationInfo = com.google.api.client.util.Base64.encodeBase64URLSafeString(uploadFragmentListCreationInfo);
295+
return this;
296+
}
297+
236298
/**
237299
* Metadata passed from Blobstore -> Scotty for a new GCS upload. This is a signed, serialized
238300
* blobstore2.BlobMetadataContainer proto which must never be consumed outside of Bigstore, and is

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-rev20251203-2.0.0</version>
12-
<name>Firebase App Distribution API v1-rev20251203-2.0.0</name>
11+
<version>v1-rev20260113-2.0.0</version>
12+
<name>Firebase App Distribution API v1-rev20260113-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-rev20251203-2.0.0</version>
25+
<version>v1-rev20260113-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-rev20251203-2.0.0'
38+
implementation 'com.google.apis:google-api-services-firebaseappdistribution:v1-rev20260113-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)