state property

String? state
getter/setter pair

State of the condition. Possible string values are:

  • "STATE_UNSPECIFIED" : The default value. This value is used if the state is omitted.
  • "CONDITION_PENDING" : Transient state: Reconciliation has not started yet.
  • "CONDITION_RECONCILING" : Transient state: reconciliation is still in progress.
  • "CONDITION_FAILED" : Terminal state: Reconciliation did not succeed.
  • "CONDITION_SUCCEEDED" : Terminal state: Reconciliation completed successfully.

Implementation

core.String? state;