Skip to content

Commit

Permalink
fix(gkebackup): update the API
Browse files Browse the repository at this point in the history
#### gkebackup:v1

The following keys were changed:
- schemas.GroupKind.properties.resourceKind.description
- schemas.Restore.description
  • Loading branch information
yoshi-automation authored and sofisl committed Oct 19, 2023
1 parent 7edbc0d commit 6bc61e1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions discovery/gkebackup-v1.json
Original file line number Diff line number Diff line change
Expand Up @@ -1688,7 +1688,7 @@
}
}
},
"revision": "20230927",
"revision": "20231011",
"rootUrl": "https://gkebackup.googleapis.com/",
"schemas": {
"AuditConfig": {
Expand Down Expand Up @@ -2259,7 +2259,7 @@
"type": "string"
},
"resourceKind": {
"description": "Optional. Kind of a Kubernetes resource, e.g. \"CustomResourceDefinition\", \"StorageClass\", etc.",
"description": "Optional. Kind of a Kubernetes resource, must be in UpperCamelCase (PascalCase) and singular form. E.g. \"CustomResourceDefinition\", \"StorageClass\", etc.",
"type": "string"
}
},
Expand Down Expand Up @@ -2590,7 +2590,7 @@
"type": "object"
},
"Restore": {
"description": "Represents both a request to Restore some portion of a Backup into a target GKE cluster and a record of the restore operation itself. Next id: 18",
"description": "Represents both a request to Restore some portion of a Backup into a target GKE cluster and a record of the restore operation itself. Next id: 19",
"id": "Restore",
"properties": {
"backup": {
Expand Down
4 changes: 2 additions & 2 deletions src/apis/gkebackup/v1.ts
Original file line number Diff line number Diff line change
Expand Up @@ -522,7 +522,7 @@ export namespace gkebackup_v1 {
*/
resourceGroup?: string | null;
/**
* Optional. Kind of a Kubernetes resource, e.g. "CustomResourceDefinition", "StorageClass", etc.
* Optional. Kind of a Kubernetes resource, must be in UpperCamelCase (PascalCase) and singular form. E.g. "CustomResourceDefinition", "StorageClass", etc.
*/
resourceKind?: string | null;
}
Expand Down Expand Up @@ -757,7 +757,7 @@ export namespace gkebackup_v1 {
namespaces?: string[] | null;
}
/**
* Represents both a request to Restore some portion of a Backup into a target GKE cluster and a record of the restore operation itself. Next id: 18
* Represents both a request to Restore some portion of a Backup into a target GKE cluster and a record of the restore operation itself. Next id: 19
*/
export interface Schema$Restore {
/**
Expand Down

0 comments on commit 6bc61e1

Please sign in to comment.