Skip to content

Commit 4015dbd

Browse files
1 parent 3be880e commit 4015dbd

File tree

5 files changed

+54
-6
lines changed

5 files changed

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

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

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -188,6 +188,13 @@ public final class GoogleCloudRunV2Task extends com.google.api.client.json.Gener
188188
@com.google.api.client.util.Key
189189
private java.lang.String name;
190190

191+
/**
192+
* Output only. The node selector for the task.
193+
* The value may be {@code null}.
194+
*/
195+
@com.google.api.client.util.Key
196+
private GoogleCloudRunV2NodeSelector nodeSelector;
197+
191198
/**
192199
* Output only. The generation of this Task. See comments in `Job.reconciling` for additional
193200
* information on reconciliation process in Cloud Run.
@@ -634,6 +641,23 @@ public GoogleCloudRunV2Task setName(java.lang.String name) {
634641
return this;
635642
}
636643

644+
/**
645+
* Output only. The node selector for the task.
646+
* @return value or {@code null} for none
647+
*/
648+
public GoogleCloudRunV2NodeSelector getNodeSelector() {
649+
return nodeSelector;
650+
}
651+
652+
/**
653+
* Output only. The node selector for the task.
654+
* @param nodeSelector nodeSelector or {@code null} for none
655+
*/
656+
public GoogleCloudRunV2Task setNodeSelector(GoogleCloudRunV2NodeSelector nodeSelector) {
657+
this.nodeSelector = nodeSelector;
658+
return this;
659+
}
660+
637661
/**
638662
* Output only. The generation of this Task. See comments in `Job.reconciling` for additional
639663
* information on reconciliation process in Cloud Run.

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

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,13 @@ public final class GoogleCloudRunV2TaskTemplate extends com.google.api.client.js
6464
@com.google.api.client.util.Key
6565
private java.lang.Integer maxRetries;
6666

67+
/**
68+
* Optional. The node selector for the task template.
69+
* The value may be {@code null}.
70+
*/
71+
@com.google.api.client.util.Key
72+
private GoogleCloudRunV2NodeSelector nodeSelector;
73+
6774
/**
6875
* Optional. Email address of the IAM service account associated with the Task of a Job. The
6976
* service account represents the identity of the running task, and determines what permissions
@@ -167,6 +174,23 @@ public GoogleCloudRunV2TaskTemplate setMaxRetries(java.lang.Integer maxRetries)
167174
return this;
168175
}
169176

177+
/**
178+
* Optional. The node selector for the task template.
179+
* @return value or {@code null} for none
180+
*/
181+
public GoogleCloudRunV2NodeSelector getNodeSelector() {
182+
return nodeSelector;
183+
}
184+
185+
/**
186+
* Optional. The node selector for the task template.
187+
* @param nodeSelector nodeSelector or {@code null} for none
188+
*/
189+
public GoogleCloudRunV2TaskTemplate setNodeSelector(GoogleCloudRunV2NodeSelector nodeSelector) {
190+
this.nodeSelector = nodeSelector;
191+
return this;
192+
}
193+
170194
/**
171195
* Optional. Email address of the IAM service account associated with the Task of a Job. The
172196
* service account represents the identity of the running task, and determines what permissions

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

0 commit comments

Comments
 (0)