state property

String? state
getter/setter pair

The state of the object associated with this lifecycle.

Output only. Possible string values are:

  • "STATE_UNSPECIFIED" : Unknown State.
  • "UNPUBLISHED_DRAFT" : The initial state of an object. Once published, the object can never return to this state. Once an object is published, certain kinds of changes are no longer permitted.
  • "PUBLISHED" : The object has been published. The object might have unpublished draft changes as indicated by has_unpublished_changes.
  • "DISABLED" : The object has been published and has since been disabled. The object might have unpublished draft changes as indicated by has_unpublished_changes.
  • "DELETED" : The object has been deleted.

Implementation

core.String? state;