Argo CD · Schema
v1alpha1OperationState
v1alpha1OperationState schema from Argo CD API
Continuous DeliveryContainersDeploymentGitOpsKubernetesCNCFOpen Source
Properties
| Name | Type | Description |
|---|---|---|
| finishedAt | object | |
| message | string | Message holds any pertinent messages when attempting to perform operation (typically errors). |
| operation | object | |
| phase | string | |
| retryCount | integer | |
| startedAt | object | |
| syncResult | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/argo-cd/refs/heads/main/json-schema/argo-cd-v1alpha1-operation-state-schema.json",
"title": "v1alpha1OperationState",
"description": "v1alpha1OperationState schema from Argo CD API",
"type": "object",
"properties": {
"finishedAt": {
"$ref": "#/definitions/v1Time"
},
"message": {
"description": "Message holds any pertinent messages when attempting to perform operation (typically errors).",
"type": "string"
},
"operation": {
"$ref": "#/definitions/v1alpha1Operation"
},
"phase": {
"type": "string",
"title": "Phase is the current phase of the operation"
},
"retryCount": {
"type": "integer",
"format": "int64",
"title": "RetryCount contains time of operation retries"
},
"startedAt": {
"$ref": "#/definitions/v1Time"
},
"syncResult": {
"$ref": "#/definitions/v1alpha1SyncOperationResult"
}
}
}