Skip to content

Commit

Permalink
feat: [batch] A new value CANCELLATION_IN_PROGRESS is added to enum…
Browse files Browse the repository at this point in the history
… `State` (#5670)

* 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

Source-Link: googleapis/googleapis@2b46b75

Source-Link: googleapis/googleapis-gen@4083dff
Copy-Tag: eyJwIjoicGFja2FnZXMvZ29vZ2xlLWNsb3VkLWJhdGNoLy5Pd2xCb3QueWFtbCIsImgiOiI0MDgzZGZmNWJkNGYwYzAxMzZhY2E5ZjIyNmFlODlmNThhNjY5MDY5In0=

* 🦉 Updates from OwlBot post-processor

See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md

---------

Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
  • Loading branch information
gcf-owl-bot[bot] and gcf-owl-bot[bot] authored Sep 12, 2024
1 parent a53df0d commit ce99894
Show file tree
Hide file tree
Showing 4 changed files with 38 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -235,6 +235,14 @@ message JobStatus {
// The Job will be deleted, but has not been deleted yet. Typically this is
// because resources used by the Job are still being cleaned up.
DELETION_IN_PROGRESS = 6;

// The Job cancellation is in progress, this is because the resources used
// by the Job are still being cleaned up.
CANCELLATION_IN_PROGRESS = 7;

// The Job has been cancelled, the task executions were stopped and the
// resources were cleaned up.
CANCELLED = 8;
}

// Job state
Expand Down
4 changes: 3 additions & 1 deletion packages/google-cloud-batch/protos/protos.d.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

24 changes: 24 additions & 0 deletions packages/google-cloud-batch/protos/protos.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion packages/google-cloud-batch/protos/protos.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit ce99894

Please sign in to comment.