Skip to content

Commit 65bb2ea

Browse files
1 parent c296804 commit 65bb2ea

File tree

4 files changed

+36
-6
lines changed

4 files changed

+36
-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-rev20241115-2.0.0</version>
25+
<version>v2-rev20241206-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-rev20241115-2.0.0'
38+
implementation 'com.google.apis:google-api-services-run:v2-rev20241206-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: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,15 @@
2929
@SuppressWarnings("javadoc")
3030
public final class GoogleCloudRunV2ServiceScaling extends com.google.api.client.json.GenericJson {
3131

32+
/**
33+
* Optional. total instance count for the service in manual scaling mode. This number of instances
34+
* is divided among all revisions with specified traffic based on the percent of traffic they are
35+
* receiving.
36+
* The value may be {@code null}.
37+
*/
38+
@com.google.api.client.util.Key
39+
private java.lang.Integer manualInstanceCount;
40+
3241
/**
3342
* Optional. total min instances for the service. This number of instances is divided among all
3443
* revisions with specified traffic based on the percent of traffic they are receiving.
@@ -44,6 +53,27 @@ public final class GoogleCloudRunV2ServiceScaling extends com.google.api.client.
4453
@com.google.api.client.util.Key
4554
private java.lang.String scalingMode;
4655

56+
/**
57+
* Optional. total instance count for the service in manual scaling mode. This number of instances
58+
* is divided among all revisions with specified traffic based on the percent of traffic they are
59+
* receiving.
60+
* @return value or {@code null} for none
61+
*/
62+
public java.lang.Integer getManualInstanceCount() {
63+
return manualInstanceCount;
64+
}
65+
66+
/**
67+
* Optional. total instance count for the service in manual scaling mode. This number of instances
68+
* is divided among all revisions with specified traffic based on the percent of traffic they are
69+
* receiving.
70+
* @param manualInstanceCount manualInstanceCount or {@code null} for none
71+
*/
72+
public GoogleCloudRunV2ServiceScaling setManualInstanceCount(java.lang.Integer manualInstanceCount) {
73+
this.manualInstanceCount = manualInstanceCount;
74+
return this;
75+
}
76+
4777
/**
4878
* Optional. total min instances for the service. This number of instances is divided among all
4979
* 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-rev20241115-2.0.0</version>
12-
<name>Cloud Run Admin API v2-rev20241115-2.0.0</name>
11+
<version>v2-rev20241206-2.0.0</version>
12+
<name>Cloud Run Admin API v2-rev20241206-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-rev20241115-2.0.0</version>
25+
<version>v2-rev20241206-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-rev20241115-2.0.0'
38+
implementation 'com.google.apis:google-api-services-run:v2-rev20241206-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)