Skip to content

Commit d94c0d9

Browse files
1 parent 29eb116 commit d94c0d9

File tree

6 files changed

+9
-182
lines changed

6 files changed

+9
-182
lines changed

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

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

Lines changed: 2 additions & 132 deletions
Original file line numberDiff line numberDiff line change
@@ -450,136 +450,6 @@ public GetJwt set(String parameterName, Object value) {
450450
return (GetJwt) super.set(parameterName, value);
451451
}
452452
}
453-
/**
454-
* Provision app distribution for an existing Firebase app, enabling it to subsequently be used by
455-
* appdistro.
456-
*
457-
* Create a request for the method "apps.provisionApp".
458-
*
459-
* This request holds the parameters needed by the firebaseappdistribution server. After setting
460-
* any optional parameters, call the {@link ProvisionApp#execute()} method to invoke the remote
461-
* operation.
462-
*
463-
* @param mobilesdkAppId Unique id for a Firebase app of the format: {version}:{project_number}:{platform}:{hash(bundle_id)}
464-
* Example: 1:581234567376:android:aa0a3c7b135e90289
465-
* @return the request
466-
*/
467-
public ProvisionApp provisionApp(java.lang.String mobilesdkAppId) throws java.io.IOException {
468-
ProvisionApp result = new ProvisionApp(mobilesdkAppId);
469-
initialize(result);
470-
return result;
471-
}
472-
473-
public class ProvisionApp extends FirebaseAppDistributionRequest<com.google.api.services.firebaseappdistribution.v1alpha.model.GoogleFirebaseAppdistroV1alphaProvisionAppResponse> {
474-
475-
private static final String REST_PATH = "v1alpha/apps/{mobilesdkAppId}";
476-
477-
/**
478-
* Provision app distribution for an existing Firebase app, enabling it to subsequently be used by
479-
* appdistro.
480-
*
481-
* Create a request for the method "apps.provisionApp".
482-
*
483-
* This request holds the parameters needed by the the firebaseappdistribution server. After
484-
* setting any optional parameters, call the {@link ProvisionApp#execute()} method to invoke the
485-
* remote operation. <p> {@link
486-
* ProvisionApp#initialize(com.google.api.client.googleapis.services.AbstractGoogleClientRequest)}
487-
* must be called to initialize this instance immediately after invoking the constructor. </p>
488-
*
489-
* @param mobilesdkAppId Unique id for a Firebase app of the format: {version}:{project_number}:{platform}:{hash(bundle_id)}
490-
* Example: 1:581234567376:android:aa0a3c7b135e90289
491-
* @since 1.13
492-
*/
493-
protected ProvisionApp(java.lang.String mobilesdkAppId) {
494-
super(FirebaseAppDistribution.this, "POST", REST_PATH, null, com.google.api.services.firebaseappdistribution.v1alpha.model.GoogleFirebaseAppdistroV1alphaProvisionAppResponse.class);
495-
this.mobilesdkAppId = com.google.api.client.util.Preconditions.checkNotNull(mobilesdkAppId, "Required parameter mobilesdkAppId must be specified.");
496-
}
497-
498-
@Override
499-
public ProvisionApp set$Xgafv(java.lang.String $Xgafv) {
500-
return (ProvisionApp) super.set$Xgafv($Xgafv);
501-
}
502-
503-
@Override
504-
public ProvisionApp setAccessToken(java.lang.String accessToken) {
505-
return (ProvisionApp) super.setAccessToken(accessToken);
506-
}
507-
508-
@Override
509-
public ProvisionApp setAlt(java.lang.String alt) {
510-
return (ProvisionApp) super.setAlt(alt);
511-
}
512-
513-
@Override
514-
public ProvisionApp setCallback(java.lang.String callback) {
515-
return (ProvisionApp) super.setCallback(callback);
516-
}
517-
518-
@Override
519-
public ProvisionApp setFields(java.lang.String fields) {
520-
return (ProvisionApp) super.setFields(fields);
521-
}
522-
523-
@Override
524-
public ProvisionApp setKey(java.lang.String key) {
525-
return (ProvisionApp) super.setKey(key);
526-
}
527-
528-
@Override
529-
public ProvisionApp setOauthToken(java.lang.String oauthToken) {
530-
return (ProvisionApp) super.setOauthToken(oauthToken);
531-
}
532-
533-
@Override
534-
public ProvisionApp setPrettyPrint(java.lang.Boolean prettyPrint) {
535-
return (ProvisionApp) super.setPrettyPrint(prettyPrint);
536-
}
537-
538-
@Override
539-
public ProvisionApp setQuotaUser(java.lang.String quotaUser) {
540-
return (ProvisionApp) super.setQuotaUser(quotaUser);
541-
}
542-
543-
@Override
544-
public ProvisionApp setUploadType(java.lang.String uploadType) {
545-
return (ProvisionApp) super.setUploadType(uploadType);
546-
}
547-
548-
@Override
549-
public ProvisionApp setUploadProtocol(java.lang.String uploadProtocol) {
550-
return (ProvisionApp) super.setUploadProtocol(uploadProtocol);
551-
}
552-
553-
/**
554-
* Unique id for a Firebase app of the format:
555-
* {version}:{project_number}:{platform}:{hash(bundle_id)} Example:
556-
* 1:581234567376:android:aa0a3c7b135e90289
557-
*/
558-
@com.google.api.client.util.Key
559-
private java.lang.String mobilesdkAppId;
560-
561-
/** Unique id for a Firebase app of the format: {version}:{project_number}:{platform}:{hash(bundle_id)}
562-
Example: 1:581234567376:android:aa0a3c7b135e90289
563-
*/
564-
public java.lang.String getMobilesdkAppId() {
565-
return mobilesdkAppId;
566-
}
567-
568-
/**
569-
* Unique id for a Firebase app of the format:
570-
* {version}:{project_number}:{platform}:{hash(bundle_id)} Example:
571-
* 1:581234567376:android:aa0a3c7b135e90289
572-
*/
573-
public ProvisionApp setMobilesdkAppId(java.lang.String mobilesdkAppId) {
574-
this.mobilesdkAppId = mobilesdkAppId;
575-
return this;
576-
}
577-
578-
@Override
579-
public ProvisionApp set(String parameterName, Object value) {
580-
return (ProvisionApp) super.set(parameterName, value);
581-
}
582-
}
583453

584454
/**
585455
* An accessor for creating requests from the ReleaseByHash collection.
@@ -1802,7 +1672,7 @@ public GetTestConfig set(String parameterName, Object value) {
18021672
}
18031673
}
18041674
/**
1805-
* Updates a release.
1675+
* Updates automated test configuration.
18061676
*
18071677
* Create a request for the method "apps.updateTestConfig".
18081678
*
@@ -1829,7 +1699,7 @@ public class UpdateTestConfig extends FirebaseAppDistributionRequest<com.google.
18291699
java.util.regex.Pattern.compile("^projects/[^/]+/apps/[^/]+/testConfig$");
18301700

18311701
/**
1832-
* Updates a release.
1702+
* Updates automated test configuration.
18331703
*
18341704
* Create a request for the method "apps.updateTestConfig".
18351705
*

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
package com.google.api.services.firebaseappdistribution.v1alpha.model;
1818

1919
/**
20-
* Instructions for AI driven test
20+
* Model definition for GoogleFirebaseAppdistroV1alphaAiInstructions.
2121
*
2222
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
2323
* transmitted over HTTP when working with the Firebase App Distribution API. For a detailed

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

Lines changed: 0 additions & 43 deletions
This file was deleted.

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

0 commit comments

Comments
 (0)