Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(all): auto-regenerate discovery clients #2830

Merged
merged 1 commit into from
Oct 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions accesscontextmanager/v1/accesscontextmanager-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -1205,8 +1205,8 @@
"name"
],
"parameters": {
"appendScopedAccessSettings": {
"description": "Optional. This field will be used to control whether or not scoped access settings are appended to the existing list of scoped access settings. If true, the scoped access settings in the request will be appended to the existing list of scoped access settings. If false, the scoped access settings in the request replace the existing list of scoped access settings.",
"append": {
"description": "Optional. This field controls whether or not certain repeated settings in the update request overwrite or append to existing settings on the binding. If true, then append. Otherwise overwrite. So far, only scoped_access_settings supports appending. Global access_levels, dry_run_access_levels, and reauth_settings are not compatible with append functionality, and the request will return an error if append=true when these settings are in the update_mask. The request will also return an error if append=true when \"scoped_access_settings\" is not set in the update_mask.",
"location": "query",
"type": "boolean"
},
Expand Down Expand Up @@ -1295,7 +1295,7 @@
}
}
},
"revision": "20240923",
"revision": "20241014",
"rootUrl": "https://accesscontextmanager.googleapis.com/",
"schemas": {
"AccessContextManagerOperationMetadata": {
Expand Down
20 changes: 11 additions & 9 deletions accesscontextmanager/v1/accesscontextmanager-gen.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 10 additions & 3 deletions backupdr/v1/backupdr-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -555,6 +555,11 @@
"location": "query",
"type": "boolean"
},
"ignoreBackupPlanReferences": {
"description": "Optional. If set to true, backupvault deletion will proceed even if there are backup plans referencing the backupvault. The default is 'false'.",
"location": "query",
"type": "boolean"
},
"name": {
"description": "Required. Name of the resource.",
"location": "path",
Expand Down Expand Up @@ -1658,7 +1663,7 @@
}
}
},
"revision": "20241002",
"revision": "20241009",
"rootUrl": "https://backupdr.googleapis.com/",
"schemas": {
"AbandonBackupRequest": {
Expand Down Expand Up @@ -2462,14 +2467,16 @@
"CREATING",
"ACTIVE",
"DELETING",
"INACTIVE"
"INACTIVE",
"UPDATING"
],
"enumDescriptions": [
"State not set.",
"The resource is being created.",
"The resource has been created and is fully usable.",
"The resource is being deleted.",
"The resource has been created but is not usable."
"The resource has been created but is not usable.",
"The resource is being updated."
],
"readOnly": true,
"type": "string"
Expand Down
10 changes: 10 additions & 0 deletions backupdr/v1/backupdr-gen.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading