state property
The current state of the Extension Instance.
Output only. Possible string values are:
- "STATE_UNSPECIFIED" : The default state. Generally not used for long.
- "DEPLOYING" : The Extension Instance is waiting on an Operation to
complete. Could resolve to
ACTIVE
,PAUSED
,ERRORED
. - "UNINSTALLING" : The Extension Instance is being removed from the
project. Could resolve to
ERRORED
, but more likely the instance will soon cease to exist. - "ACTIVE" : The Extension Instance is installed and ready.
- "ERRORED" : The Extension Instance encountered an error while
DEPLOYING
orUNINSTALLING
. - "PAUSED" : The Extension's resources have been removed from the project, but the Config remains so the Instance can be restored.
Implementation
core.String? state;