Skip to content

Commit 296f12d

Browse files
1 parent 581ccb3 commit 296f12d

File tree

4 files changed

+30
-6
lines changed

4 files changed

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

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

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,13 @@ public final class TaskSpec extends com.google.api.client.json.GenericJson {
5050
@com.google.api.client.util.Key
5151
private java.lang.Integer maxRetries;
5252

53+
/**
54+
* Optional. The Node Selector configuration. Map of selector key to a value which matches a node.
55+
* The value may be {@code null}.
56+
*/
57+
@com.google.api.client.util.Key
58+
private java.util.Map<String, java.lang.String> nodeSelector;
59+
5360
/**
5461
* Optional. Email address of the IAM service account associated with the task of a job execution.
5562
* The service account represents the identity of the running task, and determines what
@@ -112,6 +119,23 @@ public TaskSpec setMaxRetries(java.lang.Integer maxRetries) {
112119
return this;
113120
}
114121

122+
/**
123+
* Optional. The Node Selector configuration. Map of selector key to a value which matches a node.
124+
* @return value or {@code null} for none
125+
*/
126+
public java.util.Map<String, java.lang.String> getNodeSelector() {
127+
return nodeSelector;
128+
}
129+
130+
/**
131+
* Optional. The Node Selector configuration. Map of selector key to a value which matches a node.
132+
* @param nodeSelector nodeSelector or {@code null} for none
133+
*/
134+
public TaskSpec setNodeSelector(java.util.Map<String, java.lang.String> nodeSelector) {
135+
this.nodeSelector = nodeSelector;
136+
return this;
137+
}
138+
115139
/**
116140
* Optional. Email address of the IAM service account associated with the task of a job execution.
117141
* The service account represents the identity of the running task, and determines what

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

0 commit comments

Comments
 (0)