Skip to content

Commit

Permalink
feat(privateca): update the API
Browse files Browse the repository at this point in the history
#### privateca:v1beta1

The following keys were added:
- schemas.ReconciliationOperationMetadata.properties.exclusiveAction.enum
- schemas.ReconciliationOperationMetadata.properties.exclusiveAction.enumDescriptions
- schemas.ReconciliationOperationMetadata.properties.exclusiveAction.type

The following keys were changed:
- schemas.ReconciliationOperationMetadata.properties.deleteResource.description
  • Loading branch information
yoshi-automation authored and sofisl committed May 21, 2021
1 parent 25cd0d6 commit 805a519
Show file tree
Hide file tree
Showing 2 changed files with 309 additions and 276 deletions.
17 changes: 15 additions & 2 deletions discovery/privateca-v1beta1.json
Expand Up @@ -1254,7 +1254,7 @@
}
}
},
"revision": "20210426",
"revision": "20210506",
"rootUrl": "https://privateca.googleapis.com/",
"schemas": {
"AccessUrls": {
Expand Down Expand Up @@ -2390,8 +2390,21 @@
"id": "ReconciliationOperationMetadata",
"properties": {
"deleteResource": {
"description": "If set to TRUE, the resource has to be deleted. When using this bit, the CLH should fail the operation.",
"description": "DEPRECATED. Use exclusive_action instead.",
"type": "boolean"
},
"exclusiveAction": {
"enum": [
"UNKNOWN_REPAIR_ACTION",
"DELETE",
"RETRY"
],
"enumDescriptions": [
"",
"The resource has to be deleted. When using this bit, the CLH should fail the operation.",
"This resource could not be repaired but the repair should be tried again at a later time. This can happen if there is a dependency that needs to be resolved first- e.g. if a parent resource must be repaired before a child resource."
],
"type": "string"
}
},
"type": "object"
Expand Down

0 comments on commit 805a519

Please sign in to comment.