Skip to content

Commit 50d22ca

Browse files
1 parent e97ee11 commit 50d22ca

File tree

4 files changed

+30
-6
lines changed

4 files changed

+30
-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-rev20240831-2.0.0</version>
25+
<version>v2-rev20240916-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-rev20240831-2.0.0'
38+
implementation 'com.google.apis:google-api-services-run:v2-rev20240916-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: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,13 @@ public final class GoogleCloudRunV2ServiceScaling extends com.google.api.client.
3737
@com.google.api.client.util.Key
3838
private java.lang.Integer minInstanceCount;
3939

40+
/**
41+
* Optional. The scaling mode for the service.
42+
* The value may be {@code null}.
43+
*/
44+
@com.google.api.client.util.Key
45+
private java.lang.String scalingMode;
46+
4047
/**
4148
* Optional. total min instances for the service. This number of instances is divided among all
4249
* revisions with specified traffic based on the percent of traffic they are receiving. (BETA)
@@ -56,6 +63,23 @@ public GoogleCloudRunV2ServiceScaling setMinInstanceCount(java.lang.Integer minI
5663
return this;
5764
}
5865

66+
/**
67+
* Optional. The scaling mode for the service.
68+
* @return value or {@code null} for none
69+
*/
70+
public java.lang.String getScalingMode() {
71+
return scalingMode;
72+
}
73+
74+
/**
75+
* Optional. The scaling mode for the service.
76+
* @param scalingMode scalingMode or {@code null} for none
77+
*/
78+
public GoogleCloudRunV2ServiceScaling setScalingMode(java.lang.String scalingMode) {
79+
this.scalingMode = scalingMode;
80+
return this;
81+
}
82+
5983
@Override
6084
public GoogleCloudRunV2ServiceScaling set(String fieldName, Object value) {
6185
return (GoogleCloudRunV2ServiceScaling) 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-rev20240831-2.0.0</version>
12-
<name>Cloud Run Admin API v2-rev20240831-2.0.0</name>
11+
<version>v2-rev20240916-2.0.0</version>
12+
<name>Cloud Run Admin API v2-rev20240916-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-rev20240831-2.0.0</version>
25+
<version>v2-rev20240916-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-rev20240831-2.0.0'
38+
implementation 'com.google.apis:google-api-services-run:v2-rev20240916-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)