Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
<dependency>
<groupId>com.google.apis</groupId>
<artifactId>google-api-services-firebaseappdistribution</artifactId>
<version>v1-rev20260713-2.0.0</version>
<version>v1-rev20260723-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation 'com.google.apis:google-api-services-firebaseappdistribution:v1-rev20260713-2.0.0'
implementation 'com.google.apis:google-api-services-firebaseappdistribution:v1-rev20260723-2.0.0'
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,13 @@
@SuppressWarnings("javadoc")
public final class GoogleFirebaseAppdistroV1Release extends com.google.api.client.json.GenericJson {

/**
* Output only. Number of testers with accepted invitations.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.Integer acceptedInvitationCount;

/**
* Output only. Registration state of the Android package (BinaryType.APK).
* The value may be {@code null}.
Expand All @@ -45,6 +52,13 @@ public final class GoogleFirebaseAppdistroV1Release extends com.google.api.clien
@com.google.api.client.util.Key
private java.lang.String binaryDownloadUri;

/**
* Output only. Type of binary.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String binaryType;

/**
* Output only. Build version of the release. For an Android release, the build version is the
* `versionCode`. For an iOS release, the build version is the `CFBundleVersion`.
Expand Down Expand Up @@ -75,13 +89,27 @@ public final class GoogleFirebaseAppdistroV1Release extends com.google.api.clien
@com.google.api.client.util.Key
private String expireTime;

/**
* Output only. Number of feedback reports left by testers.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.Integer feedbackCount;

/**
* Output only. A link to the Firebase console displaying a single release.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String firebaseConsoleUri;

/**
* Output only. Number of testers who have downloaded this release.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.Integer installationCount;

/**
* The name of the release resource. Format:
* `projects/{project_number}/apps/{app}/releases/{release}`
Expand All @@ -90,13 +118,28 @@ public final class GoogleFirebaseAppdistroV1Release extends com.google.api.clien
@com.google.api.client.util.Key
private java.lang.String name;

/**
* Output only. Number of testers who were invited (incl. expired invitations), but did not (yet)
* accept the invitation.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.Integer openInvitationCount;

/**
* Notes about the release.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private GoogleFirebaseAppdistroV1ReleaseNotes releaseNotes;

/**
* Output only. The overall state of tests run on this release
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String testState;

/**
* Output only. A link to the release in the tester web clip or Android app that lets testers
* (which were granted access to the app) view release notes and install the app onto their
Expand All @@ -113,6 +156,23 @@ public final class GoogleFirebaseAppdistroV1Release extends com.google.api.clien
@com.google.api.client.util.Key
private String updateTime;

/**
* Output only. Number of testers with accepted invitations.
* @return value or {@code null} for none
*/
public java.lang.Integer getAcceptedInvitationCount() {
return acceptedInvitationCount;
}

/**
* Output only. Number of testers with accepted invitations.
* @param acceptedInvitationCount acceptedInvitationCount or {@code null} for none
*/
public GoogleFirebaseAppdistroV1Release setAcceptedInvitationCount(java.lang.Integer acceptedInvitationCount) {
this.acceptedInvitationCount = acceptedInvitationCount;
return this;
}

/**
* Output only. Registration state of the Android package (BinaryType.APK).
* @return value or {@code null} for none
Expand Down Expand Up @@ -149,6 +209,23 @@ public GoogleFirebaseAppdistroV1Release setBinaryDownloadUri(java.lang.String bi
return this;
}

/**
* Output only. Type of binary.
* @return value or {@code null} for none
*/
public java.lang.String getBinaryType() {
return binaryType;
}

/**
* Output only. Type of binary.
* @param binaryType binaryType or {@code null} for none
*/
public GoogleFirebaseAppdistroV1Release setBinaryType(java.lang.String binaryType) {
this.binaryType = binaryType;
return this;
}

/**
* Output only. Build version of the release. For an Android release, the build version is the
* `versionCode`. For an iOS release, the build version is the `CFBundleVersion`.
Expand Down Expand Up @@ -221,6 +298,23 @@ public GoogleFirebaseAppdistroV1Release setExpireTime(String expireTime) {
return this;
}

/**
* Output only. Number of feedback reports left by testers.
* @return value or {@code null} for none
*/
public java.lang.Integer getFeedbackCount() {
return feedbackCount;
}

/**
* Output only. Number of feedback reports left by testers.
* @param feedbackCount feedbackCount or {@code null} for none
*/
public GoogleFirebaseAppdistroV1Release setFeedbackCount(java.lang.Integer feedbackCount) {
this.feedbackCount = feedbackCount;
return this;
}

/**
* Output only. A link to the Firebase console displaying a single release.
* @return value or {@code null} for none
Expand All @@ -238,6 +332,23 @@ public GoogleFirebaseAppdistroV1Release setFirebaseConsoleUri(java.lang.String f
return this;
}

/**
* Output only. Number of testers who have downloaded this release.
* @return value or {@code null} for none
*/
public java.lang.Integer getInstallationCount() {
return installationCount;
}

/**
* Output only. Number of testers who have downloaded this release.
* @param installationCount installationCount or {@code null} for none
*/
public GoogleFirebaseAppdistroV1Release setInstallationCount(java.lang.Integer installationCount) {
this.installationCount = installationCount;
return this;
}

/**
* The name of the release resource. Format:
* `projects/{project_number}/apps/{app}/releases/{release}`
Expand All @@ -257,6 +368,25 @@ public GoogleFirebaseAppdistroV1Release setName(java.lang.String name) {
return this;
}

/**
* Output only. Number of testers who were invited (incl. expired invitations), but did not (yet)
* accept the invitation.
* @return value or {@code null} for none
*/
public java.lang.Integer getOpenInvitationCount() {
return openInvitationCount;
}

/**
* Output only. Number of testers who were invited (incl. expired invitations), but did not (yet)
* accept the invitation.
* @param openInvitationCount openInvitationCount or {@code null} for none
*/
public GoogleFirebaseAppdistroV1Release setOpenInvitationCount(java.lang.Integer openInvitationCount) {
this.openInvitationCount = openInvitationCount;
return this;
}

/**
* Notes about the release.
* @return value or {@code null} for none
Expand All @@ -274,6 +404,23 @@ public GoogleFirebaseAppdistroV1Release setReleaseNotes(GoogleFirebaseAppdistroV
return this;
}

/**
* Output only. The overall state of tests run on this release
* @return value or {@code null} for none
*/
public java.lang.String getTestState() {
return testState;
}

/**
* Output only. The overall state of tests run on this release
* @param testState testState or {@code null} for none
*/
public GoogleFirebaseAppdistroV1Release setTestState(java.lang.String testState) {
this.testState = testState;
return this;
}

/**
* Output only. A link to the release in the tester web clip or Android app that lets testers
* (which were granted access to the app) view release notes and install the app onto their
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@

<groupId>com.google.apis</groupId>
<artifactId>google-api-services-firebaseappdistribution</artifactId>
<version>v1-rev20260713-2.0.0</version>
<name>Firebase App Distribution API v1-rev20260713-2.0.0</name>
<version>v1-rev20260723-2.0.0</version>
<name>Firebase App Distribution API v1-rev20260723-2.0.0</name>
<packaging>jar</packaging>

<inceptionYear>2011</inceptionYear>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
<dependency>
<groupId>com.google.apis</groupId>
<artifactId>google-api-services-firebaseappdistribution</artifactId>
<version>v1-rev20260713-2.0.0</version>
<version>v1-rev20260723-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation 'com.google.apis:google-api-services-firebaseappdistribution:v1-rev20260713-2.0.0'
implementation 'com.google.apis:google-api-services-firebaseappdistribution:v1-rev20260723-2.0.0'
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
<dependency>
<groupId>com.google.apis</groupId>
<artifactId>google-api-services-firebaseappdistribution</artifactId>
<version>v1alpha-rev20260713-2.0.0</version>
<version>v1alpha-rev20260723-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation 'com.google.apis:google-api-services-firebaseappdistribution:v1alpha-rev20260713-2.0.0'
implementation 'com.google.apis:google-api-services-firebaseappdistribution:v1alpha-rev20260723-2.0.0'
}
```

Expand Down
Loading
Loading