Skip to content

Commit d6a35b4

Browse files
1 parent 3593f21 commit d6a35b4

File tree

7 files changed

+63
-42
lines changed

7 files changed

+63
-42
lines changed

clients/google-api-services-run/v2/2.0.0/README.md

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

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

+27
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,14 @@ public final class GoogleCloudRunV2BuildpacksBuild extends com.google.api.client
7070
@com.google.api.client.util.Key
7171
private java.lang.String functionTarget;
7272

73+
/**
74+
* Optional. project_descriptor stores the path to the project descriptor file. When empty, it
75+
* means that there is no project descriptor file in the source.
76+
* The value may be {@code null}.
77+
*/
78+
@com.google.api.client.util.Key
79+
private java.lang.String projectDescriptor;
80+
7381
/**
7482
* The runtime name, e.g. 'go113'. Leave blank for generic builds.
7583
* The value may be {@code null}.
@@ -174,6 +182,25 @@ public GoogleCloudRunV2BuildpacksBuild setFunctionTarget(java.lang.String functi
174182
return this;
175183
}
176184

185+
/**
186+
* Optional. project_descriptor stores the path to the project descriptor file. When empty, it
187+
* means that there is no project descriptor file in the source.
188+
* @return value or {@code null} for none
189+
*/
190+
public java.lang.String getProjectDescriptor() {
191+
return projectDescriptor;
192+
}
193+
194+
/**
195+
* Optional. project_descriptor stores the path to the project descriptor file. When empty, it
196+
* means that there is no project descriptor file in the source.
197+
* @param projectDescriptor projectDescriptor or {@code null} for none
198+
*/
199+
public GoogleCloudRunV2BuildpacksBuild setProjectDescriptor(java.lang.String projectDescriptor) {
200+
this.projectDescriptor = projectDescriptor;
201+
return this;
202+
}
203+
177204
/**
178205
* The runtime name, e.g. 'go113'. Leave blank for generic builds.
179206
* @return value or {@code null} for none

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

+6-6
Original file line numberDiff line numberDiff line change
@@ -107,8 +107,8 @@ public final class GoogleCloudRunV2RevisionTemplate extends com.google.api.clien
107107

108108
/**
109109
* Optional. Sets the maximum number of requests that each serving instance can receive. If not
110-
* specified or 0, defaults to 80 when requested `CPU >= 1` and defaults to 1 when requested `CPU
111-
* < 1`.
110+
* specified or 0, concurrency defaults to 80 when requested `CPU >= 1` and defaults to 1 when
111+
* requested `CPU < 1`.
112112
* The value may be {@code null}.
113113
*/
114114
@com.google.api.client.util.Key
@@ -348,8 +348,8 @@ public GoogleCloudRunV2RevisionTemplate setLabels(java.util.Map<String, java.lan
348348

349349
/**
350350
* Optional. Sets the maximum number of requests that each serving instance can receive. If not
351-
* specified or 0, defaults to 80 when requested `CPU >= 1` and defaults to 1 when requested `CPU
352-
* < 1`.
351+
* specified or 0, concurrency defaults to 80 when requested `CPU >= 1` and defaults to 1 when
352+
* requested `CPU < 1`.
353353
* @return value or {@code null} for none
354354
*/
355355
public java.lang.Integer getMaxInstanceRequestConcurrency() {
@@ -358,8 +358,8 @@ public java.lang.Integer getMaxInstanceRequestConcurrency() {
358358

359359
/**
360360
* Optional. Sets the maximum number of requests that each serving instance can receive. If not
361-
* specified or 0, defaults to 80 when requested `CPU >= 1` and defaults to 1 when requested `CPU
362-
* < 1`.
361+
* specified or 0, concurrency defaults to 80 when requested `CPU >= 1` and defaults to 1 when
362+
* requested `CPU < 1`.
363363
* @param maxInstanceRequestConcurrency maxInstanceRequestConcurrency or {@code null} for none
364364
*/
365365
public GoogleCloudRunV2RevisionTemplate setMaxInstanceRequestConcurrency(java.lang.Integer maxInstanceRequestConcurrency) {

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

+15-18
Original file line numberDiff line numberDiff line change
@@ -35,12 +35,11 @@ public final class GoogleCloudRunV2SecretVolumeSource extends com.google.api.cli
3535
* 0000 and 0777 (octal), defaulting to 0444. Directories within the path are not affected by this
3636
* setting. Notes * Internally, a umask of 0222 will be applied to any non-zero value. * This is
3737
* an integer representation of the mode bits. So, the octal integer value should look exactly as
38-
* the chmod numeric notation with a leading zero. Some examples: for chmod 777 (a=rwx), set to
39-
* 0777 (octal) or 511 (base-10). For chmod 640 (u=rw,g=r), set to 0640 (octal) or 416 (base-10).
40-
* For chmod 755 (u=rwx,g=rx,o=rx), set to 0755 (octal) or 493 (base-10). * This might be in
41-
* conflict with other options that affect the file mode, like fsGroup, and the result can be
42-
* other mode bits set. This might be in conflict with other options that affect the file mode,
43-
* like fsGroup, and as a result, other mode bits could be set.
38+
* the chmod numeric notation with a leading zero. Some examples: for chmod 640 (u=rw,g=r), set to
39+
* 0640 (octal) or 416 (base-10). For chmod 755 (u=rwx,g=rx,o=rx), set to 0755 (octal) or 493
40+
* (base-10). * This might be in conflict with other options that affect the file mode, like
41+
* fsGroup, and the result can be other mode bits set. This might be in conflict with other
42+
* options that affect the file mode, like fsGroup, and as a result, other mode bits could be set.
4443
* The value may be {@code null}.
4544
*/
4645
@com.google.api.client.util.Key
@@ -69,12 +68,11 @@ public final class GoogleCloudRunV2SecretVolumeSource extends com.google.api.cli
6968
* 0000 and 0777 (octal), defaulting to 0444. Directories within the path are not affected by this
7069
* setting. Notes * Internally, a umask of 0222 will be applied to any non-zero value. * This is
7170
* an integer representation of the mode bits. So, the octal integer value should look exactly as
72-
* the chmod numeric notation with a leading zero. Some examples: for chmod 777 (a=rwx), set to
73-
* 0777 (octal) or 511 (base-10). For chmod 640 (u=rw,g=r), set to 0640 (octal) or 416 (base-10).
74-
* For chmod 755 (u=rwx,g=rx,o=rx), set to 0755 (octal) or 493 (base-10). * This might be in
75-
* conflict with other options that affect the file mode, like fsGroup, and the result can be
76-
* other mode bits set. This might be in conflict with other options that affect the file mode,
77-
* like fsGroup, and as a result, other mode bits could be set.
71+
* the chmod numeric notation with a leading zero. Some examples: for chmod 640 (u=rw,g=r), set to
72+
* 0640 (octal) or 416 (base-10). For chmod 755 (u=rwx,g=rx,o=rx), set to 0755 (octal) or 493
73+
* (base-10). * This might be in conflict with other options that affect the file mode, like
74+
* fsGroup, and the result can be other mode bits set. This might be in conflict with other
75+
* options that affect the file mode, like fsGroup, and as a result, other mode bits could be set.
7876
* @return value or {@code null} for none
7977
*/
8078
public java.lang.Integer getDefaultMode() {
@@ -86,12 +84,11 @@ public java.lang.Integer getDefaultMode() {
8684
* 0000 and 0777 (octal), defaulting to 0444. Directories within the path are not affected by this
8785
* setting. Notes * Internally, a umask of 0222 will be applied to any non-zero value. * This is
8886
* an integer representation of the mode bits. So, the octal integer value should look exactly as
89-
* the chmod numeric notation with a leading zero. Some examples: for chmod 777 (a=rwx), set to
90-
* 0777 (octal) or 511 (base-10). For chmod 640 (u=rw,g=r), set to 0640 (octal) or 416 (base-10).
91-
* For chmod 755 (u=rwx,g=rx,o=rx), set to 0755 (octal) or 493 (base-10). * This might be in
92-
* conflict with other options that affect the file mode, like fsGroup, and the result can be
93-
* other mode bits set. This might be in conflict with other options that affect the file mode,
94-
* like fsGroup, and as a result, other mode bits could be set.
87+
* the chmod numeric notation with a leading zero. Some examples: for chmod 640 (u=rw,g=r), set to
88+
* 0640 (octal) or 416 (base-10). For chmod 755 (u=rwx,g=rx,o=rx), set to 0755 (octal) or 493
89+
* (base-10). * This might be in conflict with other options that affect the file mode, like
90+
* fsGroup, and the result can be other mode bits set. This might be in conflict with other
91+
* options that affect the file mode, like fsGroup, and as a result, other mode bits could be set.
9592
* @param defaultMode defaultMode or {@code null} for none
9693
*/
9794
public GoogleCloudRunV2SecretVolumeSource setDefaultMode(java.lang.Integer defaultMode) {

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

+9-12
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,9 @@ public final class GoogleCloudRunV2VersionToPath extends com.google.api.client.j
3535
* or not set, the Volume's default mode will be used. Notes * Internally, a umask of 0222 will be
3636
* applied to any non-zero value. * This is an integer representation of the mode bits. So, the
3737
* octal integer value should look exactly as the chmod numeric notation with a leading zero. Some
38-
* examples: for chmod 777 (a=rwx), set to 0777 (octal) or 511 (base-10). For chmod 640
39-
* (u=rw,g=r), set to 0640 (octal) or 416 (base-10). For chmod 755 (u=rwx,g=rx,o=rx), set to 0755
40-
* (octal) or 493 (base-10). * This might be in conflict with other options that affect the file
41-
* mode, like fsGroup, and the result can be other mode bits set.
38+
* examples: for chmod 640 (u=rw,g=r), set to 0640 (octal) or 416 (base-10). For chmod 755
39+
* (u=rwx,g=rx,o=rx), set to 0755 (octal) or 493 (base-10). * This might be in conflict with other
40+
* options that affect the file mode, like fsGroup, and the result can be other mode bits set.
4241
* The value may be {@code null}.
4342
*/
4443
@com.google.api.client.util.Key
@@ -64,10 +63,9 @@ public final class GoogleCloudRunV2VersionToPath extends com.google.api.client.j
6463
* or not set, the Volume's default mode will be used. Notes * Internally, a umask of 0222 will be
6564
* applied to any non-zero value. * This is an integer representation of the mode bits. So, the
6665
* octal integer value should look exactly as the chmod numeric notation with a leading zero. Some
67-
* examples: for chmod 777 (a=rwx), set to 0777 (octal) or 511 (base-10). For chmod 640
68-
* (u=rw,g=r), set to 0640 (octal) or 416 (base-10). For chmod 755 (u=rwx,g=rx,o=rx), set to 0755
69-
* (octal) or 493 (base-10). * This might be in conflict with other options that affect the file
70-
* mode, like fsGroup, and the result can be other mode bits set.
66+
* examples: for chmod 640 (u=rw,g=r), set to 0640 (octal) or 416 (base-10). For chmod 755
67+
* (u=rwx,g=rx,o=rx), set to 0755 (octal) or 493 (base-10). * This might be in conflict with other
68+
* options that affect the file mode, like fsGroup, and the result can be other mode bits set.
7169
* @return value or {@code null} for none
7270
*/
7371
public java.lang.Integer getMode() {
@@ -79,10 +77,9 @@ public java.lang.Integer getMode() {
7977
* or not set, the Volume's default mode will be used. Notes * Internally, a umask of 0222 will be
8078
* applied to any non-zero value. * This is an integer representation of the mode bits. So, the
8179
* octal integer value should look exactly as the chmod numeric notation with a leading zero. Some
82-
* examples: for chmod 777 (a=rwx), set to 0777 (octal) or 511 (base-10). For chmod 640
83-
* (u=rw,g=r), set to 0640 (octal) or 416 (base-10). For chmod 755 (u=rwx,g=rx,o=rx), set to 0755
84-
* (octal) or 493 (base-10). * This might be in conflict with other options that affect the file
85-
* mode, like fsGroup, and the result can be other mode bits set.
80+
* examples: for chmod 640 (u=rw,g=r), set to 0640 (octal) or 416 (base-10). For chmod 755
81+
* (u=rwx,g=rx,o=rx), set to 0755 (octal) or 493 (base-10). * This might be in conflict with other
82+
* options that affect the file mode, like fsGroup, and the result can be other mode bits set.
8683
* @param mode mode or {@code null} for none
8784
*/
8885
public GoogleCloudRunV2VersionToPath setMode(java.lang.Integer mode) {

clients/google-api-services-run/v2/2.0.0/pom.xml

+2-2
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-rev20241109-2.0.0</version>
12-
<name>Cloud Run Admin API v2-rev20241109-2.0.0</name>
11+
<version>v2-rev20241115-2.0.0</version>
12+
<name>Cloud Run Admin API v2-rev20241115-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-run/v2/README.md

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

0 commit comments

Comments
 (0)