state property

String? state
getter/setter pair

Current lifecycle state of the resource (e.g. if it's being created or ready to use).

Optional. Output only. Possible string values are:

  • "UNIT_STATE_UNSPECIFIED" : Unspecified state.
  • "UNIT_STATE_NOT_PROVISIONED" : Unit is not provisioned.
  • "UNIT_STATE_PROVISIONING" : Unit is being provisioned.
  • "UNIT_STATE_UPDATING" : Unit is being updated. This is typically when a unit is being upgraded to a new release or some of the input variables on the Unit is being changed. Certain kinds of updates may cause the Unit to become unusable while the update is in progress.
  • "UNIT_STATE_DEPROVISIONING" : Unit is being deleted.
  • "UNIT_STATE_READY" : Unit has been provisioned and is ready for use
  • "UNIT_STATE_ERROR" : Unit has error, when it is not ready and some error operation

Implementation

core.String? state;