state property

String? state
getter/setter pair

The current state of the plugin action in the plugin instance.

Output only. Possible string values are:

  • "STATE_UNSPECIFIED" : Default unspecified state.
  • "ENABLED" : The action is enabled in the plugin instance i.e., executions can be triggered for this action.
  • "DISABLED" : The action is disabled in the plugin instance i.e., no executions can be triggered for this action. This state indicates that the user explicitly disabled the instance, and no further action is needed unless the user wants to re-enable it.
  • "ENABLING" : The action in the plugin instance is being enabled.
  • "DISABLING" : The action in the plugin instance is being disabled.
  • "ERROR" : The ERROR state can come while enabling/disabling plugin instance action. Users can retrigger enable, disable via EnablePluginInstanceAction and DisablePluginInstanceAction to restore the action back to enabled/disabled state. Note enable/disable on actions can only be triggered if plugin instance is in Active state.

Implementation

core.String? state;