state property

String? state
getter/setter pair

The state of this Artifact.

This is a property of the Artifact, and does not imply or capture any ongoing process. This property is managed by clients (such as Vertex AI Pipelines), and the system does not prescribe or check the validity of state transitions. Possible string values are:

  • "STATE_UNSPECIFIED" : Unspecified state for the Artifact.
  • "PENDING" : A state used by systems like Vertex AI Pipelines to indicate that the underlying data item represented by this Artifact is being created.
  • "LIVE" : A state indicating that the Artifact should exist, unless something external to the system deletes it.

Implementation

core.String? state;