Skip to content

Commit 7b50955

Browse files
1 parent b347602 commit 7b50955

File tree

20 files changed

+280
-24
lines changed

20 files changed

+280
-24
lines changed

clients/google-api-services-cloudfunctions/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-cloudfunctions</artifactId>
25-
<version>v1-rev20250908-2.0.0</version>
25+
<version>v1-rev20250929-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-cloudfunctions:v1-rev20250908-2.0.0'
38+
implementation 'com.google.apis:google-api-services-cloudfunctions:v1-rev20250929-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-cloudfunctions/v1/2.0.0/com/google/api/services/cloudfunctions/v1/CloudFunctions.java

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -460,6 +460,40 @@ public List setPageToken(java.lang.String pageToken) {
460460
return this;
461461
}
462462

463+
/**
464+
* When set to `true`, operations that are reachable are returned as normal, and those that
465+
* are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can
466+
* only be `true` when reading across collections e.g. when `parent` is set to
467+
* `"projects/example/locations/-"`. This field is not by default supported and will result in
468+
* an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or
469+
* product specific documentation.
470+
*/
471+
@com.google.api.client.util.Key
472+
private java.lang.Boolean returnPartialSuccess;
473+
474+
/** When set to `true`, operations that are reachable are returned as normal, and those that are
475+
unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true`
476+
when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This
477+
field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless
478+
explicitly documented otherwise in service or product specific documentation.
479+
*/
480+
public java.lang.Boolean getReturnPartialSuccess() {
481+
return returnPartialSuccess;
482+
}
483+
484+
/**
485+
* When set to `true`, operations that are reachable are returned as normal, and those that
486+
* are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can
487+
* only be `true` when reading across collections e.g. when `parent` is set to
488+
* `"projects/example/locations/-"`. This field is not by default supported and will result in
489+
* an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or
490+
* product specific documentation.
491+
*/
492+
public List setReturnPartialSuccess(java.lang.Boolean returnPartialSuccess) {
493+
this.returnPartialSuccess = returnPartialSuccess;
494+
return this;
495+
}
496+
463497
@Override
464498
public List set(String parameterName, Object value) {
465499
return (List) super.set(parameterName, value);

clients/google-api-services-cloudfunctions/v1/2.0.0/com/google/api/services/cloudfunctions/v1/model/ListOperationsResponse.java

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,15 @@ public final class ListOperationsResponse extends com.google.api.client.json.Gen
4343
@com.google.api.client.util.Key
4444
private java.util.List<Operation> operations;
4545

46+
/**
47+
* Unordered list. Unreachable resources. Populated when the request sets
48+
* `ListOperationsRequest.return_partial_success` and reads across collections e.g. when
49+
* attempting to list all resources across all supported locations.
50+
* The value may be {@code null}.
51+
*/
52+
@com.google.api.client.util.Key
53+
private java.util.List<java.lang.String> unreachable;
54+
4655
/**
4756
* The standard List next-page token.
4857
* @return value or {@code null} for none
@@ -77,6 +86,27 @@ public ListOperationsResponse setOperations(java.util.List<Operation> operations
7786
return this;
7887
}
7988

89+
/**
90+
* Unordered list. Unreachable resources. Populated when the request sets
91+
* `ListOperationsRequest.return_partial_success` and reads across collections e.g. when
92+
* attempting to list all resources across all supported locations.
93+
* @return value or {@code null} for none
94+
*/
95+
public java.util.List<java.lang.String> getUnreachable() {
96+
return unreachable;
97+
}
98+
99+
/**
100+
* Unordered list. Unreachable resources. Populated when the request sets
101+
* `ListOperationsRequest.return_partial_success` and reads across collections e.g. when
102+
* attempting to list all resources across all supported locations.
103+
* @param unreachable unreachable or {@code null} for none
104+
*/
105+
public ListOperationsResponse setUnreachable(java.util.List<java.lang.String> unreachable) {
106+
this.unreachable = unreachable;
107+
return this;
108+
}
109+
80110
@Override
81111
public ListOperationsResponse set(String fieldName, Object value) {
82112
return (ListOperationsResponse) super.set(fieldName, value);

clients/google-api-services-cloudfunctions/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-cloudfunctions</artifactId>
11-
<version>v1-rev20250908-2.0.0</version>
12-
<name>Cloud Functions API v1-rev20250908-2.0.0</name>
11+
<version>v1-rev20250929-2.0.0</version>
12+
<name>Cloud Functions API v1-rev20250929-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-cloudfunctions/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-cloudfunctions</artifactId>
25-
<version>v1-rev20250908-2.0.0</version>
25+
<version>v1-rev20250929-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-cloudfunctions:v1-rev20250908-2.0.0'
38+
implementation 'com.google.apis:google-api-services-cloudfunctions:v1-rev20250929-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-cloudfunctions/v2/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-cloudfunctions</artifactId>
25-
<version>v2-rev20250908-2.0.0</version>
25+
<version>v2-rev20250929-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-cloudfunctions:v2-rev20250908-2.0.0'
38+
implementation 'com.google.apis:google-api-services-cloudfunctions:v2-rev20250929-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-cloudfunctions/v2/2.0.0/com/google/api/services/cloudfunctions/v2/CloudFunctions.java

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3291,6 +3291,40 @@ public List setPageToken(java.lang.String pageToken) {
32913291
return this;
32923292
}
32933293

3294+
/**
3295+
* When set to `true`, operations that are reachable are returned as normal, and those
3296+
* that are unreachable are returned in the [ListOperationsResponse.unreachable] field.
3297+
* This can only be `true` when reading across collections e.g. when `parent` is set to
3298+
* `"projects/example/locations/-"`. This field is not by default supported and will
3299+
* result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in
3300+
* service or product specific documentation.
3301+
*/
3302+
@com.google.api.client.util.Key
3303+
private java.lang.Boolean returnPartialSuccess;
3304+
3305+
/** When set to `true`, operations that are reachable are returned as normal, and those that are
3306+
unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true`
3307+
when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This
3308+
field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless
3309+
explicitly documented otherwise in service or product specific documentation.
3310+
*/
3311+
public java.lang.Boolean getReturnPartialSuccess() {
3312+
return returnPartialSuccess;
3313+
}
3314+
3315+
/**
3316+
* When set to `true`, operations that are reachable are returned as normal, and those
3317+
* that are unreachable are returned in the [ListOperationsResponse.unreachable] field.
3318+
* This can only be `true` when reading across collections e.g. when `parent` is set to
3319+
* `"projects/example/locations/-"`. This field is not by default supported and will
3320+
* result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in
3321+
* service or product specific documentation.
3322+
*/
3323+
public List setReturnPartialSuccess(java.lang.Boolean returnPartialSuccess) {
3324+
this.returnPartialSuccess = returnPartialSuccess;
3325+
return this;
3326+
}
3327+
32943328
@Override
32953329
public List set(String parameterName, Object value) {
32963330
return (List) super.set(parameterName, value);

clients/google-api-services-cloudfunctions/v2/2.0.0/com/google/api/services/cloudfunctions/v2/model/ListOperationsResponse.java

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,15 @@ public final class ListOperationsResponse extends com.google.api.client.json.Gen
4343
@com.google.api.client.util.Key
4444
private java.util.List<Operation> operations;
4545

46+
/**
47+
* Unordered list. Unreachable resources. Populated when the request sets
48+
* `ListOperationsRequest.return_partial_success` and reads across collections e.g. when
49+
* attempting to list all resources across all supported locations.
50+
* The value may be {@code null}.
51+
*/
52+
@com.google.api.client.util.Key
53+
private java.util.List<java.lang.String> unreachable;
54+
4655
/**
4756
* The standard List next-page token.
4857
* @return value or {@code null} for none
@@ -77,6 +86,27 @@ public ListOperationsResponse setOperations(java.util.List<Operation> operations
7786
return this;
7887
}
7988

89+
/**
90+
* Unordered list. Unreachable resources. Populated when the request sets
91+
* `ListOperationsRequest.return_partial_success` and reads across collections e.g. when
92+
* attempting to list all resources across all supported locations.
93+
* @return value or {@code null} for none
94+
*/
95+
public java.util.List<java.lang.String> getUnreachable() {
96+
return unreachable;
97+
}
98+
99+
/**
100+
* Unordered list. Unreachable resources. Populated when the request sets
101+
* `ListOperationsRequest.return_partial_success` and reads across collections e.g. when
102+
* attempting to list all resources across all supported locations.
103+
* @param unreachable unreachable or {@code null} for none
104+
*/
105+
public ListOperationsResponse setUnreachable(java.util.List<java.lang.String> unreachable) {
106+
this.unreachable = unreachable;
107+
return this;
108+
}
109+
80110
@Override
81111
public ListOperationsResponse set(String fieldName, Object value) {
82112
return (ListOperationsResponse) super.set(fieldName, value);

clients/google-api-services-cloudfunctions/v2/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-cloudfunctions</artifactId>
11-
<version>v2-rev20250908-2.0.0</version>
12-
<name>Cloud Functions API v2-rev20250908-2.0.0</name>
11+
<version>v2-rev20250929-2.0.0</version>
12+
<name>Cloud Functions API v2-rev20250929-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-cloudfunctions/v2/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-cloudfunctions</artifactId>
25-
<version>v2-rev20250908-2.0.0</version>
25+
<version>v2-rev20250929-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-cloudfunctions:v2-rev20250908-2.0.0'
38+
implementation 'com.google.apis:google-api-services-cloudfunctions:v2-rev20250929-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)