File tree Expand file tree Collapse file tree 2 files changed +19
-0
lines changed Expand file tree Collapse file tree 2 files changed +19
-0
lines changed Original file line number Diff line number Diff line change @@ -257,6 +257,13 @@ message Task {
257
257
// Output only. The node selector for the task.
258
258
NodeSelector node_selector = 36 [(google.api.field_behavior ) = OUTPUT_ONLY ];
259
259
260
+ // Optional. Output only. True if GPU zonal redundancy is disabled on this
261
+ // task.
262
+ optional bool gpu_zonal_redundancy_disabled = 37 [
263
+ (google.api.field_behavior ) = OPTIONAL ,
264
+ (google.api.field_behavior ) = OUTPUT_ONLY
265
+ ];
266
+
260
267
// Output only. A system-generated fingerprint for this version of the
261
268
// resource. May be used to detect modification conflict during updates.
262
269
string etag = 99 [(google.api.field_behavior ) = OUTPUT_ONLY ];
@@ -272,5 +279,13 @@ message TaskAttemptResult {
272
279
// This may be unset if the container was unable to exit cleanly with a code
273
280
// due to some other failure.
274
281
// See status field for possible failure details.
282
+ //
283
+ // At most one of exit_code or term_signal will be set.
275
284
int32 exit_code = 2 [(google.api.field_behavior ) = OUTPUT_ONLY ];
285
+
286
+ // Output only. Termination signal of the container. This is set to non-zero
287
+ // if the container is terminated by the system.
288
+ //
289
+ // At most one of exit_code or term_signal will be set.
290
+ int32 term_signal = 3 [(google.api.field_behavior ) = OUTPUT_ONLY ];
276
291
}
Original file line number Diff line number Diff line change @@ -73,4 +73,8 @@ message TaskTemplate {
73
73
74
74
// Optional. The node selector for the task template.
75
75
NodeSelector node_selector = 11 [(google.api.field_behavior ) = OPTIONAL ];
76
+
77
+ // Optional. True if GPU zonal redundancy is disabled on this task template.
78
+ optional bool gpu_zonal_redundancy_disabled = 12
79
+ [(google.api.field_behavior ) = OPTIONAL ];
76
80
}
You can’t perform that action at this time.
0 commit comments