state property

String? state
getter/setter pair

Current state of the deployment.

Output only. Possible string values are:

  • "STATE_UNSPECIFIED" : The default value. This value is used if the state is omitted.
  • "CREATING" : The deployment is being created.
  • "ACTIVE" : The deployment is healthy.
  • "UPDATING" : The deployment is being updated.
  • "DELETING" : The deployment is being deleted.
  • "FAILED" : The deployment has encountered an unexpected error.
  • "SUSPENDED" : The deployment is no longer being actively reconciled. This may be the result of recovering the project after deletion.
  • "DELETED" : The deployment has been deleted.

Implementation

core.String? state;