state property

String? state
getter/setter pair

State of the project. Possible string values are:

  • "PROJECT_STATE_UNSPECIFIED" : Default status, required by protobuf best practices.
  • "PROJECT_STATE_PENDING" : The project is in the middle of a provision process.
  • "PROJECT_STATE_COMPLETED" : All dependencies have been provisioned.
  • "PROJECT_STATE_FAILED" : A provision process was previously initiated, but failed.
  • "PROJECT_STATE_DELETING" : The project is in the middle of a deletion process.
  • "PROJECT_STATE_DELETING_FAILED" : A deleting process was initiated, but failed.
  • "PROJECT_STATE_DELETED" : The project is deleted.
  • "PROJECT_STATE_NOT_FOUND" : The project is not found.

Implementation

core.String? state;