state property

String? state
getter/setter pair

The state of the build.

Output only. Possible string values are:

  • "STATE_UNSPECIFIED" : The build is in an unknown state.
  • "BUILDING" : The build is building.
  • "BUILT" : The build has completed and is awaiting the next step. This may move to DEPLOYING once App Hosting starts to set up infrastructure.
  • "DEPLOYING" : The infrastructure for this build is being set up.
  • "READY" : The infrastructure for this build is ready. The build may or may not be serving traffic - see Backend.traffic for the current state, or Backend.traffic_statuses for the desired state.
  • "FAILED" : The build has failed.

Implementation

core.String? state;