Skip to content

Commit

Permalink
fix: decouple pod identity provisioning error from cloud error
Browse files Browse the repository at this point in the history
  • Loading branch information
bcho committed Jun 30, 2021
1 parent 0299f51 commit 4deb6c6
Showing 1 changed file with 34 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3851,6 +3851,40 @@
],
"description": "Details about the pod identity assigned to the Managed Cluster."
},
"ManagedClusterPodIdentityProvisioningError": {
"properties": {
"error": {
"$ref": "#/definitions/ManagedClusterPodIdentityProvisioningErrorBody",
"description": "Details about the error."
}
},
"description": "An error response from the pod identity provisioning."
},
"ManagedClusterPodIdentityProvisioningErrorBody": {
"x-ms-external": true,
"properties": {
"code": {
"type": "string",
"description": "An identifier for the error. Codes are invariant and are intended to be consumed programmatically."
},
"message": {
"type": "string",
"description": "A message describing the error, intended to be suitable for display in a user interface."
},
"target": {
"type": "string",
"description": "The target of the particular error. For example, the name of the property in error."
},
"details": {
"type": "array",
"items": {
"$ref": "#/definitions/ManagedClusterPodIdentityProvisioningErrorBody"
},
"description": "A list of additional details about the error."
}
},
"description": "An error response from the pod identity provisioning."
},
"ManagedClusterPodIdentityException": {
"properties": {
"name": {
Expand Down

0 comments on commit 4deb6c6

Please sign in to comment.