state property

String? state
getter/setter pair

The current state of the PatchJob. Possible string values are:

  • "STATE_UNSPECIFIED" : State must be specified.
  • "STARTED" : The patch job was successfully initiated.
  • "INSTANCE_LOOKUP" : The patch job is looking up instances to run the patch on.
  • "PATCHING" : Instances are being patched.
  • "SUCCEEDED" : Patch job completed successfully.
  • "COMPLETED_WITH_ERRORS" : Patch job completed but there were errors.
  • "CANCELED" : The patch job was canceled.
  • "TIMED_OUT" : The patch job timed out.

Implementation

core.String? state;