@@ -574,6 +574,9 @@ def create_project_location_backup_vault(parent, backup_vault_object = nil, back
574574 # @param [Boolean] force
575575 # Optional. If set to true, any data source from this backup vault will also be
576576 # deleted.
577+ # @param [Boolean] ignore_backup_plan_references
578+ # Optional. If set to true, backupvault deletion will proceed even if there are
579+ # backup plans referencing the backupvault. The default is 'false'.
577580 # @param [String] request_id
578581 # Optional. An optional request ID to identify requests. Specify a unique
579582 # request ID so that if you must retry your request, the server will know to
@@ -605,14 +608,15 @@ def create_project_location_backup_vault(parent, backup_vault_object = nil, back
605608 # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
606609 # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
607610 # @raise [Google::Apis::AuthorizationError] Authorization is required
608- 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 )
611+ 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 )
609612 command = make_simple_command ( :delete , 'v1/{+name}' , options )
610613 command . response_representation = Google ::Apis ::BackupdrV1 ::Operation ::Representation
611614 command . response_class = Google ::Apis ::BackupdrV1 ::Operation
612615 command . params [ 'name' ] = name unless name . nil?
613616 command . query [ 'allowMissing' ] = allow_missing unless allow_missing . nil?
614617 command . query [ 'etag' ] = etag unless etag . nil?
615618 command . query [ 'force' ] = force unless force . nil?
619+ command . query [ 'ignoreBackupPlanReferences' ] = ignore_backup_plan_references unless ignore_backup_plan_references . nil?
616620 command . query [ 'requestId' ] = request_id unless request_id . nil?
617621 command . query [ 'validateOnly' ] = validate_only unless validate_only . nil?
618622 command . query [ 'fields' ] = fields unless fields . nil?
0 commit comments