Skip to content

Commit 346edc3

Browse files
1 parent da567ed commit 346edc3

4 files changed

Lines changed: 87 additions & 6 deletions

File tree

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

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

Lines changed: 81 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,13 @@ public final class GdataContentTypeInfo extends com.google.api.client.json.Gener
5656
@com.google.api.client.util.Key
5757
private java.lang.String fromFileName;
5858

59+
/**
60+
* The content type of the file detected by Fusion ID. go/fusionid
61+
* The value may be {@code null}.
62+
*/
63+
@com.google.api.client.util.Key
64+
private java.lang.String fromFusionId;
65+
5966
/**
6067
* The content type of the file as specified in the request headers, multipart headers, or RUPIO
6168
* start request.
@@ -73,6 +80,14 @@ public final class GdataContentTypeInfo extends com.google.api.client.json.Gener
7380
@com.google.api.client.util.Key
7481
private java.lang.String fromUrlPath;
7582

83+
/**
84+
* Metadata information from Fusion ID detection. Serialized FusionIdDetectionMetadata proto. Only
85+
* set if from_fusion_id is set.
86+
* The value may be {@code null}.
87+
*/
88+
@com.google.api.client.util.Key
89+
private java.lang.String fusionIdDetectionMetadata;
90+
7691
/**
7792
* Scotty's best guess of what the content type of the file is.
7893
* @return value or {@code null} for none
@@ -128,6 +143,23 @@ public GdataContentTypeInfo setFromFileName(java.lang.String fromFileName) {
128143
return this;
129144
}
130145

146+
/**
147+
* The content type of the file detected by Fusion ID. go/fusionid
148+
* @return value or {@code null} for none
149+
*/
150+
public java.lang.String getFromFusionId() {
151+
return fromFusionId;
152+
}
153+
154+
/**
155+
* The content type of the file detected by Fusion ID. go/fusionid
156+
* @param fromFusionId fromFusionId or {@code null} for none
157+
*/
158+
public GdataContentTypeInfo setFromFusionId(java.lang.String fromFusionId) {
159+
this.fromFusionId = fromFusionId;
160+
return this;
161+
}
162+
131163
/**
132164
* The content type of the file as specified in the request headers, multipart headers, or RUPIO
133165
* start request.
@@ -168,6 +200,55 @@ public GdataContentTypeInfo setFromUrlPath(java.lang.String fromUrlPath) {
168200
return this;
169201
}
170202

203+
/**
204+
* Metadata information from Fusion ID detection. Serialized FusionIdDetectionMetadata proto. Only
205+
* set if from_fusion_id is set.
206+
* @see #decodeFusionIdDetectionMetadata()
207+
* @return value or {@code null} for none
208+
*/
209+
public java.lang.String getFusionIdDetectionMetadata() {
210+
return fusionIdDetectionMetadata;
211+
}
212+
213+
/**
214+
* Metadata information from Fusion ID detection. Serialized FusionIdDetectionMetadata proto. Only
215+
* set if from_fusion_id is set.
216+
* @see #getFusionIdDetectionMetadata()
217+
* @return Base64 decoded value or {@code null} for none
218+
*
219+
* @since 1.14
220+
*/
221+
public byte[] decodeFusionIdDetectionMetadata() {
222+
return com.google.api.client.util.Base64.decodeBase64(fusionIdDetectionMetadata);
223+
}
224+
225+
/**
226+
* Metadata information from Fusion ID detection. Serialized FusionIdDetectionMetadata proto. Only
227+
* set if from_fusion_id is set.
228+
* @see #encodeFusionIdDetectionMetadata()
229+
* @param fusionIdDetectionMetadata fusionIdDetectionMetadata or {@code null} for none
230+
*/
231+
public GdataContentTypeInfo setFusionIdDetectionMetadata(java.lang.String fusionIdDetectionMetadata) {
232+
this.fusionIdDetectionMetadata = fusionIdDetectionMetadata;
233+
return this;
234+
}
235+
236+
/**
237+
* Metadata information from Fusion ID detection. Serialized FusionIdDetectionMetadata proto. Only
238+
* set if from_fusion_id is set.
239+
* @see #setFusionIdDetectionMetadata()
240+
*
241+
* <p>
242+
* The value is encoded Base64 or {@code null} for none.
243+
* </p>
244+
*
245+
* @since 1.14
246+
*/
247+
public GdataContentTypeInfo encodeFusionIdDetectionMetadata(byte[] fusionIdDetectionMetadata) {
248+
this.fusionIdDetectionMetadata = com.google.api.client.util.Base64.encodeBase64URLSafeString(fusionIdDetectionMetadata);
249+
return this;
250+
}
251+
171252
@Override
172253
public GdataContentTypeInfo set(String fieldName, Object value) {
173254
return (GdataContentTypeInfo) super.set(fieldName, value);

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

0 commit comments

Comments
 (0)