File tree Expand file tree Collapse file tree 4 files changed +30
-6
lines changed
clients/google-api-services-run/v1
com/google/api/services/run/v1/model Expand file tree Collapse file tree 4 files changed +30
-6
lines changed Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
22
22
<dependency >
23
23
<groupId >com.google.apis</groupId >
24
24
<artifactId >google-api-services-run</artifactId >
25
- <version >v1-rev20250207 -2.0.0</version >
25
+ <version >v1-rev20250214 -2.0.0</version >
26
26
</dependency >
27
27
</dependencies >
28
28
</project >
@@ -35,7 +35,7 @@ repositories {
35
35
mavenCentral()
36
36
}
37
37
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'
39
39
}
40
40
```
41
41
Original file line number Diff line number Diff line change @@ -50,6 +50,13 @@ public final class TaskSpec extends com.google.api.client.json.GenericJson {
50
50
@ com .google .api .client .util .Key
51
51
private java .lang .Integer maxRetries ;
52
52
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
+
53
60
/**
54
61
* Optional. Email address of the IAM service account associated with the task of a job execution.
55
62
* The service account represents the identity of the running task, and determines what
@@ -112,6 +119,23 @@ public TaskSpec setMaxRetries(java.lang.Integer maxRetries) {
112
119
return this ;
113
120
}
114
121
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
+
115
139
/**
116
140
* Optional. Email address of the IAM service account associated with the task of a job execution.
117
141
* The service account represents the identity of the running task, and determines what
Original file line number Diff line number Diff line change 8
8
9
9
<groupId >com.google.apis</groupId >
10
10
<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 >
13
13
<packaging >jar</packaging >
14
14
15
15
<inceptionYear >2011</inceptionYear >
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
22
22
<dependency >
23
23
<groupId >com.google.apis</groupId >
24
24
<artifactId >google-api-services-run</artifactId >
25
- <version >v1-rev20250207 -2.0.0</version >
25
+ <version >v1-rev20250214 -2.0.0</version >
26
26
</dependency >
27
27
</dependencies >
28
28
</project >
@@ -35,7 +35,7 @@ repositories {
35
35
mavenCentral()
36
36
}
37
37
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'
39
39
}
40
40
```
41
41
You can’t perform that action at this time.
0 commit comments