Skip to content

Commit 7c26202

Browse files
feat: Automated regeneration of datafusion v1 client (googleapis#23436)
Auto-created at 2025-06-15 10:25:53 +0000 using the toys pull request generator.
1 parent 448ee67 commit 7c26202

File tree

4 files changed

+14
-4
lines changed

4 files changed

+14
-4
lines changed

api_names_out.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -145392,6 +145392,7 @@
145392145392
"/datafusion:v1/datafusion.projects.locations.instances.create/instanceId": instance_id
145393145393
"/datafusion:v1/datafusion.projects.locations.instances.create/parent": parent
145394145394
"/datafusion:v1/datafusion.projects.locations.instances.delete": delete_project_location_instance
145395+
"/datafusion:v1/datafusion.projects.locations.instances.delete/force": force
145395145396
"/datafusion:v1/datafusion.projects.locations.instances.delete/name": name
145396145397
"/datafusion:v1/datafusion.projects.locations.instances.dnsPeerings.create": create_project_location_instance_dns_peering
145397145398
"/datafusion:v1/datafusion.projects.locations.instances.dnsPeerings.create/dnsPeeringId": dns_peering_id

generated/google-apis-datafusion_v1/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Release history for google-apis-datafusion_v1
22

3+
### v0.38.0 (2025-06-15)
4+
5+
* Regenerated from discovery document revision 20250610
6+
* Regenerated using generator version 0.18.0
7+
38
### v0.37.0 (2025-05-04)
49

510
* Regenerated using generator version 0.17.0

generated/google-apis-datafusion_v1/lib/google/apis/datafusion_v1/gem_version.rb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ module Google
1616
module Apis
1717
module DatafusionV1
1818
# Version of the google-apis-datafusion_v1 gem
19-
GEM_VERSION = "0.37.0"
19+
GEM_VERSION = "0.38.0"
2020

2121
# Version of the code generator used to generate this client
22-
GENERATOR_VERSION = "0.17.0"
22+
GENERATOR_VERSION = "0.18.0"
2323

2424
# Revision of the discovery document this client was generated from
25-
REVISION = "20250414"
25+
REVISION = "20250610"
2626
end
2727
end
2828
end

generated/google-apis-datafusion_v1/lib/google/apis/datafusion_v1/service.rb

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,6 +177,9 @@ def create_project_location_instance(parent, instance_object = nil, instance_id:
177177
# @param [String] name
178178
# Required. The instance resource name in the format projects/`project`/
179179
# locations/`location`/instances/`instance`
180+
# @param [Boolean] force
181+
# Optional. If set to true, any nested resources from this instance will also be
182+
# deleted.
180183
# @param [String] fields
181184
# Selector specifying which fields to include in a partial response.
182185
# @param [String] quota_user
@@ -194,11 +197,12 @@ def create_project_location_instance(parent, instance_object = nil, instance_id:
194197
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
195198
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
196199
# @raise [Google::Apis::AuthorizationError] Authorization is required
197-
def delete_project_location_instance(name, fields: nil, quota_user: nil, options: nil, &block)
200+
def delete_project_location_instance(name, force: nil, fields: nil, quota_user: nil, options: nil, &block)
198201
command = make_simple_command(:delete, 'v1/{+name}', options)
199202
command.response_representation = Google::Apis::DatafusionV1::Operation::Representation
200203
command.response_class = Google::Apis::DatafusionV1::Operation
201204
command.params['name'] = name unless name.nil?
205+
command.query['force'] = force unless force.nil?
202206
command.query['fields'] = fields unless fields.nil?
203207
command.query['quotaUser'] = quota_user unless quota_user.nil?
204208
execute_or_queue_command(command, &block)

0 commit comments

Comments
 (0)