state property

String? state
getter/setter pair

Component's upgrade state.

Output only. Possible string values are:

  • "STATE_UNSPECIFIED" : The default value. This value should never be used.
  • "RUNNING" : Component's upgrade is in progress
  • "PAUSED" : The component's upgrade is paused. Will be resumed when upgrade job is resumed
  • "SUCCEEDED" : The component's upgrade is successfully completed
  • "FAILED" : The component's upgrade has failed. This will move to resume if upgrade is resumed or stay as is
  • "NOT_STARTED" : Component's upgrade has not started yet
  • "NOT_APPLICABLE" : Component's upgrade is not applicable in this upgrade. It will be skipped.

Implementation

core.String? state;