Skip to content

Commit ac443fe

Browse files
1 parent 1d12c58 commit ac443fe

File tree

11 files changed

+84
-51
lines changed

11 files changed

+84
-51
lines changed

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

clients/google-api-services-run/v1/2.0.0/com/google/api/services/run/v1/model/GoogleDevtoolsCloudbuildV1GitSourceRepository.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@
3030
public final class GoogleDevtoolsCloudbuildV1GitSourceRepository extends com.google.api.client.json.GenericJson {
3131

3232
/**
33-
* The Developer Connect Git repository link or the url that matches a repository link in the
34-
* current project, formatted as `projects/locations/connections/gitRepositoryLink`
33+
* The Developer Connect Git repository link formatted as
34+
* `projects/locations/connections/gitRepositoryLink`
3535
* The value may be {@code null}.
3636
*/
3737
@com.google.api.client.util.Key
@@ -45,17 +45,17 @@ public final class GoogleDevtoolsCloudbuildV1GitSourceRepository extends com.goo
4545
private java.lang.String url;
4646

4747
/**
48-
* The Developer Connect Git repository link or the url that matches a repository link in the
49-
* current project, formatted as `projects/locations/connections/gitRepositoryLink`
48+
* The Developer Connect Git repository link formatted as
49+
* `projects/locations/connections/gitRepositoryLink`
5050
* @return value or {@code null} for none
5151
*/
5252
public java.lang.String getDeveloperConnect() {
5353
return developerConnect;
5454
}
5555

5656
/**
57-
* The Developer Connect Git repository link or the url that matches a repository link in the
58-
* current project, formatted as `projects/locations/connections/gitRepositoryLink`
57+
* The Developer Connect Git repository link formatted as
58+
* `projects/locations/connections/gitRepositoryLink`
5959
* @param developerConnect developerConnect or {@code null} for none
6060
*/
6161
public GoogleDevtoolsCloudbuildV1GitSourceRepository setDeveloperConnect(java.lang.String developerConnect) {

clients/google-api-services-run/v1/2.0.0/com/google/api/services/run/v1/model/TaskAttemptResult.java

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ public final class TaskAttemptResult extends com.google.api.client.json.GenericJ
3232
/**
3333
* Optional. The exit code of this attempt. This may be unset if the container was unable to exit
3434
* cleanly with a code due to some other failure. See status field for possible failure details.
35+
* At most one of exit_code or term_signal will be set.
3536
* The value may be {@code null}.
3637
*/
3738
@com.google.api.client.util.Key
@@ -44,9 +45,18 @@ public final class TaskAttemptResult extends com.google.api.client.json.GenericJ
4445
@com.google.api.client.util.Key
4546
private GoogleRpcStatus status;
4647

48+
/**
49+
* Optional. Termination signal of the container. This is set to non-zero if the container is
50+
* terminated by the system. At most one of exit_code or term_signal will be set.
51+
* The value may be {@code null}.
52+
*/
53+
@com.google.api.client.util.Key
54+
private java.lang.Integer termSignal;
55+
4756
/**
4857
* Optional. The exit code of this attempt. This may be unset if the container was unable to exit
4958
* cleanly with a code due to some other failure. See status field for possible failure details.
59+
* At most one of exit_code or term_signal will be set.
5060
* @return value or {@code null} for none
5161
*/
5262
public java.lang.Integer getExitCode() {
@@ -56,6 +66,7 @@ public java.lang.Integer getExitCode() {
5666
/**
5767
* Optional. The exit code of this attempt. This may be unset if the container was unable to exit
5868
* cleanly with a code due to some other failure. See status field for possible failure details.
69+
* At most one of exit_code or term_signal will be set.
5970
* @param exitCode exitCode or {@code null} for none
6071
*/
6172
public TaskAttemptResult setExitCode(java.lang.Integer exitCode) {
@@ -80,6 +91,25 @@ public TaskAttemptResult setStatus(GoogleRpcStatus status) {
8091
return this;
8192
}
8293

94+
/**
95+
* Optional. Termination signal of the container. This is set to non-zero if the container is
96+
* terminated by the system. At most one of exit_code or term_signal will be set.
97+
* @return value or {@code null} for none
98+
*/
99+
public java.lang.Integer getTermSignal() {
100+
return termSignal;
101+
}
102+
103+
/**
104+
* Optional. Termination signal of the container. This is set to non-zero if the container is
105+
* terminated by the system. At most one of exit_code or term_signal will be set.
106+
* @param termSignal termSignal or {@code null} for none
107+
*/
108+
public TaskAttemptResult setTermSignal(java.lang.Integer termSignal) {
109+
this.termSignal = termSignal;
110+
return this;
111+
}
112+
83113
@Override
84114
public TaskAttemptResult set(String fieldName, Object value) {
85115
return (TaskAttemptResult) super.set(fieldName, value);

clients/google-api-services-run/v1/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>v1-rev20250509-2.0.0</version>
12-
<name>Cloud Run Admin API v1-rev20250509-2.0.0</name>
11+
<version>v1-rev20250606-2.0.0</version>
12+
<name>Cloud Run Admin API v1-rev20250606-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

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

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

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

Lines changed: 30 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ public final class GoogleCloudRunV2TaskAttemptResult extends com.google.api.clie
3232
/**
3333
* Output only. The exit code of this attempt. This may be unset if the container was unable to
3434
* exit cleanly with a code due to some other failure. See status field for possible failure
35-
* details.
35+
* details. At most one of exit_code or term_signal will be set.
3636
* The value may be {@code null}.
3737
*/
3838
@com.google.api.client.util.Key
@@ -45,10 +45,18 @@ public final class GoogleCloudRunV2TaskAttemptResult extends com.google.api.clie
4545
@com.google.api.client.util.Key
4646
private GoogleRpcStatus status;
4747

48+
/**
49+
* Output only. Termination signal of the container. This is set to non-zero if the container is
50+
* terminated by the system. At most one of exit_code or term_signal will be set.
51+
* The value may be {@code null}.
52+
*/
53+
@com.google.api.client.util.Key
54+
private java.lang.Integer termSignal;
55+
4856
/**
4957
* Output only. The exit code of this attempt. This may be unset if the container was unable to
5058
* exit cleanly with a code due to some other failure. See status field for possible failure
51-
* details.
59+
* details. At most one of exit_code or term_signal will be set.
5260
* @return value or {@code null} for none
5361
*/
5462
public java.lang.Integer getExitCode() {
@@ -58,7 +66,7 @@ public java.lang.Integer getExitCode() {
5866
/**
5967
* Output only. The exit code of this attempt. This may be unset if the container was unable to
6068
* exit cleanly with a code due to some other failure. See status field for possible failure
61-
* details.
69+
* details. At most one of exit_code or term_signal will be set.
6270
* @param exitCode exitCode or {@code null} for none
6371
*/
6472
public GoogleCloudRunV2TaskAttemptResult setExitCode(java.lang.Integer exitCode) {
@@ -83,6 +91,25 @@ public GoogleCloudRunV2TaskAttemptResult setStatus(GoogleRpcStatus status) {
8391
return this;
8492
}
8593

94+
/**
95+
* Output only. Termination signal of the container. This is set to non-zero if the container is
96+
* terminated by the system. At most one of exit_code or term_signal will be set.
97+
* @return value or {@code null} for none
98+
*/
99+
public java.lang.Integer getTermSignal() {
100+
return termSignal;
101+
}
102+
103+
/**
104+
* Output only. Termination signal of the container. This is set to non-zero if the container is
105+
* terminated by the system. At most one of exit_code or term_signal will be set.
106+
* @param termSignal termSignal or {@code null} for none
107+
*/
108+
public GoogleCloudRunV2TaskAttemptResult setTermSignal(java.lang.Integer termSignal) {
109+
this.termSignal = termSignal;
110+
return this;
111+
}
112+
86113
@Override
87114
public GoogleCloudRunV2TaskAttemptResult set(String fieldName, Object value) {
88115
return (GoogleCloudRunV2TaskAttemptResult) super.set(fieldName, value);

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

Lines changed: 0 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -124,13 +124,6 @@ public final class GoogleCloudRunV2WorkerPoolRevisionTemplate extends com.google
124124
@com.google.api.client.util.Key
125125
private GoogleCloudRunV2ServiceMesh serviceMesh;
126126

127-
/**
128-
* Optional. Enable session affinity.
129-
* The value may be {@code null}.
130-
*/
131-
@com.google.api.client.util.Key
132-
private java.lang.Boolean sessionAffinity;
133-
134127
/**
135128
* Optional. A list of Volumes to make available to containers.
136129
* The value may be {@code null}.
@@ -358,23 +351,6 @@ public GoogleCloudRunV2WorkerPoolRevisionTemplate setServiceMesh(GoogleCloudRunV
358351
return this;
359352
}
360353

361-
/**
362-
* Optional. Enable session affinity.
363-
* @return value or {@code null} for none
364-
*/
365-
public java.lang.Boolean getSessionAffinity() {
366-
return sessionAffinity;
367-
}
368-
369-
/**
370-
* Optional. Enable session affinity.
371-
* @param sessionAffinity sessionAffinity or {@code null} for none
372-
*/
373-
public GoogleCloudRunV2WorkerPoolRevisionTemplate setSessionAffinity(java.lang.Boolean sessionAffinity) {
374-
this.sessionAffinity = sessionAffinity;
375-
return this;
376-
}
377-
378354
/**
379355
* Optional. A list of Volumes to make available to containers.
380356
* @return value or {@code null} for none

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@
3030
public final class GoogleDevtoolsCloudbuildV1GitSourceRepository extends com.google.api.client.json.GenericJson {
3131

3232
/**
33-
* The Developer Connect Git repository link or the url that matches a repository link in the
34-
* current project, formatted as `projects/locations/connections/gitRepositoryLink`
33+
* The Developer Connect Git repository link formatted as
34+
* `projects/locations/connections/gitRepositoryLink`
3535
* The value may be {@code null}.
3636
*/
3737
@com.google.api.client.util.Key
@@ -45,17 +45,17 @@ public final class GoogleDevtoolsCloudbuildV1GitSourceRepository extends com.goo
4545
private java.lang.String url;
4646

4747
/**
48-
* The Developer Connect Git repository link or the url that matches a repository link in the
49-
* current project, formatted as `projects/locations/connections/gitRepositoryLink`
48+
* The Developer Connect Git repository link formatted as
49+
* `projects/locations/connections/gitRepositoryLink`
5050
* @return value or {@code null} for none
5151
*/
5252
public java.lang.String getDeveloperConnect() {
5353
return developerConnect;
5454
}
5555

5656
/**
57-
* The Developer Connect Git repository link or the url that matches a repository link in the
58-
* current project, formatted as `projects/locations/connections/gitRepositoryLink`
57+
* The Developer Connect Git repository link formatted as
58+
* `projects/locations/connections/gitRepositoryLink`
5959
* @param developerConnect developerConnect or {@code null} for none
6060
*/
6161
public GoogleDevtoolsCloudbuildV1GitSourceRepository setDeveloperConnect(java.lang.String developerConnect) {

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

1515
<inceptionYear>2011</inceptionYear>

0 commit comments

Comments
 (0)