Skip to content
Merged
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-rev20260518-2.0.0</version>
<version>v1-rev20260713-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-rev20260518-2.0.0'
implementation 'com.google.apis:google-api-services-firebaseappdistribution:v1-rev20260713-2.0.0'
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1134,60 +1134,78 @@ public List setParent(java.lang.String parent) {

/**
* Optional. The expression to filter releases listed in the response. To learn more about
* filtering, refer to [Google's AIP-160 standard](http://aip.dev/160). Supported fields:
* - `releaseNotes.text` supports `=` (can contain a wildcard character (`*`) at the
* beginning or end of the string) - `createTime` supports `<`, `<=`, `>` and `>=`, and
* expects an RFC-3339 formatted string Examples: - `createTime <=
* filtering, refer to the [AIP-160 standard](http://aip.dev/160). Supported fields: -
* Time fields supporting `<`, `<=`, `>` and `>=`; expecting an RFC-3339 formatted string:
* - `create_time` (or `createTime`) - `update_time` (or `updateTime`) - `expire_time` (or
* `expireTime`) - Text fields supporting `=`. The compared text can contain a wildcard
* character (`*`) at the beginning and/or end of the string which also enables case-
* insensitive matching: - `release_notes.text` (or `releaseNotes.text`) -
* `display_version` (or `displayVersion`) - `build_version` (or `buildVersion`).
* Examples: - `createTime <= "2021-09-08T00:00:00+04:00"` - `expire_time >
* "2021-09-08T00:00:00+04:00"` - `releaseNotes.text="fixes" AND createTime >=
* "2021-09-08T00:00:00.0Z"` - `releaseNotes.text="*v1.0.0-rc*"`
* "2021-09-08T00:00:00.0Z"` - `releaseNotes.text="*v1.0.0-rc*"` - `(display_version =
* "v1.0.0-rc2" AND `build_version = "123") OR release_notes = "*v1.0.0-rc2 (123)*"`
*/
@com.google.api.client.util.Key
private java.lang.String filter;

/** Optional. The expression to filter releases listed in the response. To learn more about filtering,
refer to [Google's AIP-160 standard](http://aip.dev/160). Supported fields: - `releaseNotes.text`
supports `=` (can contain a wildcard character (`*`) at the beginning or end of the string) -
`createTime` supports `<`, `<=`, `>` and `>=`, and expects an RFC-3339 formatted string Examples: -
`createTime <= "2021-09-08T00:00:00+04:00"` - `releaseNotes.text="fixes" AND createTime >=
"2021-09-08T00:00:00.0Z"` - `releaseNotes.text="*v1.0.0-rc*"`
refer to the [AIP-160 standard](http://aip.dev/160). Supported fields: - Time fields supporting
`<`, `<=`, `>` and `>=`; expecting an RFC-3339 formatted string: - `create_time` (or `createTime`)
- `update_time` (or `updateTime`) - `expire_time` (or `expireTime`) - Text fields supporting `=`.
The compared text can contain a wildcard character (`*`) at the beginning and/or end of the string
which also enables case-insensitive matching: - `release_notes.text` (or `releaseNotes.text`) -
`display_version` (or `displayVersion`) - `build_version` (or `buildVersion`). Examples: -
`createTime <= "2021-09-08T00:00:00+04:00"` - `expire_time > "2021-09-08T00:00:00+04:00"` -
`releaseNotes.text="fixes" AND createTime >= "2021-09-08T00:00:00.0Z"` -
`releaseNotes.text="*v1.0.0-rc*"` - `(display_version = "v1.0.0-rc2" AND `build_version = "123") OR
release_notes = "*v1.0.0-rc2 (123)*"`
*/
public java.lang.String getFilter() {
return filter;
}

/**
* Optional. The expression to filter releases listed in the response. To learn more about
* filtering, refer to [Google's AIP-160 standard](http://aip.dev/160). Supported fields:
* - `releaseNotes.text` supports `=` (can contain a wildcard character (`*`) at the
* beginning or end of the string) - `createTime` supports `<`, `<=`, `>` and `>=`, and
* expects an RFC-3339 formatted string Examples: - `createTime <=
* filtering, refer to the [AIP-160 standard](http://aip.dev/160). Supported fields: -
* Time fields supporting `<`, `<=`, `>` and `>=`; expecting an RFC-3339 formatted string:
* - `create_time` (or `createTime`) - `update_time` (or `updateTime`) - `expire_time` (or
* `expireTime`) - Text fields supporting `=`. The compared text can contain a wildcard
* character (`*`) at the beginning and/or end of the string which also enables case-
* insensitive matching: - `release_notes.text` (or `releaseNotes.text`) -
* `display_version` (or `displayVersion`) - `build_version` (or `buildVersion`).
* Examples: - `createTime <= "2021-09-08T00:00:00+04:00"` - `expire_time >
* "2021-09-08T00:00:00+04:00"` - `releaseNotes.text="fixes" AND createTime >=
* "2021-09-08T00:00:00.0Z"` - `releaseNotes.text="*v1.0.0-rc*"`
* "2021-09-08T00:00:00.0Z"` - `releaseNotes.text="*v1.0.0-rc*"` - `(display_version =
* "v1.0.0-rc2" AND `build_version = "123") OR release_notes = "*v1.0.0-rc2 (123)*"`
*/
public List setFilter(java.lang.String filter) {
this.filter = filter;
return this;
}

/**
* Optional. The fields used to order releases. Supported fields: - `createTime` To
* Optional. The fields used to order releases. Supported fields: - `create_time` (or
* `createTime`) - `update_time` (or `updateTime`) - `expire_time` (or `expireTime`) To
* specify descending order for a field, append a "desc" suffix, for example, `createTime
* desc`. If this parameter is not set, releases are ordered by `createTime` in descending
* order.
*/
@com.google.api.client.util.Key
private java.lang.String orderBy;

/** Optional. The fields used to order releases. Supported fields: - `createTime` To specify descending
order for a field, append a "desc" suffix, for example, `createTime desc`. If this parameter is not
set, releases are ordered by `createTime` in descending order.
/** Optional. The fields used to order releases. Supported fields: - `create_time` (or `createTime`) -
`update_time` (or `updateTime`) - `expire_time` (or `expireTime`) To specify descending order for a
field, append a "desc" suffix, for example, `createTime desc`. If this parameter is not set,
releases are ordered by `createTime` in descending order.
*/
public java.lang.String getOrderBy() {
return orderBy;
}

/**
* Optional. The fields used to order releases. Supported fields: - `createTime` To
* Optional. The fields used to order releases. Supported fields: - `create_time` (or
* `createTime`) - `update_time` (or `updateTime`) - `expire_time` (or `expireTime`) To
* specify descending order for a field, append a "desc" suffix, for example, `createTime
* desc`. If this parameter is not set, releases are ordered by `createTime` in descending
* order.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,13 @@ public final class GoogleFirebaseAppdistroV1ListReleasesResponse extends com.goo
@com.google.api.client.util.Key
private java.util.List<GoogleFirebaseAppdistroV1Release> releases;

/**
* The total number of releases.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.Integer totalSize;

/**
* A short-lived token, which can be sent as `pageToken` to retrieve the next page. If this field
* is omitted, there are no subsequent pages.
Expand Down Expand Up @@ -81,6 +88,23 @@ public GoogleFirebaseAppdistroV1ListReleasesResponse setReleases(java.util.List<
return this;
}

/**
* The total number of releases.
* @return value or {@code null} for none
*/
public java.lang.Integer getTotalSize() {
return totalSize;
}

/**
* The total number of releases.
* @param totalSize totalSize or {@code null} for none
*/
public GoogleFirebaseAppdistroV1ListReleasesResponse setTotalSize(java.lang.Integer totalSize) {
this.totalSize = totalSize;
return this;
}

@Override
public GoogleFirebaseAppdistroV1ListReleasesResponse set(String fieldName, Object value) {
return (GoogleFirebaseAppdistroV1ListReleasesResponse) super.set(fieldName, value);
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. Registration state of the Android package (BinaryType.APK).
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String androidPackageRegistrationState;

/**
* Output only. A signed link (which expires in one hour) to directly download the app binary
* (IPA/APK/AAB) file.
Expand Down Expand Up @@ -84,7 +91,7 @@ public final class GoogleFirebaseAppdistroV1Release extends com.google.api.clien
private java.lang.String name;

/**
* Notes of the release.
* Notes about the release.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
Expand All @@ -106,6 +113,23 @@ public final class GoogleFirebaseAppdistroV1Release extends com.google.api.clien
@com.google.api.client.util.Key
private String updateTime;

/**
* Output only. Registration state of the Android package (BinaryType.APK).
* @return value or {@code null} for none
*/
public java.lang.String getAndroidPackageRegistrationState() {
return androidPackageRegistrationState;
}

/**
* Output only. Registration state of the Android package (BinaryType.APK).
* @param androidPackageRegistrationState androidPackageRegistrationState or {@code null} for none
*/
public GoogleFirebaseAppdistroV1Release setAndroidPackageRegistrationState(java.lang.String androidPackageRegistrationState) {
this.androidPackageRegistrationState = androidPackageRegistrationState;
return this;
}

/**
* Output only. A signed link (which expires in one hour) to directly download the app binary
* (IPA/APK/AAB) file.
Expand Down Expand Up @@ -234,15 +258,15 @@ public GoogleFirebaseAppdistroV1Release setName(java.lang.String name) {
}

/**
* Notes of the release.
* Notes about the release.
* @return value or {@code null} for none
*/
public GoogleFirebaseAppdistroV1ReleaseNotes getReleaseNotes() {
return releaseNotes;
}

/**
* Notes of the release.
* Notes about the release.
* @param releaseNotes releaseNotes or {@code null} for none
*/
public GoogleFirebaseAppdistroV1Release setReleaseNotes(GoogleFirebaseAppdistroV1ReleaseNotes releaseNotes) {
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-rev20260518-2.0.0</version>
<name>Firebase App Distribution API v1-rev20260518-2.0.0</name>
<version>v1-rev20260713-2.0.0</version>
<name>Firebase App Distribution API v1-rev20260713-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-rev20260518-2.0.0</version>
<version>v1-rev20260713-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-rev20260518-2.0.0'
implementation 'com.google.apis:google-api-services-firebaseappdistribution:v1-rev20260713-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-rev20260518-2.0.0</version>
<version>v1alpha-rev20260713-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-rev20260518-2.0.0'
implementation 'com.google.apis:google-api-services-firebaseappdistribution:v1alpha-rev20260713-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. Registration state of the Android package (BinaryType.APK).
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String androidPackageRegistrationState;

/**
* Output only. A signed link (which expires in one hour) to directly download the app binary
* (IPA/APK/AAB) file.
Expand Down Expand Up @@ -84,7 +91,7 @@ public final class GoogleFirebaseAppdistroV1Release extends com.google.api.clien
private java.lang.String name;

/**
* Notes of the release.
* Notes about the release.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
Expand All @@ -106,6 +113,23 @@ public final class GoogleFirebaseAppdistroV1Release extends com.google.api.clien
@com.google.api.client.util.Key
private String updateTime;

/**
* Output only. Registration state of the Android package (BinaryType.APK).
* @return value or {@code null} for none
*/
public java.lang.String getAndroidPackageRegistrationState() {
return androidPackageRegistrationState;
}

/**
* Output only. Registration state of the Android package (BinaryType.APK).
* @param androidPackageRegistrationState androidPackageRegistrationState or {@code null} for none
*/
public GoogleFirebaseAppdistroV1Release setAndroidPackageRegistrationState(java.lang.String androidPackageRegistrationState) {
this.androidPackageRegistrationState = androidPackageRegistrationState;
return this;
}

/**
* Output only. A signed link (which expires in one hour) to directly download the app binary
* (IPA/APK/AAB) file.
Expand Down Expand Up @@ -234,15 +258,15 @@ public GoogleFirebaseAppdistroV1Release setName(java.lang.String name) {
}

/**
* Notes of the release.
* Notes about the release.
* @return value or {@code null} for none
*/
public GoogleFirebaseAppdistroV1ReleaseNotes getReleaseNotes() {
return releaseNotes;
}

/**
* Notes of the release.
* Notes about the release.
* @param releaseNotes releaseNotes or {@code null} for none
*/
public GoogleFirebaseAppdistroV1Release setReleaseNotes(GoogleFirebaseAppdistroV1ReleaseNotes releaseNotes) {
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>v1alpha-rev20260518-2.0.0</version>
<name>Firebase App Distribution API v1alpha-rev20260518-2.0.0</name>
<version>v1alpha-rev20260713-2.0.0</version>
<name>Firebase App Distribution API v1alpha-rev20260713-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>v1alpha-rev20260518-2.0.0</version>
<version>v1alpha-rev20260713-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-rev20260518-2.0.0'
implementation 'com.google.apis:google-api-services-firebaseappdistribution:v1alpha-rev20260713-2.0.0'
}
```

Expand Down
Loading