Skip to content

Commit b84e161

Browse files
1 parent 8052a32 commit b84e161

File tree

15 files changed

+178
-65
lines changed

15 files changed

+178
-65
lines changed

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

clients/google-api-services-run/v1/2.0.0/com/google/api/services/run/v1/CloudRun.java

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -10011,30 +10011,31 @@ public List setPageToken(java.lang.String pageToken) {
1001110011

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

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

1003310034
/**
1003410035
* When set to `true`, operations that are reachable are returned as normal, and those
10035-
* that are unreachable are returned in the [ListOperationsResponse.unreachable] field.
10036-
* This can only be `true` when reading across collections e.g. when `parent` is set to
10037-
* `"projects/example/locations/-"`. This field is not by default supported and will
10036+
* that are unreachable are returned in the ListOperationsResponse.unreachable field. This
10037+
* can only be `true` when reading across collections. For example, when `parent` is set
10038+
* to `"projects/example/locations/-"`. This field is not supported by default and will
1003810039
* result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in
1003910040
* service or product specific documentation.
1004010041
*/

clients/google-api-services-run/v1/2.0.0/com/google/api/services/run/v1/model/GoogleDevtoolsCloudbuildV1MavenArtifact.java

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,15 @@ public final class GoogleDevtoolsCloudbuildV1MavenArtifact extends com.google.ap
3636
@com.google.api.client.util.Key
3737
private java.lang.String artifactId;
3838

39+
/**
40+
* Optional. Path to a folder containing the files to upload to Artifact Registry. This can be
41+
* either an absolute path, e.g. `/workspace/my-app/target/`, or a relative path from /workspace,
42+
* e.g. `my-app/target/`. This field is mutually exclusive with the `path` field.
43+
* The value may be {@code null}.
44+
*/
45+
@com.google.api.client.util.Key
46+
private java.lang.String deployFolder;
47+
3948
/**
4049
* Maven `groupId` value used when uploading the artifact to Artifact Registry.
4150
* The value may be {@code null}.
@@ -85,6 +94,27 @@ public GoogleDevtoolsCloudbuildV1MavenArtifact setArtifactId(java.lang.String ar
8594
return this;
8695
}
8796

97+
/**
98+
* Optional. Path to a folder containing the files to upload to Artifact Registry. This can be
99+
* either an absolute path, e.g. `/workspace/my-app/target/`, or a relative path from /workspace,
100+
* e.g. `my-app/target/`. This field is mutually exclusive with the `path` field.
101+
* @return value or {@code null} for none
102+
*/
103+
public java.lang.String getDeployFolder() {
104+
return deployFolder;
105+
}
106+
107+
/**
108+
* Optional. Path to a folder containing the files to upload to Artifact Registry. This can be
109+
* either an absolute path, e.g. `/workspace/my-app/target/`, or a relative path from /workspace,
110+
* e.g. `my-app/target/`. This field is mutually exclusive with the `path` field.
111+
* @param deployFolder deployFolder or {@code null} for none
112+
*/
113+
public GoogleDevtoolsCloudbuildV1MavenArtifact setDeployFolder(java.lang.String deployFolder) {
114+
this.deployFolder = deployFolder;
115+
return this;
116+
}
117+
88118
/**
89119
* Maven `groupId` value used when uploading the artifact to Artifact Registry.
90120
* @return value or {@code null} for none

clients/google-api-services-run/v1/2.0.0/com/google/api/services/run/v1/model/GoogleLongrunningListOperationsResponse.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ public final class GoogleLongrunningListOperationsResponse extends com.google.ap
4545

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

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

9999
/**
100100
* Unordered list. Unreachable resources. Populated when the request sets
101-
* `ListOperationsRequest.return_partial_success` and reads across collections e.g. when
101+
* `ListOperationsRequest.return_partial_success` and reads across collections. For example, when
102102
* attempting to list all resources across all supported locations.
103103
* @param unreachable unreachable or {@code null} for none
104104
*/

clients/google-api-services-run/v1/2.0.0/com/google/api/services/run/v1/model/ObjectMeta.java

Lines changed: 21 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -53,12 +53,14 @@ public final class ObjectMeta extends com.google.api.client.json.GenericJson {
5353
* `run.googleapis.com/execution-environment`: Revision, Execution. * `run.googleapis.com/gc-
5454
* traffic-tags`: Service. * `run.googleapis.com/gpu-zonal-redundancy-disabled`: Revision. *
5555
* `run.googleapis.com/health-check-disabled`: Revision. * `run.googleapis.com/ingress`: Service.
56-
* * `run.googleapis.com/launch-stage`: Service, Job. * `run.googleapis.com/minScale`: Service *
56+
* * `run.googleapis.com/launch-stage`: Service, Job. * `run.googleapis.com/minScale`: Service. *
57+
* `run.googleapis.com/maxScale`: Service. * `run.googleapis.com/manualInstanceCount`: Service. *
5758
* `run.googleapis.com/network-interfaces`: Revision, Execution. * `run.googleapis.com/post-key-
58-
* revocation-action-type`: Revision. * `run.googleapis.com/secrets`: Revision, Execution. *
59-
* `run.googleapis.com/secure-session-agent`: Revision. * `run.googleapis.com/sessionAffinity`:
60-
* Revision. * `run.googleapis.com/startup-cpu-boost`: Revision. * `run.googleapis.com/vpc-access-
61-
* connector`: Revision, Execution. * `run.googleapis.com/vpc-access-egress`: Revision, Execution.
59+
* revocation-action-type`: Revision. `run.googleapis.com/scalingMode`: Service. *
60+
* `run.googleapis.com/secrets`: Revision, Execution. * `run.googleapis.com/secure-session-agent`:
61+
* Revision. * `run.googleapis.com/sessionAffinity`: Revision. * `run.googleapis.com/startup-cpu-
62+
* boost`: Revision. * `run.googleapis.com/vpc-access-connector`: Revision, Execution. *
63+
* `run.googleapis.com/vpc-access-egress`: Revision, Execution.
6264
* The value may be {@code null}.
6365
*/
6466
@com.google.api.client.util.Key
@@ -194,12 +196,14 @@ public final class ObjectMeta extends com.google.api.client.json.GenericJson {
194196
* `run.googleapis.com/execution-environment`: Revision, Execution. * `run.googleapis.com/gc-
195197
* traffic-tags`: Service. * `run.googleapis.com/gpu-zonal-redundancy-disabled`: Revision. *
196198
* `run.googleapis.com/health-check-disabled`: Revision. * `run.googleapis.com/ingress`: Service.
197-
* * `run.googleapis.com/launch-stage`: Service, Job. * `run.googleapis.com/minScale`: Service *
199+
* * `run.googleapis.com/launch-stage`: Service, Job. * `run.googleapis.com/minScale`: Service. *
200+
* `run.googleapis.com/maxScale`: Service. * `run.googleapis.com/manualInstanceCount`: Service. *
198201
* `run.googleapis.com/network-interfaces`: Revision, Execution. * `run.googleapis.com/post-key-
199-
* revocation-action-type`: Revision. * `run.googleapis.com/secrets`: Revision, Execution. *
200-
* `run.googleapis.com/secure-session-agent`: Revision. * `run.googleapis.com/sessionAffinity`:
201-
* Revision. * `run.googleapis.com/startup-cpu-boost`: Revision. * `run.googleapis.com/vpc-access-
202-
* connector`: Revision, Execution. * `run.googleapis.com/vpc-access-egress`: Revision, Execution.
202+
* revocation-action-type`: Revision. `run.googleapis.com/scalingMode`: Service. *
203+
* `run.googleapis.com/secrets`: Revision, Execution. * `run.googleapis.com/secure-session-agent`:
204+
* Revision. * `run.googleapis.com/sessionAffinity`: Revision. * `run.googleapis.com/startup-cpu-
205+
* boost`: Revision. * `run.googleapis.com/vpc-access-connector`: Revision, Execution. *
206+
* `run.googleapis.com/vpc-access-egress`: Revision, Execution.
203207
* @return value or {@code null} for none
204208
*/
205209
public java.util.Map<String, java.lang.String> getAnnotations() {
@@ -229,12 +233,14 @@ public java.util.Map<String, java.lang.String> getAnnotations() {
229233
* `run.googleapis.com/execution-environment`: Revision, Execution. * `run.googleapis.com/gc-
230234
* traffic-tags`: Service. * `run.googleapis.com/gpu-zonal-redundancy-disabled`: Revision. *
231235
* `run.googleapis.com/health-check-disabled`: Revision. * `run.googleapis.com/ingress`: Service.
232-
* * `run.googleapis.com/launch-stage`: Service, Job. * `run.googleapis.com/minScale`: Service *
236+
* * `run.googleapis.com/launch-stage`: Service, Job. * `run.googleapis.com/minScale`: Service. *
237+
* `run.googleapis.com/maxScale`: Service. * `run.googleapis.com/manualInstanceCount`: Service. *
233238
* `run.googleapis.com/network-interfaces`: Revision, Execution. * `run.googleapis.com/post-key-
234-
* revocation-action-type`: Revision. * `run.googleapis.com/secrets`: Revision, Execution. *
235-
* `run.googleapis.com/secure-session-agent`: Revision. * `run.googleapis.com/sessionAffinity`:
236-
* Revision. * `run.googleapis.com/startup-cpu-boost`: Revision. * `run.googleapis.com/vpc-access-
237-
* connector`: Revision, Execution. * `run.googleapis.com/vpc-access-egress`: Revision, Execution.
239+
* revocation-action-type`: Revision. `run.googleapis.com/scalingMode`: Service. *
240+
* `run.googleapis.com/secrets`: Revision, Execution. * `run.googleapis.com/secure-session-agent`:
241+
* Revision. * `run.googleapis.com/sessionAffinity`: Revision. * `run.googleapis.com/startup-cpu-
242+
* boost`: Revision. * `run.googleapis.com/vpc-access-connector`: Revision, Execution. *
243+
* `run.googleapis.com/vpc-access-egress`: Revision, Execution.
238244
* @param annotations annotations or {@code null} for none
239245
*/
240246
public ObjectMeta setAnnotations(java.util.Map<String, java.lang.String> annotations) {

clients/google-api-services-run/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-run</artifactId>
11-
<version>v1-rev20251107-2.0.0</version>
12-
<name>Cloud Run Admin API v1-rev20251107-2.0.0</name>
11+
<version>v1-rev20251202-2.0.0</version>
12+
<name>Cloud Run Admin API v1-rev20251202-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

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

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

clients/google-api-services-run/v2/2.0.0/com/google/api/services/run/v2/CloudRun.java

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -4316,30 +4316,31 @@ public List setPageToken(java.lang.String pageToken) {
43164316

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

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

43384339
/**
43394340
* When set to `true`, operations that are reachable are returned as normal, and those
4340-
* that are unreachable are returned in the [ListOperationsResponse.unreachable] field.
4341-
* This can only be `true` when reading across collections e.g. when `parent` is set to
4342-
* `"projects/example/locations/-"`. This field is not by default supported and will
4341+
* that are unreachable are returned in the ListOperationsResponse.unreachable field. This
4342+
* can only be `true` when reading across collections. For example, when `parent` is set
4343+
* to `"projects/example/locations/-"`. This field is not supported by default and will
43434344
* result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in
43444345
* service or product specific documentation.
43454346
*/

clients/google-api-services-run/v2/2.0.0/com/google/api/services/run/v2/model/GoogleCloudRunV2ListServicesResponse.java

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,14 @@ public final class GoogleCloudRunV2ListServicesResponse extends com.google.api.c
4444
@com.google.api.client.util.Key
4545
private java.util.List<GoogleCloudRunV2Service> services;
4646

47+
/**
48+
* Output only. For global requests, returns the list of regions that could not be reached within
49+
* the deadline.
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+
4755
/**
4856
* A token indicating there are more items than page_size. Use it in the next ListServices request
4957
* to continue.
@@ -80,6 +88,25 @@ public GoogleCloudRunV2ListServicesResponse setServices(java.util.List<GoogleClo
8088
return this;
8189
}
8290

91+
/**
92+
* Output only. For global requests, returns the list of regions that could not be reached within
93+
* the deadline.
94+
* @return value or {@code null} for none
95+
*/
96+
public java.util.List<java.lang.String> getUnreachable() {
97+
return unreachable;
98+
}
99+
100+
/**
101+
* Output only. For global requests, returns the list of regions that could not be reached within
102+
* the deadline.
103+
* @param unreachable unreachable or {@code null} for none
104+
*/
105+
public GoogleCloudRunV2ListServicesResponse setUnreachable(java.util.List<java.lang.String> unreachable) {
106+
this.unreachable = unreachable;
107+
return this;
108+
}
109+
83110
@Override
84111
public GoogleCloudRunV2ListServicesResponse set(String fieldName, Object value) {
85112
return (GoogleCloudRunV2ListServicesResponse) super.set(fieldName, value);

0 commit comments

Comments
 (0)