status property

String? status
getter/setter pair

The status of this rollout.

Readonly. In case of a failed rollout, the system will automatically rollback to the current Rollout version. Readonly. Possible string values are:

  • "ROLLOUT_STATUS_UNSPECIFIED" : No status specified.
  • "IN_PROGRESS" : The Rollout is in progress.
  • "SUCCESS" : The Rollout has completed successfully.
  • "CANCELLED" : The Rollout has been cancelled. This can happen if you have overlapping Rollout pushes, and the previous ones will be cancelled.
  • "FAILED" : The Rollout has failed and the rollback attempt has failed too.
  • "PENDING" : The Rollout has not started yet and is pending for execution.
  • "FAILED_ROLLED_BACK" : The Rollout has failed and rolled back to the previous successful Rollout.

Implementation

core.String? status;