Skip to content

Commit 4728435

Browse files
1 parent 6a95844 commit 4728435

File tree

10 files changed

+99
-63
lines changed

10 files changed

+99
-63
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-rev20250704-2.0.0</version>
25+
<version>v1-rev20250801-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-rev20250704-2.0.0'
38+
implementation 'com.google.apis:google-api-services-run:v1-rev20250801-2.0.0'
3939
}
4040
```
4141

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

Lines changed: 15 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -31,15 +31,17 @@
3131
public final class InstanceSplit extends com.google.api.client.json.GenericJson {
3232

3333
/**
34-
* Uses the "status.latestReadyRevisionName" to determine the traffic target. When it changes,
35-
* traffic will automatically migrate from the prior "latest ready" revision to the new one.
34+
* Uses the "status.latestReadyRevisionName" to determine the instance split target. When it
35+
* changes, workloads will automatically migrate from the prior "latest ready" revision to the new
36+
* one.
3637
* The value may be {@code null}.
3738
*/
3839
@com.google.api.client.util.Key
3940
private java.lang.Boolean latestRevision;
4041

4142
/**
42-
* Specifies percent of the instance split to this Revision. This defaults to zero if unspecified.
43+
* Optional. Specifies percent of the instance split to this Revision. This defaults to zero if
44+
* unspecified.
4345
* The value may be {@code null}.
4446
*/
4547
@com.google.api.client.util.Key
@@ -53,17 +55,19 @@ public final class InstanceSplit extends com.google.api.client.json.GenericJson
5355
private java.lang.String revisionName;
5456

5557
/**
56-
* Uses the "status.latestReadyRevisionName" to determine the traffic target. When it changes,
57-
* traffic will automatically migrate from the prior "latest ready" revision to the new one.
58+
* Uses the "status.latestReadyRevisionName" to determine the instance split target. When it
59+
* changes, workloads will automatically migrate from the prior "latest ready" revision to the new
60+
* one.
5861
* @return value or {@code null} for none
5962
*/
6063
public java.lang.Boolean getLatestRevision() {
6164
return latestRevision;
6265
}
6366

6467
/**
65-
* Uses the "status.latestReadyRevisionName" to determine the traffic target. When it changes,
66-
* traffic will automatically migrate from the prior "latest ready" revision to the new one.
68+
* Uses the "status.latestReadyRevisionName" to determine the instance split target. When it
69+
* changes, workloads will automatically migrate from the prior "latest ready" revision to the new
70+
* one.
6771
* @param latestRevision latestRevision or {@code null} for none
6872
*/
6973
public InstanceSplit setLatestRevision(java.lang.Boolean latestRevision) {
@@ -72,15 +76,17 @@ public InstanceSplit setLatestRevision(java.lang.Boolean latestRevision) {
7276
}
7377

7478
/**
75-
* Specifies percent of the instance split to this Revision. This defaults to zero if unspecified.
79+
* Optional. Specifies percent of the instance split to this Revision. This defaults to zero if
80+
* unspecified.
7681
* @return value or {@code null} for none
7782
*/
7883
public java.lang.Integer getPercent() {
7984
return percent;
8085
}
8186

8287
/**
83-
* Specifies percent of the instance split to this Revision. This defaults to zero if unspecified.
88+
* Optional. Specifies percent of the instance split to this Revision. This defaults to zero if
89+
* unspecified.
8490
* @param percent percent or {@code null} for none
8591
*/
8692
public InstanceSplit setPercent(java.lang.Integer percent) {

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ public final class WorkerPoolStatus extends com.google.api.client.json.GenericJs
4545
}
4646

4747
/**
48-
* Holds the configured traffic distribution. These entries will always contain RevisionName
48+
* Holds the configured workload distribution. These entries will always contain RevisionName
4949
* references. When ConfigurationName appears in the spec, this will hold the
5050
* LatestReadyRevisionName that we last observed.
5151
* The value may be {@code null}.
@@ -106,7 +106,7 @@ public WorkerPoolStatus setConditions(java.util.List<GoogleCloudRunV1Condition>
106106
}
107107

108108
/**
109-
* Holds the configured traffic distribution. These entries will always contain RevisionName
109+
* Holds the configured workload distribution. These entries will always contain RevisionName
110110
* references. When ConfigurationName appears in the spec, this will hold the
111111
* LatestReadyRevisionName that we last observed.
112112
* @return value or {@code null} for none
@@ -116,7 +116,7 @@ public java.util.List<InstanceSplit> getInstanceSplits() {
116116
}
117117

118118
/**
119-
* Holds the configured traffic distribution. These entries will always contain RevisionName
119+
* Holds the configured workload distribution. These entries will always contain RevisionName
120120
* references. When ConfigurationName appears in the spec, this will hold the
121121
* LatestReadyRevisionName that we last observed.
122122
* @param instanceSplits instanceSplits or {@code null} for none

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-rev20250704-2.0.0</version>
12-
<name>Cloud Run Admin API v1-rev20250704-2.0.0</name>
11+
<version>v1-rev20250801-2.0.0</version>
12+
<name>Cloud Run Admin API v1-rev20250801-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-rev20250704-2.0.0</version>
25+
<version>v1-rev20250801-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-rev20250704-2.0.0'
38+
implementation 'com.google.apis:google-api-services-run:v1-rev20250801-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-rev20250718-2.0.0</version>
25+
<version>v2-rev20250801-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-rev20250718-2.0.0'
38+
implementation 'com.google.apis:google-api-services-run:v2-rev20250801-2.0.0'
3939
}
4040
```
4141

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

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,15 @@ public final class GoogleCloudRunV2SubmitBuildRequest extends com.google.api.cli
5050
@com.google.api.client.util.Key
5151
private java.lang.String imageUri;
5252

53+
/**
54+
* Optional. The machine type from default pool to use for the build. If left blank, cloudbuild
55+
* will use a sensible default. Currently only E2_HIGHCPU_8 is supported. If worker_pool is set,
56+
* this field will be ignored.
57+
* The value may be {@code null}.
58+
*/
59+
@com.google.api.client.util.Key
60+
private java.lang.String machineType;
61+
5362
/**
5463
* Optional. The service account to use for the build. If not set, the default Cloud Build service
5564
* account for the project will be used.
@@ -133,6 +142,27 @@ public GoogleCloudRunV2SubmitBuildRequest setImageUri(java.lang.String imageUri)
133142
return this;
134143
}
135144

145+
/**
146+
* Optional. The machine type from default pool to use for the build. If left blank, cloudbuild
147+
* will use a sensible default. Currently only E2_HIGHCPU_8 is supported. If worker_pool is set,
148+
* this field will be ignored.
149+
* @return value or {@code null} for none
150+
*/
151+
public java.lang.String getMachineType() {
152+
return machineType;
153+
}
154+
155+
/**
156+
* Optional. The machine type from default pool to use for the build. If left blank, cloudbuild
157+
* will use a sensible default. Currently only E2_HIGHCPU_8 is supported. If worker_pool is set,
158+
* this field will be ignored.
159+
* @param machineType machineType or {@code null} for none
160+
*/
161+
public GoogleCloudRunV2SubmitBuildRequest setMachineType(java.lang.String machineType) {
162+
this.machineType = machineType;
163+
return this;
164+
}
165+
136166
/**
137167
* Optional. The service account to use for the build. If not set, the default Cloud Build service
138168
* account for the project will be used.

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

Lines changed: 39 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -201,8 +201,8 @@ public final class GoogleCloudRunV2WorkerPool extends com.google.api.client.json
201201
private java.lang.String latestCreatedRevision;
202202

203203
/**
204-
* Output only. Name of the latest revision that is serving traffic. See comments in `reconciling`
205-
* for additional information on reconciliation process in Cloud Run.
204+
* Output only. Name of the latest revision that is serving workloads. See comments in
205+
* `reconciling` for additional information on reconciliation process in Cloud Run.
206206
* The value may be {@code null}.
207207
*/
208208
@com.google.api.client.util.Key
@@ -230,7 +230,7 @@ public final class GoogleCloudRunV2WorkerPool extends com.google.api.client.json
230230
private java.lang.String name;
231231

232232
/**
233-
* Output only. The generation of this WorkerPool currently serving traffic. See comments in
233+
* Output only. The generation of this WorkerPool currently serving workloads. See comments in
234234
* `reconciling` for additional information on reconciliation process in Cloud Run. Please note
235235
* that unlike v1, this is an int64 value. As with most Google APIs, its JSON representation will
236236
* be a `string` instead of an `integer`.
@@ -244,16 +244,16 @@ public final class GoogleCloudRunV2WorkerPool extends com.google.api.client.json
244244
* bring it into the desired state. When a new WorkerPool is created, or an existing one is
245245
* updated, Cloud Run will asynchronously perform all necessary steps to bring the WorkerPool to
246246
* the desired serving state. This process is called reconciliation. While reconciliation is in
247-
* process, `observed_generation`, `latest_ready_revison`, `traffic_statuses`, and `uri` will have
248-
* transient values that might mismatch the intended state: Once reconciliation is over (and this
249-
* field is false), there are two possible outcomes: reconciliation succeeded and the serving
250-
* state matches the WorkerPool, or there was an error, and reconciliation failed. This state can
251-
* be found in `terminal_condition.state`. If reconciliation succeeded, the following fields will
252-
* match: `traffic` and `traffic_statuses`, `observed_generation` and `generation`,
253-
* `latest_ready_revision` and `latest_created_revision`. If reconciliation failed,
254-
* `traffic_statuses`, `observed_generation`, and `latest_ready_revision` will have the state of
255-
* the last serving revision, or empty for newly created WorkerPools. Additional information on
256-
* the failure can be found in `terminal_condition` and `conditions`.
247+
* process, `observed_generation`, `latest_ready_revison`, `instance_split_statuses`, and `uri`
248+
* will have transient values that might mismatch the intended state: Once reconciliation is over
249+
* (and this field is false), there are two possible outcomes: reconciliation succeeded and the
250+
* serving state matches the WorkerPool, or there was an error, and reconciliation failed. This
251+
* state can be found in `terminal_condition.state`. If reconciliation succeeded, the following
252+
* fields will match: `instance_splits` and `instance_split_statuses`, `observed_generation` and
253+
* `generation`, `latest_ready_revision` and `latest_created_revision`. If reconciliation failed,
254+
* `instance_split_statuses`, `observed_generation`, and `latest_ready_revision` will have the
255+
* state of the last serving revision, or empty for newly created WorkerPools. Additional
256+
* information on the failure can be found in `terminal_condition` and `conditions`.
257257
* The value may be {@code null}.
258258
*/
259259
@com.google.api.client.util.Key
@@ -659,17 +659,17 @@ public GoogleCloudRunV2WorkerPool setLatestCreatedRevision(java.lang.String late
659659
}
660660

661661
/**
662-
* Output only. Name of the latest revision that is serving traffic. See comments in `reconciling`
663-
* for additional information on reconciliation process in Cloud Run.
662+
* Output only. Name of the latest revision that is serving workloads. See comments in
663+
* `reconciling` for additional information on reconciliation process in Cloud Run.
664664
* @return value or {@code null} for none
665665
*/
666666
public java.lang.String getLatestReadyRevision() {
667667
return latestReadyRevision;
668668
}
669669

670670
/**
671-
* Output only. Name of the latest revision that is serving traffic. See comments in `reconciling`
672-
* for additional information on reconciliation process in Cloud Run.
671+
* Output only. Name of the latest revision that is serving workloads. See comments in
672+
* `reconciling` for additional information on reconciliation process in Cloud Run.
673673
* @param latestReadyRevision latestReadyRevision or {@code null} for none
674674
*/
675675
public GoogleCloudRunV2WorkerPool setLatestReadyRevision(java.lang.String latestReadyRevision) {
@@ -726,7 +726,7 @@ public GoogleCloudRunV2WorkerPool setName(java.lang.String name) {
726726
}
727727

728728
/**
729-
* Output only. The generation of this WorkerPool currently serving traffic. See comments in
729+
* Output only. The generation of this WorkerPool currently serving workloads. See comments in
730730
* `reconciling` for additional information on reconciliation process in Cloud Run. Please note
731731
* that unlike v1, this is an int64 value. As with most Google APIs, its JSON representation will
732732
* be a `string` instead of an `integer`.
@@ -737,7 +737,7 @@ public java.lang.Long getObservedGeneration() {
737737
}
738738

739739
/**
740-
* Output only. The generation of this WorkerPool currently serving traffic. See comments in
740+
* Output only. The generation of this WorkerPool currently serving workloads. See comments in
741741
* `reconciling` for additional information on reconciliation process in Cloud Run. Please note
742742
* that unlike v1, this is an int64 value. As with most Google APIs, its JSON representation will
743743
* be a `string` instead of an `integer`.
@@ -753,16 +753,16 @@ public GoogleCloudRunV2WorkerPool setObservedGeneration(java.lang.Long observedG
753753
* bring it into the desired state. When a new WorkerPool is created, or an existing one is
754754
* updated, Cloud Run will asynchronously perform all necessary steps to bring the WorkerPool to
755755
* the desired serving state. This process is called reconciliation. While reconciliation is in
756-
* process, `observed_generation`, `latest_ready_revison`, `traffic_statuses`, and `uri` will have
757-
* transient values that might mismatch the intended state: Once reconciliation is over (and this
758-
* field is false), there are two possible outcomes: reconciliation succeeded and the serving
759-
* state matches the WorkerPool, or there was an error, and reconciliation failed. This state can
760-
* be found in `terminal_condition.state`. If reconciliation succeeded, the following fields will
761-
* match: `traffic` and `traffic_statuses`, `observed_generation` and `generation`,
762-
* `latest_ready_revision` and `latest_created_revision`. If reconciliation failed,
763-
* `traffic_statuses`, `observed_generation`, and `latest_ready_revision` will have the state of
764-
* the last serving revision, or empty for newly created WorkerPools. Additional information on
765-
* the failure can be found in `terminal_condition` and `conditions`.
756+
* process, `observed_generation`, `latest_ready_revison`, `instance_split_statuses`, and `uri`
757+
* will have transient values that might mismatch the intended state: Once reconciliation is over
758+
* (and this field is false), there are two possible outcomes: reconciliation succeeded and the
759+
* serving state matches the WorkerPool, or there was an error, and reconciliation failed. This
760+
* state can be found in `terminal_condition.state`. If reconciliation succeeded, the following
761+
* fields will match: `instance_splits` and `instance_split_statuses`, `observed_generation` and
762+
* `generation`, `latest_ready_revision` and `latest_created_revision`. If reconciliation failed,
763+
* `instance_split_statuses`, `observed_generation`, and `latest_ready_revision` will have the
764+
* state of the last serving revision, or empty for newly created WorkerPools. Additional
765+
* information on the failure can be found in `terminal_condition` and `conditions`.
766766
* @return value or {@code null} for none
767767
*/
768768
public java.lang.Boolean getReconciling() {
@@ -774,16 +774,16 @@ public java.lang.Boolean getReconciling() {
774774
* bring it into the desired state. When a new WorkerPool is created, or an existing one is
775775
* updated, Cloud Run will asynchronously perform all necessary steps to bring the WorkerPool to
776776
* the desired serving state. This process is called reconciliation. While reconciliation is in
777-
* process, `observed_generation`, `latest_ready_revison`, `traffic_statuses`, and `uri` will have
778-
* transient values that might mismatch the intended state: Once reconciliation is over (and this
779-
* field is false), there are two possible outcomes: reconciliation succeeded and the serving
780-
* state matches the WorkerPool, or there was an error, and reconciliation failed. This state can
781-
* be found in `terminal_condition.state`. If reconciliation succeeded, the following fields will
782-
* match: `traffic` and `traffic_statuses`, `observed_generation` and `generation`,
783-
* `latest_ready_revision` and `latest_created_revision`. If reconciliation failed,
784-
* `traffic_statuses`, `observed_generation`, and `latest_ready_revision` will have the state of
785-
* the last serving revision, or empty for newly created WorkerPools. Additional information on
786-
* the failure can be found in `terminal_condition` and `conditions`.
777+
* process, `observed_generation`, `latest_ready_revison`, `instance_split_statuses`, and `uri`
778+
* will have transient values that might mismatch the intended state: Once reconciliation is over
779+
* (and this field is false), there are two possible outcomes: reconciliation succeeded and the
780+
* serving state matches the WorkerPool, or there was an error, and reconciliation failed. This
781+
* state can be found in `terminal_condition.state`. If reconciliation succeeded, the following
782+
* fields will match: `instance_splits` and `instance_split_statuses`, `observed_generation` and
783+
* `generation`, `latest_ready_revision` and `latest_created_revision`. If reconciliation failed,
784+
* `instance_split_statuses`, `observed_generation`, and `latest_ready_revision` will have the
785+
* state of the last serving revision, or empty for newly created WorkerPools. Additional
786+
* information on the failure can be found in `terminal_condition` and `conditions`.
787787
* @param reconciling reconciling or {@code null} for none
788788
*/
789789
public GoogleCloudRunV2WorkerPool setReconciling(java.lang.Boolean reconciling) {

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

1515
<inceptionYear>2011</inceptionYear>

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

0 commit comments

Comments
 (0)