state property

String? state
getter/setter pair

The state of the rollout.

Output only. Possible string values are:

  • "STATE_UNSPECIFIED" : The rollout is in an unknown state.
  • "QUEUED" : The rollout is waiting for actuation to begin. This may be because it is waiting on another rollout to complete.
  • "PENDING_BUILD" : The rollout is waiting for the build process to complete, which builds the code and sets up the underlying infrastructure.
  • "PROGRESSING" : The rollout has started and is actively modifying traffic.
  • "PAUSED" : The rollout has been paused due to either being manually paused or a PAUSED stage. This should be set while paused = true.
  • "SUCCEEDED" : The rollout has completed.
  • "FAILED" : The rollout has failed. See error for more information.
  • "CANCELLED" : The rollout has been cancelled.

Implementation

core.String? state;