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-rev20251104-2.0.0</version>
<version>v1-rev20251113-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-rev20251104-2.0.0'
implementation 'com.google.apis:google-api-services-firebaseappdistribution:v1-rev20251113-2.0.0'
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2539,32 +2539,33 @@ public List setPageToken(java.lang.String pageToken) {

/**
* When set to `true`, operations that are reachable are returned as normal, and those
* that are unreachable are returned in the [ListOperationsResponse.unreachable] field.
* This can only be `true` when reading across collections e.g. when `parent` is set to
* `"projects/example/locations/-"`. This field is not by default supported and will
* result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in
* service or product specific documentation.
* that are unreachable are returned in the ListOperationsResponse.unreachable field.
* This can only be `true` when reading across collections. For example, when `parent`
* is set to `"projects/example/locations/-"`. This field is not supported by default
* and will result in an `UNIMPLEMENTED` error if set unless explicitly documented
* otherwise in service or product specific documentation.
*/
@com.google.api.client.util.Key
private java.lang.Boolean returnPartialSuccess;

/** When set to `true`, operations that are reachable are returned as normal, and those that are
unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true`
when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This
field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless
explicitly documented otherwise in service or product specific documentation.
unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true`
when reading across collections. For example, when `parent` is set to
`"projects/example/locations/-"`. This field is not supported by default and will result in an
`UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific
documentation.
*/
public java.lang.Boolean getReturnPartialSuccess() {
return returnPartialSuccess;
}

/**
* When set to `true`, operations that are reachable are returned as normal, and those
* that are unreachable are returned in the [ListOperationsResponse.unreachable] field.
* This can only be `true` when reading across collections e.g. when `parent` is set to
* `"projects/example/locations/-"`. This field is not by default supported and will
* result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in
* service or product specific documentation.
* that are unreachable are returned in the ListOperationsResponse.unreachable field.
* This can only be `true` when reading across collections. For example, when `parent`
* is set to `"projects/example/locations/-"`. This field is not supported by default
* and will result in an `UNIMPLEMENTED` error if set unless explicitly documented
* otherwise in service or product specific documentation.
*/
public List setReturnPartialSuccess(java.lang.Boolean returnPartialSuccess) {
this.returnPartialSuccess = returnPartialSuccess;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public final class GoogleLongrunningListOperationsResponse extends com.google.ap

/**
* Unordered list. Unreachable resources. Populated when the request sets
* `ListOperationsRequest.return_partial_success` and reads across collections e.g. when
* `ListOperationsRequest.return_partial_success` and reads across collections. For example, when
* attempting to list all resources across all supported locations.
* The value may be {@code null}.
*/
Expand Down Expand Up @@ -89,7 +89,7 @@ public GoogleLongrunningListOperationsResponse setOperations(java.util.List<Goog

/**
* Unordered list. Unreachable resources. Populated when the request sets
* `ListOperationsRequest.return_partial_success` and reads across collections e.g. when
* `ListOperationsRequest.return_partial_success` and reads across collections. For example, when
* attempting to list all resources across all supported locations.
* @return value or {@code null} for none
*/
Expand All @@ -99,7 +99,7 @@ public java.util.List<java.lang.String> getUnreachable() {

/**
* Unordered list. Unreachable resources. Populated when the request sets
* `ListOperationsRequest.return_partial_success` and reads across collections e.g. when
* `ListOperationsRequest.return_partial_success` and reads across collections. For example, when
* attempting to list all resources across all supported locations.
* @param unreachable unreachable or {@code null} for none
*/
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-rev20251104-2.0.0</version>
<name>Firebase App Distribution API v1-rev20251104-2.0.0</name>
<version>v1-rev20251113-2.0.0</version>
<name>Firebase App Distribution API v1-rev20251113-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-rev20251104-2.0.0</version>
<version>v1-rev20251113-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-rev20251104-2.0.0'
implementation 'com.google.apis:google-api-services-firebaseappdistribution:v1-rev20251113-2.0.0'
}
```

Expand Down