Skip to content

Commit 6184265

Browse files
feat: Automated regeneration of dataplex v1 client (googleapis#20551)
Co-authored-by: Yoshi Automation Bot <[email protected]>
1 parent 2b1a7d7 commit 6184265

File tree

4 files changed

+9
-4
lines changed

4 files changed

+9
-4
lines changed

api_names_out.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -138380,6 +138380,7 @@
138380138380
"/dataplex:v1/dataplex.projects.locations.metadataJobs.create": create_project_location_metadata_job
138381138381
"/dataplex:v1/dataplex.projects.locations.metadataJobs.create/metadataJobId": metadata_job_id
138382138382
"/dataplex:v1/dataplex.projects.locations.metadataJobs.create/parent": parent
138383+
"/dataplex:v1/dataplex.projects.locations.metadataJobs.create/validateOnly": validate_only
138383138384
"/dataplex:v1/dataplex.projects.locations.metadataJobs.get": get_project_location_metadata_job
138384138385
"/dataplex:v1/dataplex.projects.locations.metadataJobs.get/name": name
138385138386
"/dataplex:v1/dataplex.projects.locations.metadataJobs.list": list_project_location_metadata_jobs

generated/google-apis-dataplex_v1/CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# Release history for google-apis-dataplex_v1
22

3-
### v0.67.0 (2024-11-10)
3+
### v0.67.0 (2024-11-17)
44

5-
* Regenerated from discovery document revision 20241027
5+
* Regenerated from discovery document revision 20241106
66

77
### v0.66.0 (2024-11-03)
88

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ module DataplexV1
2222
GENERATOR_VERSION = "0.15.1"
2323

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

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

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6726,6 +6726,9 @@ def cancel_project_location_metadata_job(name, google_cloud_dataplex_v1_cancel_m
67266726
# @param [String] metadata_job_id
67276727
# Optional. The metadata job ID. If not provided, a unique ID is generated with
67286728
# the prefix metadata-job-.
6729+
# @param [Boolean] validate_only
6730+
# Optional. The service validates the request without performing any mutations.
6731+
# The default is false.
67296732
# @param [String] fields
67306733
# Selector specifying which fields to include in a partial response.
67316734
# @param [String] quota_user
@@ -6743,14 +6746,15 @@ def cancel_project_location_metadata_job(name, google_cloud_dataplex_v1_cancel_m
67436746
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
67446747
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
67456748
# @raise [Google::Apis::AuthorizationError] Authorization is required
6746-
def create_project_location_metadata_job(parent, google_cloud_dataplex_v1_metadata_job_object = nil, metadata_job_id: nil, fields: nil, quota_user: nil, options: nil, &block)
6749+
def create_project_location_metadata_job(parent, google_cloud_dataplex_v1_metadata_job_object = nil, metadata_job_id: nil, validate_only: nil, fields: nil, quota_user: nil, options: nil, &block)
67476750
command = make_simple_command(:post, 'v1/{+parent}/metadataJobs', options)
67486751
command.request_representation = Google::Apis::DataplexV1::GoogleCloudDataplexV1MetadataJob::Representation
67496752
command.request_object = google_cloud_dataplex_v1_metadata_job_object
67506753
command.response_representation = Google::Apis::DataplexV1::GoogleLongrunningOperation::Representation
67516754
command.response_class = Google::Apis::DataplexV1::GoogleLongrunningOperation
67526755
command.params['parent'] = parent unless parent.nil?
67536756
command.query['metadataJobId'] = metadata_job_id unless metadata_job_id.nil?
6757+
command.query['validateOnly'] = validate_only unless validate_only.nil?
67546758
command.query['fields'] = fields unless fields.nil?
67556759
command.query['quotaUser'] = quota_user unless quota_user.nil?
67566760
execute_or_queue_command(command, &block)

0 commit comments

Comments
 (0)