Skip to content

Commit 2b46b75

Browse files
Google APIscopybara-github
authored andcommitted
feat: A new value CANCELLATION_IN_PROGRESS is added to enum State
feat: A new value `CANCELLED` is added to enum `State` PiperOrigin-RevId: 673051518
1 parent 43a4ddc commit 2b46b75

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

google/cloud/batch/v1alpha/job.proto

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -235,6 +235,14 @@ message JobStatus {
235235
// The Job will be deleted, but has not been deleted yet. Typically this is
236236
// because resources used by the Job are still being cleaned up.
237237
DELETION_IN_PROGRESS = 6;
238+
239+
// The Job cancellation is in progress, this is because the resources used
240+
// by the Job are still being cleaned up.
241+
CANCELLATION_IN_PROGRESS = 7;
242+
243+
// The Job has been cancelled, the task executions were stopped and the
244+
// resources were cleaned up.
245+
CANCELLED = 8;
238246
}
239247

240248
// Job state

0 commit comments

Comments
 (0)