state property

String? state
getter/setter pair

The state of a version.

Output only. Possible string values are:

  • "UNKNOWN" : The version state is unspecified.
  • "READY" : The version is ready for prediction.
  • "CREATING" : The version is being created. New UpdateVersion and DeleteVersion requests will fail if a version is in the CREATING state.
  • "FAILED" : The version failed to be created, possibly cancelled. error_message should contain the details of the failure.
  • "DELETING" : The version is being deleted. New UpdateVersion and DeleteVersion requests will fail if a version is in the DELETING state.
  • "UPDATING" : The version is being updated. New UpdateVersion and DeleteVersion requests will fail if a version is in the UPDATING state.

Implementation

core.String? state;