Skip to content

Commit 435a9fe

Browse files
1 parent 054ce78 commit 435a9fe

File tree

8 files changed

+525
-90
lines changed

8 files changed

+525
-90
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-rev20250425-2.0.0</version>
25+
<version>v1-rev20250509-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-rev20250425-2.0.0'
38+
implementation 'com.google.apis:google-api-services-run:v1-rev20250509-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: 513 additions & 0 deletions
Large diffs are not rendered by default.

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

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

Lines changed: 0 additions & 78 deletions
Original file line numberDiff line numberDiff line change
@@ -36,29 +36,6 @@ public final class GoogleCloudRunV2WorkerPoolScaling extends com.google.api.clie
3636
@com.google.api.client.util.Key
3737
private java.lang.Integer manualInstanceCount;
3838

39-
/**
40-
* Optional. The maximum count of instances distributed among revisions based on the specified
41-
* instance split percentages.
42-
* The value may be {@code null}.
43-
*/
44-
@com.google.api.client.util.Key
45-
private java.lang.Integer maxInstanceCount;
46-
47-
/**
48-
* Optional. The minimum count of instances distributed among revisions based on the specified
49-
* instance split percentages.
50-
* The value may be {@code null}.
51-
*/
52-
@com.google.api.client.util.Key
53-
private java.lang.Integer minInstanceCount;
54-
55-
/**
56-
* Optional. The scaling mode for the worker pool.
57-
* The value may be {@code null}.
58-
*/
59-
@com.google.api.client.util.Key
60-
private java.lang.String scalingMode;
61-
6239
/**
6340
* Optional. The total number of instances in manual scaling mode.
6441
* @return value or {@code null} for none
@@ -76,61 +53,6 @@ public GoogleCloudRunV2WorkerPoolScaling setManualInstanceCount(java.lang.Intege
7653
return this;
7754
}
7855

79-
/**
80-
* Optional. The maximum count of instances distributed among revisions based on the specified
81-
* instance split percentages.
82-
* @return value or {@code null} for none
83-
*/
84-
public java.lang.Integer getMaxInstanceCount() {
85-
return maxInstanceCount;
86-
}
87-
88-
/**
89-
* Optional. The maximum count of instances distributed among revisions based on the specified
90-
* instance split percentages.
91-
* @param maxInstanceCount maxInstanceCount or {@code null} for none
92-
*/
93-
public GoogleCloudRunV2WorkerPoolScaling setMaxInstanceCount(java.lang.Integer maxInstanceCount) {
94-
this.maxInstanceCount = maxInstanceCount;
95-
return this;
96-
}
97-
98-
/**
99-
* Optional. The minimum count of instances distributed among revisions based on the specified
100-
* instance split percentages.
101-
* @return value or {@code null} for none
102-
*/
103-
public java.lang.Integer getMinInstanceCount() {
104-
return minInstanceCount;
105-
}
106-
107-
/**
108-
* Optional. The minimum count of instances distributed among revisions based on the specified
109-
* instance split percentages.
110-
* @param minInstanceCount minInstanceCount or {@code null} for none
111-
*/
112-
public GoogleCloudRunV2WorkerPoolScaling setMinInstanceCount(java.lang.Integer minInstanceCount) {
113-
this.minInstanceCount = minInstanceCount;
114-
return this;
115-
}
116-
117-
/**
118-
* Optional. The scaling mode for the worker pool.
119-
* @return value or {@code null} for none
120-
*/
121-
public java.lang.String getScalingMode() {
122-
return scalingMode;
123-
}
124-
125-
/**
126-
* Optional. The scaling mode for the worker pool.
127-
* @param scalingMode scalingMode or {@code null} for none
128-
*/
129-
public GoogleCloudRunV2WorkerPoolScaling setScalingMode(java.lang.String scalingMode) {
130-
this.scalingMode = scalingMode;
131-
return this;
132-
}
133-
13456
@Override
13557
public GoogleCloudRunV2WorkerPoolScaling set(String fieldName, Object value) {
13658
return (GoogleCloudRunV2WorkerPoolScaling) super.set(fieldName, value);

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

0 commit comments

Comments
 (0)