Skip to content

Commit

Permalink
feat: Automated regeneration of backupdr v1 client
Browse files Browse the repository at this point in the history
  • Loading branch information
yoshi-automation committed Oct 20, 2024
1 parent aa9a74f commit a4a7feb
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 5 deletions.
1 change: 1 addition & 0 deletions api_names_out.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42085,6 +42085,7 @@
"/backupdr:v1/backupdr.projects.locations.backupVaults.delete/allowMissing": allow_missing
"/backupdr:v1/backupdr.projects.locations.backupVaults.delete/etag": etag
"/backupdr:v1/backupdr.projects.locations.backupVaults.delete/force": force
"/backupdr:v1/backupdr.projects.locations.backupVaults.delete/ignoreBackupPlanReferences": ignore_backup_plan_references
"/backupdr:v1/backupdr.projects.locations.backupVaults.delete/name": name
"/backupdr:v1/backupdr.projects.locations.backupVaults.delete/requestId": request_id
"/backupdr:v1/backupdr.projects.locations.backupVaults.delete/validateOnly": validate_only
Expand Down
4 changes: 4 additions & 0 deletions generated/google-apis-backupdr_v1/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Release history for google-apis-backupdr_v1

### v0.20.0 (2024-10-20)

* Regenerated from discovery document revision 20241009

### v0.19.0 (2024-10-06)

* Regenerated from discovery document revision 20240920
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -979,8 +979,7 @@ class BackupPlanAssociation
# @return [String]
attr_accessor :resource

# Output only. Output Only. Resource type of workload on which backupplan is
# applied
# Optional. Resource type of workload on which backupplan is applied
# Corresponds to the JSON property `resourceType`
# @return [String]
attr_accessor :resource_type
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ module Google
module Apis
module BackupdrV1
# Version of the google-apis-backupdr_v1 gem
GEM_VERSION = "0.19.0"
GEM_VERSION = "0.20.0"

# Version of the code generator used to generate this client
GENERATOR_VERSION = "0.15.1"

# Revision of the discovery document this client was generated from
REVISION = "20240920"
REVISION = "20241009"
end
end
end
Original file line number Diff line number Diff line change
Expand Up @@ -574,6 +574,9 @@ def create_project_location_backup_vault(parent, backup_vault_object = nil, back
# @param [Boolean] force
# Optional. If set to true, any data source from this backup vault will also be
# deleted.
# @param [Boolean] ignore_backup_plan_references
# Optional. If set to true, backupvault deletion will proceed even if there are
# backup plans referencing the backupvault. The default is 'false'.
# @param [String] request_id
# Optional. An optional request ID to identify requests. Specify a unique
# request ID so that if you must retry your request, the server will know to
Expand Down Expand Up @@ -605,14 +608,15 @@ def create_project_location_backup_vault(parent, backup_vault_object = nil, back
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
# @raise [Google::Apis::AuthorizationError] Authorization is required
def delete_project_location_backup_vault(name, allow_missing: nil, etag: nil, force: nil, request_id: nil, validate_only: nil, fields: nil, quota_user: nil, options: nil, &block)
def delete_project_location_backup_vault(name, allow_missing: nil, etag: nil, force: nil, ignore_backup_plan_references: nil, request_id: nil, validate_only: nil, fields: nil, quota_user: nil, options: nil, &block)
command = make_simple_command(:delete, 'v1/{+name}', options)
command.response_representation = Google::Apis::BackupdrV1::Operation::Representation
command.response_class = Google::Apis::BackupdrV1::Operation
command.params['name'] = name unless name.nil?
command.query['allowMissing'] = allow_missing unless allow_missing.nil?
command.query['etag'] = etag unless etag.nil?
command.query['force'] = force unless force.nil?
command.query['ignoreBackupPlanReferences'] = ignore_backup_plan_references unless ignore_backup_plan_references.nil?
command.query['requestId'] = request_id unless request_id.nil?
command.query['validateOnly'] = validate_only unless validate_only.nil?
command.query['fields'] = fields unless fields.nil?
Expand Down

0 comments on commit a4a7feb

Please sign in to comment.