Skip to content

Commit cd1110c

Browse files
1 parent 33cc57d commit cd1110c

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

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

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,14 @@ public final class GoogleCloudRunV2Container extends com.google.api.client.json.
114114
@com.google.api.client.util.Key
115115
private GoogleCloudRunV2ResourceRequirements resources;
116116

117+
/**
118+
* Optional. Location of the source .tar.gz file in Cloud Storage. examples: -
119+
* gs://bucket/object.tar.gz. - gs://bucket/object.tar.gz#1234567890 (with object generation)
120+
* The value may be {@code null}.
121+
*/
122+
@com.google.api.client.util.Key
123+
private java.lang.String source;
124+
117125
/**
118126
* Startup probe of application within the container. All other probes are disabled if a startup
119127
* probe is provided, until it succeeds. Container will not be added to service endpoints if the
@@ -337,6 +345,25 @@ public GoogleCloudRunV2Container setResources(GoogleCloudRunV2ResourceRequiremen
337345
return this;
338346
}
339347

348+
/**
349+
* Optional. Location of the source .tar.gz file in Cloud Storage. examples: -
350+
* gs://bucket/object.tar.gz. - gs://bucket/object.tar.gz#1234567890 (with object generation)
351+
* @return value or {@code null} for none
352+
*/
353+
public java.lang.String getSource() {
354+
return source;
355+
}
356+
357+
/**
358+
* Optional. Location of the source .tar.gz file in Cloud Storage. examples: -
359+
* gs://bucket/object.tar.gz. - gs://bucket/object.tar.gz#1234567890 (with object generation)
360+
* @param source source or {@code null} for none
361+
*/
362+
public GoogleCloudRunV2Container setSource(java.lang.String source) {
363+
this.source = source;
364+
return this;
365+
}
366+
340367
/**
341368
* Startup probe of application within the container. All other probes are disabled if a startup
342369
* probe is provided, until it succeeds. Container will not be added to service endpoints if the

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

0 commit comments

Comments
 (0)