Argo CD · Schema
v1alpha1SyncOperationResult
v1alpha1SyncOperationResult schema from Argo CD API
Continuous DeliveryContainersDeploymentGitOpsKubernetesCNCFOpen Source
Properties
| Name | Type | Description |
|---|---|---|
| managedNamespaceMetadata | object | |
| resources | array | |
| revision | string | |
| revisions | array | |
| source | object | |
| sources | array |
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-sync-operation-result-schema.json",
"title": "v1alpha1SyncOperationResult",
"description": "v1alpha1SyncOperationResult schema from Argo CD API",
"type": "object",
"properties": {
"managedNamespaceMetadata": {
"$ref": "#/definitions/v1alpha1ManagedNamespaceMetadata"
},
"resources": {
"type": "array",
"title": "Resources contains a list of sync result items for each individual resource in a sync operation",
"items": {
"$ref": "#/definitions/v1alpha1ResourceResult"
}
},
"revision": {
"type": "string",
"title": "Revision holds the revision this sync operation was performed to"
},
"revisions": {
"type": "array",
"title": "Revisions holds the revision this sync operation was performed for respective indexed source in sources field",
"items": {
"type": "string"
}
},
"source": {
"$ref": "#/definitions/v1alpha1ApplicationSource"
},
"sources": {
"type": "array",
"title": "Source records the application source information of the sync, used for comparing auto-sync",
"items": {
"$ref": "#/definitions/v1alpha1ApplicationSource"
}
}
}
}