Skip to content

Commit 4f1b03e

Browse files
1 parent 4a5983a commit 4f1b03e

File tree

4 files changed

+33
-6
lines changed

4 files changed

+33
-6
lines changed

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

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

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,14 @@ public final class GoogleCloudRunV2ServiceScaling extends com.google.api.client.
3838
@com.google.api.client.util.Key
3939
private java.lang.Integer manualInstanceCount;
4040

41+
/**
42+
* Optional. total max instances for the service. This number of instances is divided among all
43+
* revisions with specified traffic based on the percent of traffic they are receiving.
44+
* The value may be {@code null}.
45+
*/
46+
@com.google.api.client.util.Key
47+
private java.lang.Integer maxInstanceCount;
48+
4149
/**
4250
* Optional. total min instances for the service. This number of instances is divided among all
4351
* revisions with specified traffic based on the percent of traffic they are receiving.
@@ -74,6 +82,25 @@ public GoogleCloudRunV2ServiceScaling setManualInstanceCount(java.lang.Integer m
7482
return this;
7583
}
7684

85+
/**
86+
* Optional. total max instances for the service. This number of instances is divided among all
87+
* revisions with specified traffic based on the percent of traffic they are receiving.
88+
* @return value or {@code null} for none
89+
*/
90+
public java.lang.Integer getMaxInstanceCount() {
91+
return maxInstanceCount;
92+
}
93+
94+
/**
95+
* Optional. total max instances for the service. This number of instances is divided among all
96+
* revisions with specified traffic based on the percent of traffic they are receiving.
97+
* @param maxInstanceCount maxInstanceCount or {@code null} for none
98+
*/
99+
public GoogleCloudRunV2ServiceScaling setMaxInstanceCount(java.lang.Integer maxInstanceCount) {
100+
this.maxInstanceCount = maxInstanceCount;
101+
return this;
102+
}
103+
77104
/**
78105
* Optional. total min instances for the service. This number of instances is divided among all
79106
* revisions with specified traffic based on the percent of traffic they are receiving.

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

0 commit comments

Comments
 (0)