# frozen_string_literal: true # Copyright 2023 Google LLC # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # Auto-generated by gapic-generator-ruby. DO NOT EDIT! require "google/privacy/dlp/v2/dlp_pb" module Google module Cloud module Dlp module V2 module DlpService module Rest ## # REST service stub for the DlpService service. # Service stub contains baseline method implementations # including transcoding, making the REST call, and deserialing the response. # class ServiceStub def initialize endpoint:, endpoint_template:, universe_domain:, credentials: # These require statements are intentionally placed here to initialize # the REST modules only when it's required. require "gapic/rest" @client_stub = ::Gapic::Rest::ClientStub.new endpoint: endpoint, endpoint_template: endpoint_template, universe_domain: universe_domain, credentials: credentials, numeric_enums: true, raise_faraday_errors: false end ## # The effective universe domain # # @return [String] # def universe_domain @client_stub.universe_domain end ## # The effective endpoint # # @return [String] # def endpoint @client_stub.endpoint end ## # Baseline implementation for the inspect_content REST call # # @param request_pb [::Google::Cloud::Dlp::V2::InspectContentRequest] # A request object representing the call parameters. Required. # @param options [::Gapic::CallOptions] # Overrides the default settings for this call, e.g, timeout, retries etc. Optional. # # @yield [result, operation] Access the result along with the TransportOperation object # @yieldparam result [::Google::Cloud::Dlp::V2::InspectContentResponse] # @yieldparam operation [::Gapic::Rest::TransportOperation] # # @return [::Google::Cloud::Dlp::V2::InspectContentResponse] # A result object deserialized from the server's reply def inspect_content request_pb, options = nil raise ::ArgumentError, "request must be provided" if request_pb.nil? verb, uri, query_string_params, body = ServiceStub.transcode_inspect_content_request request_pb query_string_params = if query_string_params.any? query_string_params.to_h { |p| p.split "=", 2 } else {} end response = @client_stub.make_http_request( verb, uri: uri, body: body || "", params: query_string_params, options: options ) operation = ::Gapic::Rest::TransportOperation.new response result = ::Google::Cloud::Dlp::V2::InspectContentResponse.decode_json response.body, ignore_unknown_fields: true yield result, operation if block_given? result end ## # Baseline implementation for the redact_image REST call # # @param request_pb [::Google::Cloud::Dlp::V2::RedactImageRequest] # A request object representing the call parameters. Required. # @param options [::Gapic::CallOptions] # Overrides the default settings for this call, e.g, timeout, retries etc. Optional. # # @yield [result, operation] Access the result along with the TransportOperation object # @yieldparam result [::Google::Cloud::Dlp::V2::RedactImageResponse] # @yieldparam operation [::Gapic::Rest::TransportOperation] # # @return [::Google::Cloud::Dlp::V2::RedactImageResponse] # A result object deserialized from the server's reply def redact_image request_pb, options = nil raise ::ArgumentError, "request must be provided" if request_pb.nil? verb, uri, query_string_params, body = ServiceStub.transcode_redact_image_request request_pb query_string_params = if query_string_params.any? query_string_params.to_h { |p| p.split "=", 2 } else {} end response = @client_stub.make_http_request( verb, uri: uri, body: body || "", params: query_string_params, options: options ) operation = ::Gapic::Rest::TransportOperation.new response result = ::Google::Cloud::Dlp::V2::RedactImageResponse.decode_json response.body, ignore_unknown_fields: true yield result, operation if block_given? result end ## # Baseline implementation for the deidentify_content REST call # # @param request_pb [::Google::Cloud::Dlp::V2::DeidentifyContentRequest] # A request object representing the call parameters. Required. # @param options [::Gapic::CallOptions] # Overrides the default settings for this call, e.g, timeout, retries etc. Optional. # # @yield [result, operation] Access the result along with the TransportOperation object # @yieldparam result [::Google::Cloud::Dlp::V2::DeidentifyContentResponse] # @yieldparam operation [::Gapic::Rest::TransportOperation] # # @return [::Google::Cloud::Dlp::V2::DeidentifyContentResponse] # A result object deserialized from the server's reply def deidentify_content request_pb, options = nil raise ::ArgumentError, "request must be provided" if request_pb.nil? verb, uri, query_string_params, body = ServiceStub.transcode_deidentify_content_request request_pb query_string_params = if query_string_params.any? query_string_params.to_h { |p| p.split "=", 2 } else {} end response = @client_stub.make_http_request( verb, uri: uri, body: body || "", params: query_string_params, options: options ) operation = ::Gapic::Rest::TransportOperation.new response result = ::Google::Cloud::Dlp::V2::DeidentifyContentResponse.decode_json response.body, ignore_unknown_fields: true yield result, operation if block_given? result end ## # Baseline implementation for the reidentify_content REST call # # @param request_pb [::Google::Cloud::Dlp::V2::ReidentifyContentRequest] # A request object representing the call parameters. Required. # @param options [::Gapic::CallOptions] # Overrides the default settings for this call, e.g, timeout, retries etc. Optional. # # @yield [result, operation] Access the result along with the TransportOperation object # @yieldparam result [::Google::Cloud::Dlp::V2::ReidentifyContentResponse] # @yieldparam operation [::Gapic::Rest::TransportOperation] # # @return [::Google::Cloud::Dlp::V2::ReidentifyContentResponse] # A result object deserialized from the server's reply def reidentify_content request_pb, options = nil raise ::ArgumentError, "request must be provided" if request_pb.nil? verb, uri, query_string_params, body = ServiceStub.transcode_reidentify_content_request request_pb query_string_params = if query_string_params.any? query_string_params.to_h { |p| p.split "=", 2 } else {} end response = @client_stub.make_http_request( verb, uri: uri, body: body || "", params: query_string_params, options: options ) operation = ::Gapic::Rest::TransportOperation.new response result = ::Google::Cloud::Dlp::V2::ReidentifyContentResponse.decode_json response.body, ignore_unknown_fields: true yield result, operation if block_given? result end ## # Baseline implementation for the list_info_types REST call # # @param request_pb [::Google::Cloud::Dlp::V2::ListInfoTypesRequest] # A request object representing the call parameters. Required. # @param options [::Gapic::CallOptions] # Overrides the default settings for this call, e.g, timeout, retries etc. Optional. # # @yield [result, operation] Access the result along with the TransportOperation object # @yieldparam result [::Google::Cloud::Dlp::V2::ListInfoTypesResponse] # @yieldparam operation [::Gapic::Rest::TransportOperation] # # @return [::Google::Cloud::Dlp::V2::ListInfoTypesResponse] # A result object deserialized from the server's reply def list_info_types request_pb, options = nil raise ::ArgumentError, "request must be provided" if request_pb.nil? verb, uri, query_string_params, body = ServiceStub.transcode_list_info_types_request request_pb query_string_params = if query_string_params.any? query_string_params.to_h { |p| p.split "=", 2 } else {} end response = @client_stub.make_http_request( verb, uri: uri, body: body || "", params: query_string_params, options: options ) operation = ::Gapic::Rest::TransportOperation.new response result = ::Google::Cloud::Dlp::V2::ListInfoTypesResponse.decode_json response.body, ignore_unknown_fields: true yield result, operation if block_given? result end ## # Baseline implementation for the create_inspect_template REST call # # @param request_pb [::Google::Cloud::Dlp::V2::CreateInspectTemplateRequest] # A request object representing the call parameters. Required. # @param options [::Gapic::CallOptions] # Overrides the default settings for this call, e.g, timeout, retries etc. Optional. # # @yield [result, operation] Access the result along with the TransportOperation object # @yieldparam result [::Google::Cloud::Dlp::V2::InspectTemplate] # @yieldparam operation [::Gapic::Rest::TransportOperation] # # @return [::Google::Cloud::Dlp::V2::InspectTemplate] # A result object deserialized from the server's reply def create_inspect_template request_pb, options = nil raise ::ArgumentError, "request must be provided" if request_pb.nil? verb, uri, query_string_params, body = ServiceStub.transcode_create_inspect_template_request request_pb query_string_params = if query_string_params.any? query_string_params.to_h { |p| p.split "=", 2 } else {} end response = @client_stub.make_http_request( verb, uri: uri, body: body || "", params: query_string_params, options: options ) operation = ::Gapic::Rest::TransportOperation.new response result = ::Google::Cloud::Dlp::V2::InspectTemplate.decode_json response.body, ignore_unknown_fields: true yield result, operation if block_given? result end ## # Baseline implementation for the update_inspect_template REST call # # @param request_pb [::Google::Cloud::Dlp::V2::UpdateInspectTemplateRequest] # A request object representing the call parameters. Required. # @param options [::Gapic::CallOptions] # Overrides the default settings for this call, e.g, timeout, retries etc. Optional. # # @yield [result, operation] Access the result along with the TransportOperation object # @yieldparam result [::Google::Cloud::Dlp::V2::InspectTemplate] # @yieldparam operation [::Gapic::Rest::TransportOperation] # # @return [::Google::Cloud::Dlp::V2::InspectTemplate] # A result object deserialized from the server's reply def update_inspect_template request_pb, options = nil raise ::ArgumentError, "request must be provided" if request_pb.nil? verb, uri, query_string_params, body = ServiceStub.transcode_update_inspect_template_request request_pb query_string_params = if query_string_params.any? query_string_params.to_h { |p| p.split "=", 2 } else {} end response = @client_stub.make_http_request( verb, uri: uri, body: body || "", params: query_string_params, options: options ) operation = ::Gapic::Rest::TransportOperation.new response result = ::Google::Cloud::Dlp::V2::InspectTemplate.decode_json response.body, ignore_unknown_fields: true yield result, operation if block_given? result end ## # Baseline implementation for the get_inspect_template REST call # # @param request_pb [::Google::Cloud::Dlp::V2::GetInspectTemplateRequest] # A request object representing the call parameters. Required. # @param options [::Gapic::CallOptions] # Overrides the default settings for this call, e.g, timeout, retries etc. Optional. # # @yield [result, operation] Access the result along with the TransportOperation object # @yieldparam result [::Google::Cloud::Dlp::V2::InspectTemplate] # @yieldparam operation [::Gapic::Rest::TransportOperation] # # @return [::Google::Cloud::Dlp::V2::InspectTemplate] # A result object deserialized from the server's reply def get_inspect_template request_pb, options = nil raise ::ArgumentError, "request must be provided" if request_pb.nil? verb, uri, query_string_params, body = ServiceStub.transcode_get_inspect_template_request request_pb query_string_params = if query_string_params.any? query_string_params.to_h { |p| p.split "=", 2 } else {} end response = @client_stub.make_http_request( verb, uri: uri, body: body || "", params: query_string_params, options: options ) operation = ::Gapic::Rest::TransportOperation.new response result = ::Google::Cloud::Dlp::V2::InspectTemplate.decode_json response.body, ignore_unknown_fields: true yield result, operation if block_given? result end ## # Baseline implementation for the list_inspect_templates REST call # # @param request_pb [::Google::Cloud::Dlp::V2::ListInspectTemplatesRequest] # A request object representing the call parameters. Required. # @param options [::Gapic::CallOptions] # Overrides the default settings for this call, e.g, timeout, retries etc. Optional. # # @yield [result, operation] Access the result along with the TransportOperation object # @yieldparam result [::Google::Cloud::Dlp::V2::ListInspectTemplatesResponse] # @yieldparam operation [::Gapic::Rest::TransportOperation] # # @return [::Google::Cloud::Dlp::V2::ListInspectTemplatesResponse] # A result object deserialized from the server's reply def list_inspect_templates request_pb, options = nil raise ::ArgumentError, "request must be provided" if request_pb.nil? verb, uri, query_string_params, body = ServiceStub.transcode_list_inspect_templates_request request_pb query_string_params = if query_string_params.any? query_string_params.to_h { |p| p.split "=", 2 } else {} end response = @client_stub.make_http_request( verb, uri: uri, body: body || "", params: query_string_params, options: options ) operation = ::Gapic::Rest::TransportOperation.new response result = ::Google::Cloud::Dlp::V2::ListInspectTemplatesResponse.decode_json response.body, ignore_unknown_fields: true yield result, operation if block_given? result end ## # Baseline implementation for the delete_inspect_template REST call # # @param request_pb [::Google::Cloud::Dlp::V2::DeleteInspectTemplateRequest] # A request object representing the call parameters. Required. # @param options [::Gapic::CallOptions] # Overrides the default settings for this call, e.g, timeout, retries etc. Optional. # # @yield [result, operation] Access the result along with the TransportOperation object # @yieldparam result [::Google::Protobuf::Empty] # @yieldparam operation [::Gapic::Rest::TransportOperation] # # @return [::Google::Protobuf::Empty] # A result object deserialized from the server's reply def delete_inspect_template request_pb, options = nil raise ::ArgumentError, "request must be provided" if request_pb.nil? verb, uri, query_string_params, body = ServiceStub.transcode_delete_inspect_template_request request_pb query_string_params = if query_string_params.any? query_string_params.to_h { |p| p.split "=", 2 } else {} end response = @client_stub.make_http_request( verb, uri: uri, body: body || "", params: query_string_params, options: options ) operation = ::Gapic::Rest::TransportOperation.new response result = ::Google::Protobuf::Empty.decode_json response.body, ignore_unknown_fields: true yield result, operation if block_given? result end ## # Baseline implementation for the create_deidentify_template REST call # # @param request_pb [::Google::Cloud::Dlp::V2::CreateDeidentifyTemplateRequest] # A request object representing the call parameters. Required. # @param options [::Gapic::CallOptions] # Overrides the default settings for this call, e.g, timeout, retries etc. Optional. # # @yield [result, operation] Access the result along with the TransportOperation object # @yieldparam result [::Google::Cloud::Dlp::V2::DeidentifyTemplate] # @yieldparam operation [::Gapic::Rest::TransportOperation] # # @return [::Google::Cloud::Dlp::V2::DeidentifyTemplate] # A result object deserialized from the server's reply def create_deidentify_template request_pb, options = nil raise ::ArgumentError, "request must be provided" if request_pb.nil? verb, uri, query_string_params, body = ServiceStub.transcode_create_deidentify_template_request request_pb query_string_params = if query_string_params.any? query_string_params.to_h { |p| p.split "=", 2 } else {} end response = @client_stub.make_http_request( verb, uri: uri, body: body || "", params: query_string_params, options: options ) operation = ::Gapic::Rest::TransportOperation.new response result = ::Google::Cloud::Dlp::V2::DeidentifyTemplate.decode_json response.body, ignore_unknown_fields: true yield result, operation if block_given? result end ## # Baseline implementation for the update_deidentify_template REST call # # @param request_pb [::Google::Cloud::Dlp::V2::UpdateDeidentifyTemplateRequest] # A request object representing the call parameters. Required. # @param options [::Gapic::CallOptions] # Overrides the default settings for this call, e.g, timeout, retries etc. Optional. # # @yield [result, operation] Access the result along with the TransportOperation object # @yieldparam result [::Google::Cloud::Dlp::V2::DeidentifyTemplate] # @yieldparam operation [::Gapic::Rest::TransportOperation] # # @return [::Google::Cloud::Dlp::V2::DeidentifyTemplate] # A result object deserialized from the server's reply def update_deidentify_template request_pb, options = nil raise ::ArgumentError, "request must be provided" if request_pb.nil? verb, uri, query_string_params, body = ServiceStub.transcode_update_deidentify_template_request request_pb query_string_params = if query_string_params.any? query_string_params.to_h { |p| p.split "=", 2 } else {} end response = @client_stub.make_http_request( verb, uri: uri, body: body || "", params: query_string_params, options: options ) operation = ::Gapic::Rest::TransportOperation.new response result = ::Google::Cloud::Dlp::V2::DeidentifyTemplate.decode_json response.body, ignore_unknown_fields: true yield result, operation if block_given? result end ## # Baseline implementation for the get_deidentify_template REST call # # @param request_pb [::Google::Cloud::Dlp::V2::GetDeidentifyTemplateRequest] # A request object representing the call parameters. Required. # @param options [::Gapic::CallOptions] # Overrides the default settings for this call, e.g, timeout, retries etc. Optional. # # @yield [result, operation] Access the result along with the TransportOperation object # @yieldparam result [::Google::Cloud::Dlp::V2::DeidentifyTemplate] # @yieldparam operation [::Gapic::Rest::TransportOperation] # # @return [::Google::Cloud::Dlp::V2::DeidentifyTemplate] # A result object deserialized from the server's reply def get_deidentify_template request_pb, options = nil raise ::ArgumentError, "request must be provided" if request_pb.nil? verb, uri, query_string_params, body = ServiceStub.transcode_get_deidentify_template_request request_pb query_string_params = if query_string_params.any? query_string_params.to_h { |p| p.split "=", 2 } else {} end response = @client_stub.make_http_request( verb, uri: uri, body: body || "", params: query_string_params, options: options ) operation = ::Gapic::Rest::TransportOperation.new response result = ::Google::Cloud::Dlp::V2::DeidentifyTemplate.decode_json response.body, ignore_unknown_fields: true yield result, operation if block_given? result end ## # Baseline implementation for the list_deidentify_templates REST call # # @param request_pb [::Google::Cloud::Dlp::V2::ListDeidentifyTemplatesRequest] # A request object representing the call parameters. Required. # @param options [::Gapic::CallOptions] # Overrides the default settings for this call, e.g, timeout, retries etc. Optional. # # @yield [result, operation] Access the result along with the TransportOperation object # @yieldparam result [::Google::Cloud::Dlp::V2::ListDeidentifyTemplatesResponse] # @yieldparam operation [::Gapic::Rest::TransportOperation] # # @return [::Google::Cloud::Dlp::V2::ListDeidentifyTemplatesResponse] # A result object deserialized from the server's reply def list_deidentify_templates request_pb, options = nil raise ::ArgumentError, "request must be provided" if request_pb.nil? verb, uri, query_string_params, body = ServiceStub.transcode_list_deidentify_templates_request request_pb query_string_params = if query_string_params.any? query_string_params.to_h { |p| p.split "=", 2 } else {} end response = @client_stub.make_http_request( verb, uri: uri, body: body || "", params: query_string_params, options: options ) operation = ::Gapic::Rest::TransportOperation.new response result = ::Google::Cloud::Dlp::V2::ListDeidentifyTemplatesResponse.decode_json response.body, ignore_unknown_fields: true yield result, operation if block_given? result end ## # Baseline implementation for the delete_deidentify_template REST call # # @param request_pb [::Google::Cloud::Dlp::V2::DeleteDeidentifyTemplateRequest] # A request object representing the call parameters. Required. # @param options [::Gapic::CallOptions] # Overrides the default settings for this call, e.g, timeout, retries etc. Optional. # # @yield [result, operation] Access the result along with the TransportOperation object # @yieldparam result [::Google::Protobuf::Empty] # @yieldparam operation [::Gapic::Rest::TransportOperation] # # @return [::Google::Protobuf::Empty] # A result object deserialized from the server's reply def delete_deidentify_template request_pb, options = nil raise ::ArgumentError, "request must be provided" if request_pb.nil? verb, uri, query_string_params, body = ServiceStub.transcode_delete_deidentify_template_request request_pb query_string_params = if query_string_params.any? query_string_params.to_h { |p| p.split "=", 2 } else {} end response = @client_stub.make_http_request( verb, uri: uri, body: body || "", params: query_string_params, options: options ) operation = ::Gapic::Rest::TransportOperation.new response result = ::Google::Protobuf::Empty.decode_json response.body, ignore_unknown_fields: true yield result, operation if block_given? result end ## # Baseline implementation for the create_job_trigger REST call # # @param request_pb [::Google::Cloud::Dlp::V2::CreateJobTriggerRequest] # A request object representing the call parameters. Required. # @param options [::Gapic::CallOptions] # Overrides the default settings for this call, e.g, timeout, retries etc. Optional. # # @yield [result, operation] Access the result along with the TransportOperation object # @yieldparam result [::Google::Cloud::Dlp::V2::JobTrigger] # @yieldparam operation [::Gapic::Rest::TransportOperation] # # @return [::Google::Cloud::Dlp::V2::JobTrigger] # A result object deserialized from the server's reply def create_job_trigger request_pb, options = nil raise ::ArgumentError, "request must be provided" if request_pb.nil? verb, uri, query_string_params, body = ServiceStub.transcode_create_job_trigger_request request_pb query_string_params = if query_string_params.any? query_string_params.to_h { |p| p.split "=", 2 } else {} end response = @client_stub.make_http_request( verb, uri: uri, body: body || "", params: query_string_params, options: options ) operation = ::Gapic::Rest::TransportOperation.new response result = ::Google::Cloud::Dlp::V2::JobTrigger.decode_json response.body, ignore_unknown_fields: true yield result, operation if block_given? result end ## # Baseline implementation for the update_job_trigger REST call # # @param request_pb [::Google::Cloud::Dlp::V2::UpdateJobTriggerRequest] # A request object representing the call parameters. Required. # @param options [::Gapic::CallOptions] # Overrides the default settings for this call, e.g, timeout, retries etc. Optional. # # @yield [result, operation] Access the result along with the TransportOperation object # @yieldparam result [::Google::Cloud::Dlp::V2::JobTrigger] # @yieldparam operation [::Gapic::Rest::TransportOperation] # # @return [::Google::Cloud::Dlp::V2::JobTrigger] # A result object deserialized from the server's reply def update_job_trigger request_pb, options = nil raise ::ArgumentError, "request must be provided" if request_pb.nil? verb, uri, query_string_params, body = ServiceStub.transcode_update_job_trigger_request request_pb query_string_params = if query_string_params.any? query_string_params.to_h { |p| p.split "=", 2 } else {} end response = @client_stub.make_http_request( verb, uri: uri, body: body || "", params: query_string_params, options: options ) operation = ::Gapic::Rest::TransportOperation.new response result = ::Google::Cloud::Dlp::V2::JobTrigger.decode_json response.body, ignore_unknown_fields: true yield result, operation if block_given? result end ## # Baseline implementation for the hybrid_inspect_job_trigger REST call # # @param request_pb [::Google::Cloud::Dlp::V2::HybridInspectJobTriggerRequest] # A request object representing the call parameters. Required. # @param options [::Gapic::CallOptions] # Overrides the default settings for this call, e.g, timeout, retries etc. Optional. # # @yield [result, operation] Access the result along with the TransportOperation object # @yieldparam result [::Google::Cloud::Dlp::V2::HybridInspectResponse] # @yieldparam operation [::Gapic::Rest::TransportOperation] # # @return [::Google::Cloud::Dlp::V2::HybridInspectResponse] # A result object deserialized from the server's reply def hybrid_inspect_job_trigger request_pb, options = nil raise ::ArgumentError, "request must be provided" if request_pb.nil? verb, uri, query_string_params, body = ServiceStub.transcode_hybrid_inspect_job_trigger_request request_pb query_string_params = if query_string_params.any? query_string_params.to_h { |p| p.split "=", 2 } else {} end response = @client_stub.make_http_request( verb, uri: uri, body: body || "", params: query_string_params, options: options ) operation = ::Gapic::Rest::TransportOperation.new response result = ::Google::Cloud::Dlp::V2::HybridInspectResponse.decode_json response.body, ignore_unknown_fields: true yield result, operation if block_given? result end ## # Baseline implementation for the get_job_trigger REST call # # @param request_pb [::Google::Cloud::Dlp::V2::GetJobTriggerRequest] # A request object representing the call parameters. Required. # @param options [::Gapic::CallOptions] # Overrides the default settings for this call, e.g, timeout, retries etc. Optional. # # @yield [result, operation] Access the result along with the TransportOperation object # @yieldparam result [::Google::Cloud::Dlp::V2::JobTrigger] # @yieldparam operation [::Gapic::Rest::TransportOperation] # # @return [::Google::Cloud::Dlp::V2::JobTrigger] # A result object deserialized from the server's reply def get_job_trigger request_pb, options = nil raise ::ArgumentError, "request must be provided" if request_pb.nil? verb, uri, query_string_params, body = ServiceStub.transcode_get_job_trigger_request request_pb query_string_params = if query_string_params.any? query_string_params.to_h { |p| p.split "=", 2 } else {} end response = @client_stub.make_http_request( verb, uri: uri, body: body || "", params: query_string_params, options: options ) operation = ::Gapic::Rest::TransportOperation.new response result = ::Google::Cloud::Dlp::V2::JobTrigger.decode_json response.body, ignore_unknown_fields: true yield result, operation if block_given? result end ## # Baseline implementation for the list_job_triggers REST call # # @param request_pb [::Google::Cloud::Dlp::V2::ListJobTriggersRequest] # A request object representing the call parameters. Required. # @param options [::Gapic::CallOptions] # Overrides the default settings for this call, e.g, timeout, retries etc. Optional. # # @yield [result, operation] Access the result along with the TransportOperation object # @yieldparam result [::Google::Cloud::Dlp::V2::ListJobTriggersResponse] # @yieldparam operation [::Gapic::Rest::TransportOperation] # # @return [::Google::Cloud::Dlp::V2::ListJobTriggersResponse] # A result object deserialized from the server's reply def list_job_triggers request_pb, options = nil raise ::ArgumentError, "request must be provided" if request_pb.nil? verb, uri, query_string_params, body = ServiceStub.transcode_list_job_triggers_request request_pb query_string_params = if query_string_params.any? query_string_params.to_h { |p| p.split "=", 2 } else {} end response = @client_stub.make_http_request( verb, uri: uri, body: body || "", params: query_string_params, options: options ) operation = ::Gapic::Rest::TransportOperation.new response result = ::Google::Cloud::Dlp::V2::ListJobTriggersResponse.decode_json response.body, ignore_unknown_fields: true yield result, operation if block_given? result end ## # Baseline implementation for the delete_job_trigger REST call # # @param request_pb [::Google::Cloud::Dlp::V2::DeleteJobTriggerRequest] # A request object representing the call parameters. Required. # @param options [::Gapic::CallOptions] # Overrides the default settings for this call, e.g, timeout, retries etc. Optional. # # @yield [result, operation] Access the result along with the TransportOperation object # @yieldparam result [::Google::Protobuf::Empty] # @yieldparam operation [::Gapic::Rest::TransportOperation] # # @return [::Google::Protobuf::Empty] # A result object deserialized from the server's reply def delete_job_trigger request_pb, options = nil raise ::ArgumentError, "request must be provided" if request_pb.nil? verb, uri, query_string_params, body = ServiceStub.transcode_delete_job_trigger_request request_pb query_string_params = if query_string_params.any? query_string_params.to_h { |p| p.split "=", 2 } else {} end response = @client_stub.make_http_request( verb, uri: uri, body: body || "", params: query_string_params, options: options ) operation = ::Gapic::Rest::TransportOperation.new response result = ::Google::Protobuf::Empty.decode_json response.body, ignore_unknown_fields: true yield result, operation if block_given? result end ## # Baseline implementation for the activate_job_trigger REST call # # @param request_pb [::Google::Cloud::Dlp::V2::ActivateJobTriggerRequest] # A request object representing the call parameters. Required. # @param options [::Gapic::CallOptions] # Overrides the default settings for this call, e.g, timeout, retries etc. Optional. # # @yield [result, operation] Access the result along with the TransportOperation object # @yieldparam result [::Google::Cloud::Dlp::V2::DlpJob] # @yieldparam operation [::Gapic::Rest::TransportOperation] # # @return [::Google::Cloud::Dlp::V2::DlpJob] # A result object deserialized from the server's reply def activate_job_trigger request_pb, options = nil raise ::ArgumentError, "request must be provided" if request_pb.nil? verb, uri, query_string_params, body = ServiceStub.transcode_activate_job_trigger_request request_pb query_string_params = if query_string_params.any? query_string_params.to_h { |p| p.split "=", 2 } else {} end response = @client_stub.make_http_request( verb, uri: uri, body: body || "", params: query_string_params, options: options ) operation = ::Gapic::Rest::TransportOperation.new response result = ::Google::Cloud::Dlp::V2::DlpJob.decode_json response.body, ignore_unknown_fields: true yield result, operation if block_given? result end ## # Baseline implementation for the create_discovery_config REST call # # @param request_pb [::Google::Cloud::Dlp::V2::CreateDiscoveryConfigRequest] # A request object representing the call parameters. Required. # @param options [::Gapic::CallOptions] # Overrides the default settings for this call, e.g, timeout, retries etc. Optional. # # @yield [result, operation] Access the result along with the TransportOperation object # @yieldparam result [::Google::Cloud::Dlp::V2::DiscoveryConfig] # @yieldparam operation [::Gapic::Rest::TransportOperation] # # @return [::Google::Cloud::Dlp::V2::DiscoveryConfig] # A result object deserialized from the server's reply def create_discovery_config request_pb, options = nil raise ::ArgumentError, "request must be provided" if request_pb.nil? verb, uri, query_string_params, body = ServiceStub.transcode_create_discovery_config_request request_pb query_string_params = if query_string_params.any? query_string_params.to_h { |p| p.split "=", 2 } else {} end response = @client_stub.make_http_request( verb, uri: uri, body: body || "", params: query_string_params, options: options ) operation = ::Gapic::Rest::TransportOperation.new response result = ::Google::Cloud::Dlp::V2::DiscoveryConfig.decode_json response.body, ignore_unknown_fields: true yield result, operation if block_given? result end ## # Baseline implementation for the update_discovery_config REST call # # @param request_pb [::Google::Cloud::Dlp::V2::UpdateDiscoveryConfigRequest] # A request object representing the call parameters. Required. # @param options [::Gapic::CallOptions] # Overrides the default settings for this call, e.g, timeout, retries etc. Optional. # # @yield [result, operation] Access the result along with the TransportOperation object # @yieldparam result [::Google::Cloud::Dlp::V2::DiscoveryConfig] # @yieldparam operation [::Gapic::Rest::TransportOperation] # # @return [::Google::Cloud::Dlp::V2::DiscoveryConfig] # A result object deserialized from the server's reply def update_discovery_config request_pb, options = nil raise ::ArgumentError, "request must be provided" if request_pb.nil? verb, uri, query_string_params, body = ServiceStub.transcode_update_discovery_config_request request_pb query_string_params = if query_string_params.any? query_string_params.to_h { |p| p.split "=", 2 } else {} end response = @client_stub.make_http_request( verb, uri: uri, body: body || "", params: query_string_params, options: options ) operation = ::Gapic::Rest::TransportOperation.new response result = ::Google::Cloud::Dlp::V2::DiscoveryConfig.decode_json response.body, ignore_unknown_fields: true yield result, operation if block_given? result end ## # Baseline implementation for the get_discovery_config REST call # # @param request_pb [::Google::Cloud::Dlp::V2::GetDiscoveryConfigRequest] # A request object representing the call parameters. Required. # @param options [::Gapic::CallOptions] # Overrides the default settings for this call, e.g, timeout, retries etc. Optional. # # @yield [result, operation] Access the result along with the TransportOperation object # @yieldparam result [::Google::Cloud::Dlp::V2::DiscoveryConfig] # @yieldparam operation [::Gapic::Rest::TransportOperation] # # @return [::Google::Cloud::Dlp::V2::DiscoveryConfig] # A result object deserialized from the server's reply def get_discovery_config request_pb, options = nil raise ::ArgumentError, "request must be provided" if request_pb.nil? verb, uri, query_string_params, body = ServiceStub.transcode_get_discovery_config_request request_pb query_string_params = if query_string_params.any? query_string_params.to_h { |p| p.split "=", 2 } else {} end response = @client_stub.make_http_request( verb, uri: uri, body: body || "", params: query_string_params, options: options ) operation = ::Gapic::Rest::TransportOperation.new response result = ::Google::Cloud::Dlp::V2::DiscoveryConfig.decode_json response.body, ignore_unknown_fields: true yield result, operation if block_given? result end ## # Baseline implementation for the list_discovery_configs REST call # # @param request_pb [::Google::Cloud::Dlp::V2::ListDiscoveryConfigsRequest] # A request object representing the call parameters. Required. # @param options [::Gapic::CallOptions] # Overrides the default settings for this call, e.g, timeout, retries etc. Optional. # # @yield [result, operation] Access the result along with the TransportOperation object # @yieldparam result [::Google::Cloud::Dlp::V2::ListDiscoveryConfigsResponse] # @yieldparam operation [::Gapic::Rest::TransportOperation] # # @return [::Google::Cloud::Dlp::V2::ListDiscoveryConfigsResponse] # A result object deserialized from the server's reply def list_discovery_configs request_pb, options = nil raise ::ArgumentError, "request must be provided" if request_pb.nil? verb, uri, query_string_params, body = ServiceStub.transcode_list_discovery_configs_request request_pb query_string_params = if query_string_params.any? query_string_params.to_h { |p| p.split "=", 2 } else {} end response = @client_stub.make_http_request( verb, uri: uri, body: body || "", params: query_string_params, options: options ) operation = ::Gapic::Rest::TransportOperation.new response result = ::Google::Cloud::Dlp::V2::ListDiscoveryConfigsResponse.decode_json response.body, ignore_unknown_fields: true yield result, operation if block_given? result end ## # Baseline implementation for the delete_discovery_config REST call # # @param request_pb [::Google::Cloud::Dlp::V2::DeleteDiscoveryConfigRequest] # A request object representing the call parameters. Required. # @param options [::Gapic::CallOptions] # Overrides the default settings for this call, e.g, timeout, retries etc. Optional. # # @yield [result, operation] Access the result along with the TransportOperation object # @yieldparam result [::Google::Protobuf::Empty] # @yieldparam operation [::Gapic::Rest::TransportOperation] # # @return [::Google::Protobuf::Empty] # A result object deserialized from the server's reply def delete_discovery_config request_pb, options = nil raise ::ArgumentError, "request must be provided" if request_pb.nil? verb, uri, query_string_params, body = ServiceStub.transcode_delete_discovery_config_request request_pb query_string_params = if query_string_params.any? query_string_params.to_h { |p| p.split "=", 2 } else {} end response = @client_stub.make_http_request( verb, uri: uri, body: body || "", params: query_string_params, options: options ) operation = ::Gapic::Rest::TransportOperation.new response result = ::Google::Protobuf::Empty.decode_json response.body, ignore_unknown_fields: true yield result, operation if block_given? result end ## # Baseline implementation for the create_dlp_job REST call # # @param request_pb [::Google::Cloud::Dlp::V2::CreateDlpJobRequest] # A request object representing the call parameters. Required. # @param options [::Gapic::CallOptions] # Overrides the default settings for this call, e.g, timeout, retries etc. Optional. # # @yield [result, operation] Access the result along with the TransportOperation object # @yieldparam result [::Google::Cloud::Dlp::V2::DlpJob] # @yieldparam operation [::Gapic::Rest::TransportOperation] # # @return [::Google::Cloud::Dlp::V2::DlpJob] # A result object deserialized from the server's reply def create_dlp_job request_pb, options = nil raise ::ArgumentError, "request must be provided" if request_pb.nil? verb, uri, query_string_params, body = ServiceStub.transcode_create_dlp_job_request request_pb query_string_params = if query_string_params.any? query_string_params.to_h { |p| p.split "=", 2 } else {} end response = @client_stub.make_http_request( verb, uri: uri, body: body || "", params: query_string_params, options: options ) operation = ::Gapic::Rest::TransportOperation.new response result = ::Google::Cloud::Dlp::V2::DlpJob.decode_json response.body, ignore_unknown_fields: true yield result, operation if block_given? result end ## # Baseline implementation for the list_dlp_jobs REST call # # @param request_pb [::Google::Cloud::Dlp::V2::ListDlpJobsRequest] # A request object representing the call parameters. Required. # @param options [::Gapic::CallOptions] # Overrides the default settings for this call, e.g, timeout, retries etc. Optional. # # @yield [result, operation] Access the result along with the TransportOperation object # @yieldparam result [::Google::Cloud::Dlp::V2::ListDlpJobsResponse] # @yieldparam operation [::Gapic::Rest::TransportOperation] # # @return [::Google::Cloud::Dlp::V2::ListDlpJobsResponse] # A result object deserialized from the server's reply def list_dlp_jobs request_pb, options = nil raise ::ArgumentError, "request must be provided" if request_pb.nil? verb, uri, query_string_params, body = ServiceStub.transcode_list_dlp_jobs_request request_pb query_string_params = if query_string_params.any? query_string_params.to_h { |p| p.split "=", 2 } else {} end response = @client_stub.make_http_request( verb, uri: uri, body: body || "", params: query_string_params, options: options ) operation = ::Gapic::Rest::TransportOperation.new response result = ::Google::Cloud::Dlp::V2::ListDlpJobsResponse.decode_json response.body, ignore_unknown_fields: true yield result, operation if block_given? result end ## # Baseline implementation for the get_dlp_job REST call # # @param request_pb [::Google::Cloud::Dlp::V2::GetDlpJobRequest] # A request object representing the call parameters. Required. # @param options [::Gapic::CallOptions] # Overrides the default settings for this call, e.g, timeout, retries etc. Optional. # # @yield [result, operation] Access the result along with the TransportOperation object # @yieldparam result [::Google::Cloud::Dlp::V2::DlpJob] # @yieldparam operation [::Gapic::Rest::TransportOperation] # # @return [::Google::Cloud::Dlp::V2::DlpJob] # A result object deserialized from the server's reply def get_dlp_job request_pb, options = nil raise ::ArgumentError, "request must be provided" if request_pb.nil? verb, uri, query_string_params, body = ServiceStub.transcode_get_dlp_job_request request_pb query_string_params = if query_string_params.any? query_string_params.to_h { |p| p.split "=", 2 } else {} end response = @client_stub.make_http_request( verb, uri: uri, body: body || "", params: query_string_params, options: options ) operation = ::Gapic::Rest::TransportOperation.new response result = ::Google::Cloud::Dlp::V2::DlpJob.decode_json response.body, ignore_unknown_fields: true yield result, operation if block_given? result end ## # Baseline implementation for the delete_dlp_job REST call # # @param request_pb [::Google::Cloud::Dlp::V2::DeleteDlpJobRequest] # A request object representing the call parameters. Required. # @param options [::Gapic::CallOptions] # Overrides the default settings for this call, e.g, timeout, retries etc. Optional. # # @yield [result, operation] Access the result along with the TransportOperation object # @yieldparam result [::Google::Protobuf::Empty] # @yieldparam operation [::Gapic::Rest::TransportOperation] # # @return [::Google::Protobuf::Empty] # A result object deserialized from the server's reply def delete_dlp_job request_pb, options = nil raise ::ArgumentError, "request must be provided" if request_pb.nil? verb, uri, query_string_params, body = ServiceStub.transcode_delete_dlp_job_request request_pb query_string_params = if query_string_params.any? query_string_params.to_h { |p| p.split "=", 2 } else {} end response = @client_stub.make_http_request( verb, uri: uri, body: body || "", params: query_string_params, options: options ) operation = ::Gapic::Rest::TransportOperation.new response result = ::Google::Protobuf::Empty.decode_json response.body, ignore_unknown_fields: true yield result, operation if block_given? result end ## # Baseline implementation for the cancel_dlp_job REST call # # @param request_pb [::Google::Cloud::Dlp::V2::CancelDlpJobRequest] # A request object representing the call parameters. Required. # @param options [::Gapic::CallOptions] # Overrides the default settings for this call, e.g, timeout, retries etc. Optional. # # @yield [result, operation] Access the result along with the TransportOperation object # @yieldparam result [::Google::Protobuf::Empty] # @yieldparam operation [::Gapic::Rest::TransportOperation] # # @return [::Google::Protobuf::Empty] # A result object deserialized from the server's reply def cancel_dlp_job request_pb, options = nil raise ::ArgumentError, "request must be provided" if request_pb.nil? verb, uri, query_string_params, body = ServiceStub.transcode_cancel_dlp_job_request request_pb query_string_params = if query_string_params.any? query_string_params.to_h { |p| p.split "=", 2 } else {} end response = @client_stub.make_http_request( verb, uri: uri, body: body || "", params: query_string_params, options: options ) operation = ::Gapic::Rest::TransportOperation.new response result = ::Google::Protobuf::Empty.decode_json response.body, ignore_unknown_fields: true yield result, operation if block_given? result end ## # Baseline implementation for the create_stored_info_type REST call # # @param request_pb [::Google::Cloud::Dlp::V2::CreateStoredInfoTypeRequest] # A request object representing the call parameters. Required. # @param options [::Gapic::CallOptions] # Overrides the default settings for this call, e.g, timeout, retries etc. Optional. # # @yield [result, operation] Access the result along with the TransportOperation object # @yieldparam result [::Google::Cloud::Dlp::V2::StoredInfoType] # @yieldparam operation [::Gapic::Rest::TransportOperation] # # @return [::Google::Cloud::Dlp::V2::StoredInfoType] # A result object deserialized from the server's reply def create_stored_info_type request_pb, options = nil raise ::ArgumentError, "request must be provided" if request_pb.nil? verb, uri, query_string_params, body = ServiceStub.transcode_create_stored_info_type_request request_pb query_string_params = if query_string_params.any? query_string_params.to_h { |p| p.split "=", 2 } else {} end response = @client_stub.make_http_request( verb, uri: uri, body: body || "", params: query_string_params, options: options ) operation = ::Gapic::Rest::TransportOperation.new response result = ::Google::Cloud::Dlp::V2::StoredInfoType.decode_json response.body, ignore_unknown_fields: true yield result, operation if block_given? result end ## # Baseline implementation for the update_stored_info_type REST call # # @param request_pb [::Google::Cloud::Dlp::V2::UpdateStoredInfoTypeRequest] # A request object representing the call parameters. Required. # @param options [::Gapic::CallOptions] # Overrides the default settings for this call, e.g, timeout, retries etc. Optional. # # @yield [result, operation] Access the result along with the TransportOperation object # @yieldparam result [::Google::Cloud::Dlp::V2::StoredInfoType] # @yieldparam operation [::Gapic::Rest::TransportOperation] # # @return [::Google::Cloud::Dlp::V2::StoredInfoType] # A result object deserialized from the server's reply def update_stored_info_type request_pb, options = nil raise ::ArgumentError, "request must be provided" if request_pb.nil? verb, uri, query_string_params, body = ServiceStub.transcode_update_stored_info_type_request request_pb query_string_params = if query_string_params.any? query_string_params.to_h { |p| p.split "=", 2 } else {} end response = @client_stub.make_http_request( verb, uri: uri, body: body || "", params: query_string_params, options: options ) operation = ::Gapic::Rest::TransportOperation.new response result = ::Google::Cloud::Dlp::V2::StoredInfoType.decode_json response.body, ignore_unknown_fields: true yield result, operation if block_given? result end ## # Baseline implementation for the get_stored_info_type REST call # # @param request_pb [::Google::Cloud::Dlp::V2::GetStoredInfoTypeRequest] # A request object representing the call parameters. Required. # @param options [::Gapic::CallOptions] # Overrides the default settings for this call, e.g, timeout, retries etc. Optional. # # @yield [result, operation] Access the result along with the TransportOperation object # @yieldparam result [::Google::Cloud::Dlp::V2::StoredInfoType] # @yieldparam operation [::Gapic::Rest::TransportOperation] # # @return [::Google::Cloud::Dlp::V2::StoredInfoType] # A result object deserialized from the server's reply def get_stored_info_type request_pb, options = nil raise ::ArgumentError, "request must be provided" if request_pb.nil? verb, uri, query_string_params, body = ServiceStub.transcode_get_stored_info_type_request request_pb query_string_params = if query_string_params.any? query_string_params.to_h { |p| p.split "=", 2 } else {} end response = @client_stub.make_http_request( verb, uri: uri, body: body || "", params: query_string_params, options: options ) operation = ::Gapic::Rest::TransportOperation.new response result = ::Google::Cloud::Dlp::V2::StoredInfoType.decode_json response.body, ignore_unknown_fields: true yield result, operation if block_given? result end ## # Baseline implementation for the list_stored_info_types REST call # # @param request_pb [::Google::Cloud::Dlp::V2::ListStoredInfoTypesRequest] # A request object representing the call parameters. Required. # @param options [::Gapic::CallOptions] # Overrides the default settings for this call, e.g, timeout, retries etc. Optional. # # @yield [result, operation] Access the result along with the TransportOperation object # @yieldparam result [::Google::Cloud::Dlp::V2::ListStoredInfoTypesResponse] # @yieldparam operation [::Gapic::Rest::TransportOperation] # # @return [::Google::Cloud::Dlp::V2::ListStoredInfoTypesResponse] # A result object deserialized from the server's reply def list_stored_info_types request_pb, options = nil raise ::ArgumentError, "request must be provided" if request_pb.nil? verb, uri, query_string_params, body = ServiceStub.transcode_list_stored_info_types_request request_pb query_string_params = if query_string_params.any? query_string_params.to_h { |p| p.split "=", 2 } else {} end response = @client_stub.make_http_request( verb, uri: uri, body: body || "", params: query_string_params, options: options ) operation = ::Gapic::Rest::TransportOperation.new response result = ::Google::Cloud::Dlp::V2::ListStoredInfoTypesResponse.decode_json response.body, ignore_unknown_fields: true yield result, operation if block_given? result end ## # Baseline implementation for the delete_stored_info_type REST call # # @param request_pb [::Google::Cloud::Dlp::V2::DeleteStoredInfoTypeRequest] # A request object representing the call parameters. Required. # @param options [::Gapic::CallOptions] # Overrides the default settings for this call, e.g, timeout, retries etc. Optional. # # @yield [result, operation] Access the result along with the TransportOperation object # @yieldparam result [::Google::Protobuf::Empty] # @yieldparam operation [::Gapic::Rest::TransportOperation] # # @return [::Google::Protobuf::Empty] # A result object deserialized from the server's reply def delete_stored_info_type request_pb, options = nil raise ::ArgumentError, "request must be provided" if request_pb.nil? verb, uri, query_string_params, body = ServiceStub.transcode_delete_stored_info_type_request request_pb query_string_params = if query_string_params.any? query_string_params.to_h { |p| p.split "=", 2 } else {} end response = @client_stub.make_http_request( verb, uri: uri, body: body || "", params: query_string_params, options: options ) operation = ::Gapic::Rest::TransportOperation.new response result = ::Google::Protobuf::Empty.decode_json response.body, ignore_unknown_fields: true yield result, operation if block_given? result end ## # Baseline implementation for the list_project_data_profiles REST call # # @param request_pb [::Google::Cloud::Dlp::V2::ListProjectDataProfilesRequest] # A request object representing the call parameters. Required. # @param options [::Gapic::CallOptions] # Overrides the default settings for this call, e.g, timeout, retries etc. Optional. # # @yield [result, operation] Access the result along with the TransportOperation object # @yieldparam result [::Google::Cloud::Dlp::V2::ListProjectDataProfilesResponse] # @yieldparam operation [::Gapic::Rest::TransportOperation] # # @return [::Google::Cloud::Dlp::V2::ListProjectDataProfilesResponse] # A result object deserialized from the server's reply def list_project_data_profiles request_pb, options = nil raise ::ArgumentError, "request must be provided" if request_pb.nil? verb, uri, query_string_params, body = ServiceStub.transcode_list_project_data_profiles_request request_pb query_string_params = if query_string_params.any? query_string_params.to_h { |p| p.split "=", 2 } else {} end response = @client_stub.make_http_request( verb, uri: uri, body: body || "", params: query_string_params, options: options ) operation = ::Gapic::Rest::TransportOperation.new response result = ::Google::Cloud::Dlp::V2::ListProjectDataProfilesResponse.decode_json response.body, ignore_unknown_fields: true yield result, operation if block_given? result end ## # Baseline implementation for the list_table_data_profiles REST call # # @param request_pb [::Google::Cloud::Dlp::V2::ListTableDataProfilesRequest] # A request object representing the call parameters. Required. # @param options [::Gapic::CallOptions] # Overrides the default settings for this call, e.g, timeout, retries etc. Optional. # # @yield [result, operation] Access the result along with the TransportOperation object # @yieldparam result [::Google::Cloud::Dlp::V2::ListTableDataProfilesResponse] # @yieldparam operation [::Gapic::Rest::TransportOperation] # # @return [::Google::Cloud::Dlp::V2::ListTableDataProfilesResponse] # A result object deserialized from the server's reply def list_table_data_profiles request_pb, options = nil raise ::ArgumentError, "request must be provided" if request_pb.nil? verb, uri, query_string_params, body = ServiceStub.transcode_list_table_data_profiles_request request_pb query_string_params = if query_string_params.any? query_string_params.to_h { |p| p.split "=", 2 } else {} end response = @client_stub.make_http_request( verb, uri: uri, body: body || "", params: query_string_params, options: options ) operation = ::Gapic::Rest::TransportOperation.new response result = ::Google::Cloud::Dlp::V2::ListTableDataProfilesResponse.decode_json response.body, ignore_unknown_fields: true yield result, operation if block_given? result end ## # Baseline implementation for the list_column_data_profiles REST call # # @param request_pb [::Google::Cloud::Dlp::V2::ListColumnDataProfilesRequest] # A request object representing the call parameters. Required. # @param options [::Gapic::CallOptions] # Overrides the default settings for this call, e.g, timeout, retries etc. Optional. # # @yield [result, operation] Access the result along with the TransportOperation object # @yieldparam result [::Google::Cloud::Dlp::V2::ListColumnDataProfilesResponse] # @yieldparam operation [::Gapic::Rest::TransportOperation] # # @return [::Google::Cloud::Dlp::V2::ListColumnDataProfilesResponse] # A result object deserialized from the server's reply def list_column_data_profiles request_pb, options = nil raise ::ArgumentError, "request must be provided" if request_pb.nil? verb, uri, query_string_params, body = ServiceStub.transcode_list_column_data_profiles_request request_pb query_string_params = if query_string_params.any? query_string_params.to_h { |p| p.split "=", 2 } else {} end response = @client_stub.make_http_request( verb, uri: uri, body: body || "", params: query_string_params, options: options ) operation = ::Gapic::Rest::TransportOperation.new response result = ::Google::Cloud::Dlp::V2::ListColumnDataProfilesResponse.decode_json response.body, ignore_unknown_fields: true yield result, operation if block_given? result end ## # Baseline implementation for the get_project_data_profile REST call # # @param request_pb [::Google::Cloud::Dlp::V2::GetProjectDataProfileRequest] # A request object representing the call parameters. Required. # @param options [::Gapic::CallOptions] # Overrides the default settings for this call, e.g, timeout, retries etc. Optional. # # @yield [result, operation] Access the result along with the TransportOperation object # @yieldparam result [::Google::Cloud::Dlp::V2::ProjectDataProfile] # @yieldparam operation [::Gapic::Rest::TransportOperation] # # @return [::Google::Cloud::Dlp::V2::ProjectDataProfile] # A result object deserialized from the server's reply def get_project_data_profile request_pb, options = nil raise ::ArgumentError, "request must be provided" if request_pb.nil? verb, uri, query_string_params, body = ServiceStub.transcode_get_project_data_profile_request request_pb query_string_params = if query_string_params.any? query_string_params.to_h { |p| p.split "=", 2 } else {} end response = @client_stub.make_http_request( verb, uri: uri, body: body || "", params: query_string_params, options: options ) operation = ::Gapic::Rest::TransportOperation.new response result = ::Google::Cloud::Dlp::V2::ProjectDataProfile.decode_json response.body, ignore_unknown_fields: true yield result, operation if block_given? result end ## # Baseline implementation for the get_table_data_profile REST call # # @param request_pb [::Google::Cloud::Dlp::V2::GetTableDataProfileRequest] # A request object representing the call parameters. Required. # @param options [::Gapic::CallOptions] # Overrides the default settings for this call, e.g, timeout, retries etc. Optional. # # @yield [result, operation] Access the result along with the TransportOperation object # @yieldparam result [::Google::Cloud::Dlp::V2::TableDataProfile] # @yieldparam operation [::Gapic::Rest::TransportOperation] # # @return [::Google::Cloud::Dlp::V2::TableDataProfile] # A result object deserialized from the server's reply def get_table_data_profile request_pb, options = nil raise ::ArgumentError, "request must be provided" if request_pb.nil? verb, uri, query_string_params, body = ServiceStub.transcode_get_table_data_profile_request request_pb query_string_params = if query_string_params.any? query_string_params.to_h { |p| p.split "=", 2 } else {} end response = @client_stub.make_http_request( verb, uri: uri, body: body || "", params: query_string_params, options: options ) operation = ::Gapic::Rest::TransportOperation.new response result = ::Google::Cloud::Dlp::V2::TableDataProfile.decode_json response.body, ignore_unknown_fields: true yield result, operation if block_given? result end ## # Baseline implementation for the get_column_data_profile REST call # # @param request_pb [::Google::Cloud::Dlp::V2::GetColumnDataProfileRequest] # A request object representing the call parameters. Required. # @param options [::Gapic::CallOptions] # Overrides the default settings for this call, e.g, timeout, retries etc. Optional. # # @yield [result, operation] Access the result along with the TransportOperation object # @yieldparam result [::Google::Cloud::Dlp::V2::ColumnDataProfile] # @yieldparam operation [::Gapic::Rest::TransportOperation] # # @return [::Google::Cloud::Dlp::V2::ColumnDataProfile] # A result object deserialized from the server's reply def get_column_data_profile request_pb, options = nil raise ::ArgumentError, "request must be provided" if request_pb.nil? verb, uri, query_string_params, body = ServiceStub.transcode_get_column_data_profile_request request_pb query_string_params = if query_string_params.any? query_string_params.to_h { |p| p.split "=", 2 } else {} end response = @client_stub.make_http_request( verb, uri: uri, body: body || "", params: query_string_params, options: options ) operation = ::Gapic::Rest::TransportOperation.new response result = ::Google::Cloud::Dlp::V2::ColumnDataProfile.decode_json response.body, ignore_unknown_fields: true yield result, operation if block_given? result end ## # Baseline implementation for the delete_table_data_profile REST call # # @param request_pb [::Google::Cloud::Dlp::V2::DeleteTableDataProfileRequest] # A request object representing the call parameters. Required. # @param options [::Gapic::CallOptions] # Overrides the default settings for this call, e.g, timeout, retries etc. Optional. # # @yield [result, operation] Access the result along with the TransportOperation object # @yieldparam result [::Google::Protobuf::Empty] # @yieldparam operation [::Gapic::Rest::TransportOperation] # # @return [::Google::Protobuf::Empty] # A result object deserialized from the server's reply def delete_table_data_profile request_pb, options = nil raise ::ArgumentError, "request must be provided" if request_pb.nil? verb, uri, query_string_params, body = ServiceStub.transcode_delete_table_data_profile_request request_pb query_string_params = if query_string_params.any? query_string_params.to_h { |p| p.split "=", 2 } else {} end response = @client_stub.make_http_request( verb, uri: uri, body: body || "", params: query_string_params, options: options ) operation = ::Gapic::Rest::TransportOperation.new response result = ::Google::Protobuf::Empty.decode_json response.body, ignore_unknown_fields: true yield result, operation if block_given? result end ## # Baseline implementation for the hybrid_inspect_dlp_job REST call # # @param request_pb [::Google::Cloud::Dlp::V2::HybridInspectDlpJobRequest] # A request object representing the call parameters. Required. # @param options [::Gapic::CallOptions] # Overrides the default settings for this call, e.g, timeout, retries etc. Optional. # # @yield [result, operation] Access the result along with the TransportOperation object # @yieldparam result [::Google::Cloud::Dlp::V2::HybridInspectResponse] # @yieldparam operation [::Gapic::Rest::TransportOperation] # # @return [::Google::Cloud::Dlp::V2::HybridInspectResponse] # A result object deserialized from the server's reply def hybrid_inspect_dlp_job request_pb, options = nil raise ::ArgumentError, "request must be provided" if request_pb.nil? verb, uri, query_string_params, body = ServiceStub.transcode_hybrid_inspect_dlp_job_request request_pb query_string_params = if query_string_params.any? query_string_params.to_h { |p| p.split "=", 2 } else {} end response = @client_stub.make_http_request( verb, uri: uri, body: body || "", params: query_string_params, options: options ) operation = ::Gapic::Rest::TransportOperation.new response result = ::Google::Cloud::Dlp::V2::HybridInspectResponse.decode_json response.body, ignore_unknown_fields: true yield result, operation if block_given? result end ## # Baseline implementation for the finish_dlp_job REST call # # @param request_pb [::Google::Cloud::Dlp::V2::FinishDlpJobRequest] # A request object representing the call parameters. Required. # @param options [::Gapic::CallOptions] # Overrides the default settings for this call, e.g, timeout, retries etc. Optional. # # @yield [result, operation] Access the result along with the TransportOperation object # @yieldparam result [::Google::Protobuf::Empty] # @yieldparam operation [::Gapic::Rest::TransportOperation] # # @return [::Google::Protobuf::Empty] # A result object deserialized from the server's reply def finish_dlp_job request_pb, options = nil raise ::ArgumentError, "request must be provided" if request_pb.nil? verb, uri, query_string_params, body = ServiceStub.transcode_finish_dlp_job_request request_pb query_string_params = if query_string_params.any? query_string_params.to_h { |p| p.split "=", 2 } else {} end response = @client_stub.make_http_request( verb, uri: uri, body: body || "", params: query_string_params, options: options ) operation = ::Gapic::Rest::TransportOperation.new response result = ::Google::Protobuf::Empty.decode_json response.body, ignore_unknown_fields: true yield result, operation if block_given? result end ## # Baseline implementation for the create_connection REST call # # @param request_pb [::Google::Cloud::Dlp::V2::CreateConnectionRequest] # A request object representing the call parameters. Required. # @param options [::Gapic::CallOptions] # Overrides the default settings for this call, e.g, timeout, retries etc. Optional. # # @yield [result, operation] Access the result along with the TransportOperation object # @yieldparam result [::Google::Cloud::Dlp::V2::Connection] # @yieldparam operation [::Gapic::Rest::TransportOperation] # # @return [::Google::Cloud::Dlp::V2::Connection] # A result object deserialized from the server's reply def create_connection request_pb, options = nil raise ::ArgumentError, "request must be provided" if request_pb.nil? verb, uri, query_string_params, body = ServiceStub.transcode_create_connection_request request_pb query_string_params = if query_string_params.any? query_string_params.to_h { |p| p.split "=", 2 } else {} end response = @client_stub.make_http_request( verb, uri: uri, body: body || "", params: query_string_params, options: options ) operation = ::Gapic::Rest::TransportOperation.new response result = ::Google::Cloud::Dlp::V2::Connection.decode_json response.body, ignore_unknown_fields: true yield result, operation if block_given? result end ## # Baseline implementation for the get_connection REST call # # @param request_pb [::Google::Cloud::Dlp::V2::GetConnectionRequest] # A request object representing the call parameters. Required. # @param options [::Gapic::CallOptions] # Overrides the default settings for this call, e.g, timeout, retries etc. Optional. # # @yield [result, operation] Access the result along with the TransportOperation object # @yieldparam result [::Google::Cloud::Dlp::V2::Connection] # @yieldparam operation [::Gapic::Rest::TransportOperation] # # @return [::Google::Cloud::Dlp::V2::Connection] # A result object deserialized from the server's reply def get_connection request_pb, options = nil raise ::ArgumentError, "request must be provided" if request_pb.nil? verb, uri, query_string_params, body = ServiceStub.transcode_get_connection_request request_pb query_string_params = if query_string_params.any? query_string_params.to_h { |p| p.split "=", 2 } else {} end response = @client_stub.make_http_request( verb, uri: uri, body: body || "", params: query_string_params, options: options ) operation = ::Gapic::Rest::TransportOperation.new response result = ::Google::Cloud::Dlp::V2::Connection.decode_json response.body, ignore_unknown_fields: true yield result, operation if block_given? result end ## # Baseline implementation for the list_connections REST call # # @param request_pb [::Google::Cloud::Dlp::V2::ListConnectionsRequest] # A request object representing the call parameters. Required. # @param options [::Gapic::CallOptions] # Overrides the default settings for this call, e.g, timeout, retries etc. Optional. # # @yield [result, operation] Access the result along with the TransportOperation object # @yieldparam result [::Google::Cloud::Dlp::V2::ListConnectionsResponse] # @yieldparam operation [::Gapic::Rest::TransportOperation] # # @return [::Google::Cloud::Dlp::V2::ListConnectionsResponse] # A result object deserialized from the server's reply def list_connections request_pb, options = nil raise ::ArgumentError, "request must be provided" if request_pb.nil? verb, uri, query_string_params, body = ServiceStub.transcode_list_connections_request request_pb query_string_params = if query_string_params.any? query_string_params.to_h { |p| p.split "=", 2 } else {} end response = @client_stub.make_http_request( verb, uri: uri, body: body || "", params: query_string_params, options: options ) operation = ::Gapic::Rest::TransportOperation.new response result = ::Google::Cloud::Dlp::V2::ListConnectionsResponse.decode_json response.body, ignore_unknown_fields: true yield result, operation if block_given? result end ## # Baseline implementation for the search_connections REST call # # @param request_pb [::Google::Cloud::Dlp::V2::SearchConnectionsRequest] # A request object representing the call parameters. Required. # @param options [::Gapic::CallOptions] # Overrides the default settings for this call, e.g, timeout, retries etc. Optional. # # @yield [result, operation] Access the result along with the TransportOperation object # @yieldparam result [::Google::Cloud::Dlp::V2::SearchConnectionsResponse] # @yieldparam operation [::Gapic::Rest::TransportOperation] # # @return [::Google::Cloud::Dlp::V2::SearchConnectionsResponse] # A result object deserialized from the server's reply def search_connections request_pb, options = nil raise ::ArgumentError, "request must be provided" if request_pb.nil? verb, uri, query_string_params, body = ServiceStub.transcode_search_connections_request request_pb query_string_params = if query_string_params.any? query_string_params.to_h { |p| p.split "=", 2 } else {} end response = @client_stub.make_http_request( verb, uri: uri, body: body || "", params: query_string_params, options: options ) operation = ::Gapic::Rest::TransportOperation.new response result = ::Google::Cloud::Dlp::V2::SearchConnectionsResponse.decode_json response.body, ignore_unknown_fields: true yield result, operation if block_given? result end ## # Baseline implementation for the delete_connection REST call # # @param request_pb [::Google::Cloud::Dlp::V2::DeleteConnectionRequest] # A request object representing the call parameters. Required. # @param options [::Gapic::CallOptions] # Overrides the default settings for this call, e.g, timeout, retries etc. Optional. # # @yield [result, operation] Access the result along with the TransportOperation object # @yieldparam result [::Google::Protobuf::Empty] # @yieldparam operation [::Gapic::Rest::TransportOperation] # # @return [::Google::Protobuf::Empty] # A result object deserialized from the server's reply def delete_connection request_pb, options = nil raise ::ArgumentError, "request must be provided" if request_pb.nil? verb, uri, query_string_params, body = ServiceStub.transcode_delete_connection_request request_pb query_string_params = if query_string_params.any? query_string_params.to_h { |p| p.split "=", 2 } else {} end response = @client_stub.make_http_request( verb, uri: uri, body: body || "", params: query_string_params, options: options ) operation = ::Gapic::Rest::TransportOperation.new response result = ::Google::Protobuf::Empty.decode_json response.body, ignore_unknown_fields: true yield result, operation if block_given? result end ## # Baseline implementation for the update_connection REST call # # @param request_pb [::Google::Cloud::Dlp::V2::UpdateConnectionRequest] # A request object representing the call parameters. Required. # @param options [::Gapic::CallOptions] # Overrides the default settings for this call, e.g, timeout, retries etc. Optional. # # @yield [result, operation] Access the result along with the TransportOperation object # @yieldparam result [::Google::Cloud::Dlp::V2::Connection] # @yieldparam operation [::Gapic::Rest::TransportOperation] # # @return [::Google::Cloud::Dlp::V2::Connection] # A result object deserialized from the server's reply def update_connection request_pb, options = nil raise ::ArgumentError, "request must be provided" if request_pb.nil? verb, uri, query_string_params, body = ServiceStub.transcode_update_connection_request request_pb query_string_params = if query_string_params.any? query_string_params.to_h { |p| p.split "=", 2 } else {} end response = @client_stub.make_http_request( verb, uri: uri, body: body || "", params: query_string_params, options: options ) operation = ::Gapic::Rest::TransportOperation.new response result = ::Google::Cloud::Dlp::V2::Connection.decode_json response.body, ignore_unknown_fields: true yield result, operation if block_given? result end ## # @private # # GRPC transcoding helper method for the inspect_content REST call # # @param request_pb [::Google::Cloud::Dlp::V2::InspectContentRequest] # A request object representing the call parameters. Required. # @return [Array(String, [String, nil], Hash{String => String})] # Uri, Body, Query string parameters def self.transcode_inspect_content_request request_pb transcoder = Gapic::Rest::GrpcTranscoder.new .with_bindings( uri_method: :post, uri_template: "/v2/{parent}/content:inspect", body: "*", matches: [ ["parent", %r{^projects/[^/]+/?$}, false] ] ) .with_bindings( uri_method: :post, uri_template: "/v2/{parent}/content:inspect", body: "*", matches: [ ["parent", %r{^projects/[^/]+/locations/[^/]+/?$}, false] ] ) transcoder.transcode request_pb end ## # @private # # GRPC transcoding helper method for the redact_image REST call # # @param request_pb [::Google::Cloud::Dlp::V2::RedactImageRequest] # A request object representing the call parameters. Required. # @return [Array(String, [String, nil], Hash{String => String})] # Uri, Body, Query string parameters def self.transcode_redact_image_request request_pb transcoder = Gapic::Rest::GrpcTranscoder.new .with_bindings( uri_method: :post, uri_template: "/v2/{parent}/image:redact", body: "*", matches: [ ["parent", %r{^projects/[^/]+/?$}, false] ] ) .with_bindings( uri_method: :post, uri_template: "/v2/{parent}/image:redact", body: "*", matches: [ ["parent", %r{^projects/[^/]+/locations/[^/]+/?$}, false] ] ) transcoder.transcode request_pb end ## # @private # # GRPC transcoding helper method for the deidentify_content REST call # # @param request_pb [::Google::Cloud::Dlp::V2::DeidentifyContentRequest] # A request object representing the call parameters. Required. # @return [Array(String, [String, nil], Hash{String => String})] # Uri, Body, Query string parameters def self.transcode_deidentify_content_request request_pb transcoder = Gapic::Rest::GrpcTranscoder.new .with_bindings( uri_method: :post, uri_template: "/v2/{parent}/content:deidentify", body: "*", matches: [ ["parent", %r{^projects/[^/]+/?$}, false] ] ) .with_bindings( uri_method: :post, uri_template: "/v2/{parent}/content:deidentify", body: "*", matches: [ ["parent", %r{^projects/[^/]+/locations/[^/]+/?$}, false] ] ) transcoder.transcode request_pb end ## # @private # # GRPC transcoding helper method for the reidentify_content REST call # # @param request_pb [::Google::Cloud::Dlp::V2::ReidentifyContentRequest] # A request object representing the call parameters. Required. # @return [Array(String, [String, nil], Hash{String => String})] # Uri, Body, Query string parameters def self.transcode_reidentify_content_request request_pb transcoder = Gapic::Rest::GrpcTranscoder.new .with_bindings( uri_method: :post, uri_template: "/v2/{parent}/content:reidentify", body: "*", matches: [ ["parent", %r{^projects/[^/]+/?$}, false] ] ) .with_bindings( uri_method: :post, uri_template: "/v2/{parent}/content:reidentify", body: "*", matches: [ ["parent", %r{^projects/[^/]+/locations/[^/]+/?$}, false] ] ) transcoder.transcode request_pb end ## # @private # # GRPC transcoding helper method for the list_info_types REST call # # @param request_pb [::Google::Cloud::Dlp::V2::ListInfoTypesRequest] # A request object representing the call parameters. Required. # @return [Array(String, [String, nil], Hash{String => String})] # Uri, Body, Query string parameters def self.transcode_list_info_types_request request_pb transcoder = Gapic::Rest::GrpcTranscoder.new .with_bindings( uri_method: :get, uri_template: "/v2/infoTypes", matches: [] ) .with_bindings( uri_method: :get, uri_template: "/v2/{parent}/infoTypes", matches: [ ["parent", %r{^locations/[^/]+/?$}, false] ] ) transcoder.transcode request_pb end ## # @private # # GRPC transcoding helper method for the create_inspect_template REST call # # @param request_pb [::Google::Cloud::Dlp::V2::CreateInspectTemplateRequest] # A request object representing the call parameters. Required. # @return [Array(String, [String, nil], Hash{String => String})] # Uri, Body, Query string parameters def self.transcode_create_inspect_template_request request_pb transcoder = Gapic::Rest::GrpcTranscoder.new .with_bindings( uri_method: :post, uri_template: "/v2/{parent}/inspectTemplates", body: "*", matches: [ ["parent", %r{^organizations/[^/]+/?$}, false] ] ) .with_bindings( uri_method: :post, uri_template: "/v2/{parent}/inspectTemplates", body: "*", matches: [ ["parent", %r{^organizations/[^/]+/locations/[^/]+/?$}, false] ] ) .with_bindings( uri_method: :post, uri_template: "/v2/{parent}/inspectTemplates", body: "*", matches: [ ["parent", %r{^projects/[^/]+/?$}, false] ] ) .with_bindings( uri_method: :post, uri_template: "/v2/{parent}/inspectTemplates", body: "*", matches: [ ["parent", %r{^projects/[^/]+/locations/[^/]+/?$}, false] ] ) transcoder.transcode request_pb end ## # @private # # GRPC transcoding helper method for the update_inspect_template REST call # # @param request_pb [::Google::Cloud::Dlp::V2::UpdateInspectTemplateRequest] # A request object representing the call parameters. Required. # @return [Array(String, [String, nil], Hash{String => String})] # Uri, Body, Query string parameters def self.transcode_update_inspect_template_request request_pb transcoder = Gapic::Rest::GrpcTranscoder.new .with_bindings( uri_method: :patch, uri_template: "/v2/{name}", body: "*", matches: [ ["name", %r{^organizations/[^/]+/inspectTemplates/[^/]+/?$}, false] ] ) .with_bindings( uri_method: :patch, uri_template: "/v2/{name}", body: "*", matches: [ ["name", %r{^organizations/[^/]+/locations/[^/]+/inspectTemplates/[^/]+/?$}, false] ] ) .with_bindings( uri_method: :patch, uri_template: "/v2/{name}", body: "*", matches: [ ["name", %r{^projects/[^/]+/inspectTemplates/[^/]+/?$}, false] ] ) .with_bindings( uri_method: :patch, uri_template: "/v2/{name}", body: "*", matches: [ ["name", %r{^projects/[^/]+/locations/[^/]+/inspectTemplates/[^/]+/?$}, false] ] ) transcoder.transcode request_pb end ## # @private # # GRPC transcoding helper method for the get_inspect_template REST call # # @param request_pb [::Google::Cloud::Dlp::V2::GetInspectTemplateRequest] # A request object representing the call parameters. Required. # @return [Array(String, [String, nil], Hash{String => String})] # Uri, Body, Query string parameters def self.transcode_get_inspect_template_request request_pb transcoder = Gapic::Rest::GrpcTranscoder.new .with_bindings( uri_method: :get, uri_template: "/v2/{name}", matches: [ ["name", %r{^organizations/[^/]+/inspectTemplates/[^/]+/?$}, false] ] ) .with_bindings( uri_method: :get, uri_template: "/v2/{name}", matches: [ ["name", %r{^organizations/[^/]+/locations/[^/]+/inspectTemplates/[^/]+/?$}, false] ] ) .with_bindings( uri_method: :get, uri_template: "/v2/{name}", matches: [ ["name", %r{^projects/[^/]+/inspectTemplates/[^/]+/?$}, false] ] ) .with_bindings( uri_method: :get, uri_template: "/v2/{name}", matches: [ ["name", %r{^projects/[^/]+/locations/[^/]+/inspectTemplates/[^/]+/?$}, false] ] ) transcoder.transcode request_pb end ## # @private # # GRPC transcoding helper method for the list_inspect_templates REST call # # @param request_pb [::Google::Cloud::Dlp::V2::ListInspectTemplatesRequest] # A request object representing the call parameters. Required. # @return [Array(String, [String, nil], Hash{String => String})] # Uri, Body, Query string parameters def self.transcode_list_inspect_templates_request request_pb transcoder = Gapic::Rest::GrpcTranscoder.new .with_bindings( uri_method: :get, uri_template: "/v2/{parent}/inspectTemplates", matches: [ ["parent", %r{^organizations/[^/]+/?$}, false] ] ) .with_bindings( uri_method: :get, uri_template: "/v2/{parent}/inspectTemplates", matches: [ ["parent", %r{^organizations/[^/]+/locations/[^/]+/?$}, false] ] ) .with_bindings( uri_method: :get, uri_template: "/v2/{parent}/inspectTemplates", matches: [ ["parent", %r{^projects/[^/]+/?$}, false] ] ) .with_bindings( uri_method: :get, uri_template: "/v2/{parent}/inspectTemplates", matches: [ ["parent", %r{^projects/[^/]+/locations/[^/]+/?$}, false] ] ) transcoder.transcode request_pb end ## # @private # # GRPC transcoding helper method for the delete_inspect_template REST call # # @param request_pb [::Google::Cloud::Dlp::V2::DeleteInspectTemplateRequest] # A request object representing the call parameters. Required. # @return [Array(String, [String, nil], Hash{String => String})] # Uri, Body, Query string parameters def self.transcode_delete_inspect_template_request request_pb transcoder = Gapic::Rest::GrpcTranscoder.new .with_bindings( uri_method: :delete, uri_template: "/v2/{name}", matches: [ ["name", %r{^organizations/[^/]+/inspectTemplates/[^/]+/?$}, false] ] ) .with_bindings( uri_method: :delete, uri_template: "/v2/{name}", matches: [ ["name", %r{^organizations/[^/]+/locations/[^/]+/inspectTemplates/[^/]+/?$}, false] ] ) .with_bindings( uri_method: :delete, uri_template: "/v2/{name}", matches: [ ["name", %r{^projects/[^/]+/inspectTemplates/[^/]+/?$}, false] ] ) .with_bindings( uri_method: :delete, uri_template: "/v2/{name}", matches: [ ["name", %r{^projects/[^/]+/locations/[^/]+/inspectTemplates/[^/]+/?$}, false] ] ) transcoder.transcode request_pb end ## # @private # # GRPC transcoding helper method for the create_deidentify_template REST call # # @param request_pb [::Google::Cloud::Dlp::V2::CreateDeidentifyTemplateRequest] # A request object representing the call parameters. Required. # @return [Array(String, [String, nil], Hash{String => String})] # Uri, Body, Query string parameters def self.transcode_create_deidentify_template_request request_pb transcoder = Gapic::Rest::GrpcTranscoder.new .with_bindings( uri_method: :post, uri_template: "/v2/{parent}/deidentifyTemplates", body: "*", matches: [ ["parent", %r{^organizations/[^/]+/?$}, false] ] ) .with_bindings( uri_method: :post, uri_template: "/v2/{parent}/deidentifyTemplates", body: "*", matches: [ ["parent", %r{^organizations/[^/]+/locations/[^/]+/?$}, false] ] ) .with_bindings( uri_method: :post, uri_template: "/v2/{parent}/deidentifyTemplates", body: "*", matches: [ ["parent", %r{^projects/[^/]+/?$}, false] ] ) .with_bindings( uri_method: :post, uri_template: "/v2/{parent}/deidentifyTemplates", body: "*", matches: [ ["parent", %r{^projects/[^/]+/locations/[^/]+/?$}, false] ] ) transcoder.transcode request_pb end ## # @private # # GRPC transcoding helper method for the update_deidentify_template REST call # # @param request_pb [::Google::Cloud::Dlp::V2::UpdateDeidentifyTemplateRequest] # A request object representing the call parameters. Required. # @return [Array(String, [String, nil], Hash{String => String})] # Uri, Body, Query string parameters def self.transcode_update_deidentify_template_request request_pb transcoder = Gapic::Rest::GrpcTranscoder.new .with_bindings( uri_method: :patch, uri_template: "/v2/{name}", body: "*", matches: [ ["name", %r{^organizations/[^/]+/deidentifyTemplates/[^/]+/?$}, false] ] ) .with_bindings( uri_method: :patch, uri_template: "/v2/{name}", body: "*", matches: [ ["name", %r{^organizations/[^/]+/locations/[^/]+/deidentifyTemplates/[^/]+/?$}, false] ] ) .with_bindings( uri_method: :patch, uri_template: "/v2/{name}", body: "*", matches: [ ["name", %r{^projects/[^/]+/deidentifyTemplates/[^/]+/?$}, false] ] ) .with_bindings( uri_method: :patch, uri_template: "/v2/{name}", body: "*", matches: [ ["name", %r{^projects/[^/]+/locations/[^/]+/deidentifyTemplates/[^/]+/?$}, false] ] ) transcoder.transcode request_pb end ## # @private # # GRPC transcoding helper method for the get_deidentify_template REST call # # @param request_pb [::Google::Cloud::Dlp::V2::GetDeidentifyTemplateRequest] # A request object representing the call parameters. Required. # @return [Array(String, [String, nil], Hash{String => String})] # Uri, Body, Query string parameters def self.transcode_get_deidentify_template_request request_pb transcoder = Gapic::Rest::GrpcTranscoder.new .with_bindings( uri_method: :get, uri_template: "/v2/{name}", matches: [ ["name", %r{^organizations/[^/]+/deidentifyTemplates/[^/]+/?$}, false] ] ) .with_bindings( uri_method: :get, uri_template: "/v2/{name}", matches: [ ["name", %r{^organizations/[^/]+/locations/[^/]+/deidentifyTemplates/[^/]+/?$}, false] ] ) .with_bindings( uri_method: :get, uri_template: "/v2/{name}", matches: [ ["name", %r{^projects/[^/]+/deidentifyTemplates/[^/]+/?$}, false] ] ) .with_bindings( uri_method: :get, uri_template: "/v2/{name}", matches: [ ["name", %r{^projects/[^/]+/locations/[^/]+/deidentifyTemplates/[^/]+/?$}, false] ] ) transcoder.transcode request_pb end ## # @private # # GRPC transcoding helper method for the list_deidentify_templates REST call # # @param request_pb [::Google::Cloud::Dlp::V2::ListDeidentifyTemplatesRequest] # A request object representing the call parameters. Required. # @return [Array(String, [String, nil], Hash{String => String})] # Uri, Body, Query string parameters def self.transcode_list_deidentify_templates_request request_pb transcoder = Gapic::Rest::GrpcTranscoder.new .with_bindings( uri_method: :get, uri_template: "/v2/{parent}/deidentifyTemplates", matches: [ ["parent", %r{^organizations/[^/]+/?$}, false] ] ) .with_bindings( uri_method: :get, uri_template: "/v2/{parent}/deidentifyTemplates", matches: [ ["parent", %r{^organizations/[^/]+/locations/[^/]+/?$}, false] ] ) .with_bindings( uri_method: :get, uri_template: "/v2/{parent}/deidentifyTemplates", matches: [ ["parent", %r{^projects/[^/]+/?$}, false] ] ) .with_bindings( uri_method: :get, uri_template: "/v2/{parent}/deidentifyTemplates", matches: [ ["parent", %r{^projects/[^/]+/locations/[^/]+/?$}, false] ] ) transcoder.transcode request_pb end ## # @private # # GRPC transcoding helper method for the delete_deidentify_template REST call # # @param request_pb [::Google::Cloud::Dlp::V2::DeleteDeidentifyTemplateRequest] # A request object representing the call parameters. Required. # @return [Array(String, [String, nil], Hash{String => String})] # Uri, Body, Query string parameters def self.transcode_delete_deidentify_template_request request_pb transcoder = Gapic::Rest::GrpcTranscoder.new .with_bindings( uri_method: :delete, uri_template: "/v2/{name}", matches: [ ["name", %r{^organizations/[^/]+/deidentifyTemplates/[^/]+/?$}, false] ] ) .with_bindings( uri_method: :delete, uri_template: "/v2/{name}", matches: [ ["name", %r{^organizations/[^/]+/locations/[^/]+/deidentifyTemplates/[^/]+/?$}, false] ] ) .with_bindings( uri_method: :delete, uri_template: "/v2/{name}", matches: [ ["name", %r{^projects/[^/]+/deidentifyTemplates/[^/]+/?$}, false] ] ) .with_bindings( uri_method: :delete, uri_template: "/v2/{name}", matches: [ ["name", %r{^projects/[^/]+/locations/[^/]+/deidentifyTemplates/[^/]+/?$}, false] ] ) transcoder.transcode request_pb end ## # @private # # GRPC transcoding helper method for the create_job_trigger REST call # # @param request_pb [::Google::Cloud::Dlp::V2::CreateJobTriggerRequest] # A request object representing the call parameters. Required. # @return [Array(String, [String, nil], Hash{String => String})] # Uri, Body, Query string parameters def self.transcode_create_job_trigger_request request_pb transcoder = Gapic::Rest::GrpcTranscoder.new .with_bindings( uri_method: :post, uri_template: "/v2/{parent}/jobTriggers", body: "*", matches: [ ["parent", %r{^projects/[^/]+/?$}, false] ] ) .with_bindings( uri_method: :post, uri_template: "/v2/{parent}/jobTriggers", body: "*", matches: [ ["parent", %r{^projects/[^/]+/locations/[^/]+/?$}, false] ] ) .with_bindings( uri_method: :post, uri_template: "/v2/{parent}/jobTriggers", body: "*", matches: [ ["parent", %r{^organizations/[^/]+/locations/[^/]+/?$}, false] ] ) transcoder.transcode request_pb end ## # @private # # GRPC transcoding helper method for the update_job_trigger REST call # # @param request_pb [::Google::Cloud::Dlp::V2::UpdateJobTriggerRequest] # A request object representing the call parameters. Required. # @return [Array(String, [String, nil], Hash{String => String})] # Uri, Body, Query string parameters def self.transcode_update_job_trigger_request request_pb transcoder = Gapic::Rest::GrpcTranscoder.new .with_bindings( uri_method: :patch, uri_template: "/v2/{name}", body: "*", matches: [ ["name", %r{^projects/[^/]+/jobTriggers/[^/]+/?$}, false] ] ) .with_bindings( uri_method: :patch, uri_template: "/v2/{name}", body: "*", matches: [ ["name", %r{^projects/[^/]+/locations/[^/]+/jobTriggers/[^/]+/?$}, false] ] ) .with_bindings( uri_method: :patch, uri_template: "/v2/{name}", body: "*", matches: [ ["name", %r{^organizations/[^/]+/locations/[^/]+/jobTriggers/[^/]+/?$}, false] ] ) transcoder.transcode request_pb end ## # @private # # GRPC transcoding helper method for the hybrid_inspect_job_trigger REST call # # @param request_pb [::Google::Cloud::Dlp::V2::HybridInspectJobTriggerRequest] # A request object representing the call parameters. Required. # @return [Array(String, [String, nil], Hash{String => String})] # Uri, Body, Query string parameters def self.transcode_hybrid_inspect_job_trigger_request request_pb transcoder = Gapic::Rest::GrpcTranscoder.new .with_bindings( uri_method: :post, uri_template: "/v2/{name}:hybridInspect", body: "*", matches: [ ["name", %r{^projects/[^/]+/locations/[^/]+/jobTriggers/[^/]+/?$}, false] ] ) transcoder.transcode request_pb end ## # @private # # GRPC transcoding helper method for the get_job_trigger REST call # # @param request_pb [::Google::Cloud::Dlp::V2::GetJobTriggerRequest] # A request object representing the call parameters. Required. # @return [Array(String, [String, nil], Hash{String => String})] # Uri, Body, Query string parameters def self.transcode_get_job_trigger_request request_pb transcoder = Gapic::Rest::GrpcTranscoder.new .with_bindings( uri_method: :get, uri_template: "/v2/{name}", matches: [ ["name", %r{^projects/[^/]+/jobTriggers/[^/]+/?$}, false] ] ) .with_bindings( uri_method: :get, uri_template: "/v2/{name}", matches: [ ["name", %r{^projects/[^/]+/locations/[^/]+/jobTriggers/[^/]+/?$}, false] ] ) .with_bindings( uri_method: :get, uri_template: "/v2/{name}", matches: [ ["name", %r{^organizations/[^/]+/locations/[^/]+/jobTriggers/[^/]+/?$}, false] ] ) transcoder.transcode request_pb end ## # @private # # GRPC transcoding helper method for the list_job_triggers REST call # # @param request_pb [::Google::Cloud::Dlp::V2::ListJobTriggersRequest] # A request object representing the call parameters. Required. # @return [Array(String, [String, nil], Hash{String => String})] # Uri, Body, Query string parameters def self.transcode_list_job_triggers_request request_pb transcoder = Gapic::Rest::GrpcTranscoder.new .with_bindings( uri_method: :get, uri_template: "/v2/{parent}/jobTriggers", matches: [ ["parent", %r{^projects/[^/]+/?$}, false] ] ) .with_bindings( uri_method: :get, uri_template: "/v2/{parent}/jobTriggers", matches: [ ["parent", %r{^projects/[^/]+/locations/[^/]+/?$}, false] ] ) .with_bindings( uri_method: :get, uri_template: "/v2/{parent}/jobTriggers", matches: [ ["parent", %r{^organizations/[^/]+/locations/[^/]+/?$}, false] ] ) transcoder.transcode request_pb end ## # @private # # GRPC transcoding helper method for the delete_job_trigger REST call # # @param request_pb [::Google::Cloud::Dlp::V2::DeleteJobTriggerRequest] # A request object representing the call parameters. Required. # @return [Array(String, [String, nil], Hash{String => String})] # Uri, Body, Query string parameters def self.transcode_delete_job_trigger_request request_pb transcoder = Gapic::Rest::GrpcTranscoder.new .with_bindings( uri_method: :delete, uri_template: "/v2/{name}", matches: [ ["name", %r{^projects/[^/]+/jobTriggers/[^/]+/?$}, false] ] ) .with_bindings( uri_method: :delete, uri_template: "/v2/{name}", matches: [ ["name", %r{^projects/[^/]+/locations/[^/]+/jobTriggers/[^/]+/?$}, false] ] ) .with_bindings( uri_method: :delete, uri_template: "/v2/{name}", matches: [ ["name", %r{^organizations/[^/]+/locations/[^/]+/jobTriggers/[^/]+/?$}, false] ] ) transcoder.transcode request_pb end ## # @private # # GRPC transcoding helper method for the activate_job_trigger REST call # # @param request_pb [::Google::Cloud::Dlp::V2::ActivateJobTriggerRequest] # A request object representing the call parameters. Required. # @return [Array(String, [String, nil], Hash{String => String})] # Uri, Body, Query string parameters def self.transcode_activate_job_trigger_request request_pb transcoder = Gapic::Rest::GrpcTranscoder.new .with_bindings( uri_method: :post, uri_template: "/v2/{name}:activate", body: "*", matches: [ ["name", %r{^projects/[^/]+/jobTriggers/[^/]+/?$}, false] ] ) .with_bindings( uri_method: :post, uri_template: "/v2/{name}:activate", body: "*", matches: [ ["name", %r{^projects/[^/]+/locations/[^/]+/jobTriggers/[^/]+/?$}, false] ] ) transcoder.transcode request_pb end ## # @private # # GRPC transcoding helper method for the create_discovery_config REST call # # @param request_pb [::Google::Cloud::Dlp::V2::CreateDiscoveryConfigRequest] # A request object representing the call parameters. Required. # @return [Array(String, [String, nil], Hash{String => String})] # Uri, Body, Query string parameters def self.transcode_create_discovery_config_request request_pb transcoder = Gapic::Rest::GrpcTranscoder.new .with_bindings( uri_method: :post, uri_template: "/v2/{parent}/discoveryConfigs", body: "*", matches: [ ["parent", %r{^projects/[^/]+/locations/[^/]+/?$}, false] ] ) .with_bindings( uri_method: :post, uri_template: "/v2/{parent}/discoveryConfigs", body: "*", matches: [ ["parent", %r{^organizations/[^/]+/locations/[^/]+/?$}, false] ] ) transcoder.transcode request_pb end ## # @private # # GRPC transcoding helper method for the update_discovery_config REST call # # @param request_pb [::Google::Cloud::Dlp::V2::UpdateDiscoveryConfigRequest] # A request object representing the call parameters. Required. # @return [Array(String, [String, nil], Hash{String => String})] # Uri, Body, Query string parameters def self.transcode_update_discovery_config_request request_pb transcoder = Gapic::Rest::GrpcTranscoder.new .with_bindings( uri_method: :patch, uri_template: "/v2/{name}", body: "*", matches: [ ["name", %r{^projects/[^/]+/locations/[^/]+/discoveryConfigs/[^/]+/?$}, false] ] ) .with_bindings( uri_method: :patch, uri_template: "/v2/{name}", body: "*", matches: [ ["name", %r{^organizations/[^/]+/locations/[^/]+/discoveryConfigs/[^/]+/?$}, false] ] ) transcoder.transcode request_pb end ## # @private # # GRPC transcoding helper method for the get_discovery_config REST call # # @param request_pb [::Google::Cloud::Dlp::V2::GetDiscoveryConfigRequest] # A request object representing the call parameters. Required. # @return [Array(String, [String, nil], Hash{String => String})] # Uri, Body, Query string parameters def self.transcode_get_discovery_config_request request_pb transcoder = Gapic::Rest::GrpcTranscoder.new .with_bindings( uri_method: :get, uri_template: "/v2/{name}", matches: [ ["name", %r{^projects/[^/]+/locations/[^/]+/discoveryConfigs/[^/]+/?$}, false] ] ) .with_bindings( uri_method: :get, uri_template: "/v2/{name}", matches: [ ["name", %r{^organizations/[^/]+/locations/[^/]+/discoveryConfigs/[^/]+/?$}, false] ] ) transcoder.transcode request_pb end ## # @private # # GRPC transcoding helper method for the list_discovery_configs REST call # # @param request_pb [::Google::Cloud::Dlp::V2::ListDiscoveryConfigsRequest] # A request object representing the call parameters. Required. # @return [Array(String, [String, nil], Hash{String => String})] # Uri, Body, Query string parameters def self.transcode_list_discovery_configs_request request_pb transcoder = Gapic::Rest::GrpcTranscoder.new .with_bindings( uri_method: :get, uri_template: "/v2/{parent}/discoveryConfigs", matches: [ ["parent", %r{^projects/[^/]+/locations/[^/]+/?$}, false] ] ) .with_bindings( uri_method: :get, uri_template: "/v2/{parent}/discoveryConfigs", matches: [ ["parent", %r{^organizations/[^/]+/locations/[^/]+/?$}, false] ] ) transcoder.transcode request_pb end ## # @private # # GRPC transcoding helper method for the delete_discovery_config REST call # # @param request_pb [::Google::Cloud::Dlp::V2::DeleteDiscoveryConfigRequest] # A request object representing the call parameters. Required. # @return [Array(String, [String, nil], Hash{String => String})] # Uri, Body, Query string parameters def self.transcode_delete_discovery_config_request request_pb transcoder = Gapic::Rest::GrpcTranscoder.new .with_bindings( uri_method: :delete, uri_template: "/v2/{name}", matches: [ ["name", %r{^projects/[^/]+/locations/[^/]+/discoveryConfigs/[^/]+/?$}, false] ] ) .with_bindings( uri_method: :delete, uri_template: "/v2/{name}", matches: [ ["name", %r{^organizations/[^/]+/locations/[^/]+/discoveryConfigs/[^/]+/?$}, false] ] ) transcoder.transcode request_pb end ## # @private # # GRPC transcoding helper method for the create_dlp_job REST call # # @param request_pb [::Google::Cloud::Dlp::V2::CreateDlpJobRequest] # A request object representing the call parameters. Required. # @return [Array(String, [String, nil], Hash{String => String})] # Uri, Body, Query string parameters def self.transcode_create_dlp_job_request request_pb transcoder = Gapic::Rest::GrpcTranscoder.new .with_bindings( uri_method: :post, uri_template: "/v2/{parent}/dlpJobs", body: "*", matches: [ ["parent", %r{^projects/[^/]+/?$}, false] ] ) .with_bindings( uri_method: :post, uri_template: "/v2/{parent}/dlpJobs", body: "*", matches: [ ["parent", %r{^projects/[^/]+/locations/[^/]+/?$}, false] ] ) transcoder.transcode request_pb end ## # @private # # GRPC transcoding helper method for the list_dlp_jobs REST call # # @param request_pb [::Google::Cloud::Dlp::V2::ListDlpJobsRequest] # A request object representing the call parameters. Required. # @return [Array(String, [String, nil], Hash{String => String})] # Uri, Body, Query string parameters def self.transcode_list_dlp_jobs_request request_pb transcoder = Gapic::Rest::GrpcTranscoder.new .with_bindings( uri_method: :get, uri_template: "/v2/{parent}/dlpJobs", matches: [ ["parent", %r{^projects/[^/]+/?$}, false] ] ) .with_bindings( uri_method: :get, uri_template: "/v2/{parent}/dlpJobs", matches: [ ["parent", %r{^projects/[^/]+/locations/[^/]+/?$}, false] ] ) .with_bindings( uri_method: :get, uri_template: "/v2/{parent}/dlpJobs", matches: [ ["parent", %r{^organizations/[^/]+/locations/[^/]+/?$}, false] ] ) transcoder.transcode request_pb end ## # @private # # GRPC transcoding helper method for the get_dlp_job REST call # # @param request_pb [::Google::Cloud::Dlp::V2::GetDlpJobRequest] # A request object representing the call parameters. Required. # @return [Array(String, [String, nil], Hash{String => String})] # Uri, Body, Query string parameters def self.transcode_get_dlp_job_request request_pb transcoder = Gapic::Rest::GrpcTranscoder.new .with_bindings( uri_method: :get, uri_template: "/v2/{name}", matches: [ ["name", %r{^projects/[^/]+/dlpJobs/[^/]+/?$}, false] ] ) .with_bindings( uri_method: :get, uri_template: "/v2/{name}", matches: [ ["name", %r{^projects/[^/]+/locations/[^/]+/dlpJobs/[^/]+/?$}, false] ] ) transcoder.transcode request_pb end ## # @private # # GRPC transcoding helper method for the delete_dlp_job REST call # # @param request_pb [::Google::Cloud::Dlp::V2::DeleteDlpJobRequest] # A request object representing the call parameters. Required. # @return [Array(String, [String, nil], Hash{String => String})] # Uri, Body, Query string parameters def self.transcode_delete_dlp_job_request request_pb transcoder = Gapic::Rest::GrpcTranscoder.new .with_bindings( uri_method: :delete, uri_template: "/v2/{name}", matches: [ ["name", %r{^projects/[^/]+/dlpJobs/[^/]+/?$}, false] ] ) .with_bindings( uri_method: :delete, uri_template: "/v2/{name}", matches: [ ["name", %r{^projects/[^/]+/locations/[^/]+/dlpJobs/[^/]+/?$}, false] ] ) transcoder.transcode request_pb end ## # @private # # GRPC transcoding helper method for the cancel_dlp_job REST call # # @param request_pb [::Google::Cloud::Dlp::V2::CancelDlpJobRequest] # A request object representing the call parameters. Required. # @return [Array(String, [String, nil], Hash{String => String})] # Uri, Body, Query string parameters def self.transcode_cancel_dlp_job_request request_pb transcoder = Gapic::Rest::GrpcTranscoder.new .with_bindings( uri_method: :post, uri_template: "/v2/{name}:cancel", body: "*", matches: [ ["name", %r{^projects/[^/]+/dlpJobs/[^/]+/?$}, false] ] ) .with_bindings( uri_method: :post, uri_template: "/v2/{name}:cancel", body: "*", matches: [ ["name", %r{^projects/[^/]+/locations/[^/]+/dlpJobs/[^/]+/?$}, false] ] ) transcoder.transcode request_pb end ## # @private # # GRPC transcoding helper method for the create_stored_info_type REST call # # @param request_pb [::Google::Cloud::Dlp::V2::CreateStoredInfoTypeRequest] # A request object representing the call parameters. Required. # @return [Array(String, [String, nil], Hash{String => String})] # Uri, Body, Query string parameters def self.transcode_create_stored_info_type_request request_pb transcoder = Gapic::Rest::GrpcTranscoder.new .with_bindings( uri_method: :post, uri_template: "/v2/{parent}/storedInfoTypes", body: "*", matches: [ ["parent", %r{^organizations/[^/]+/?$}, false] ] ) .with_bindings( uri_method: :post, uri_template: "/v2/{parent}/storedInfoTypes", body: "*", matches: [ ["parent", %r{^organizations/[^/]+/locations/[^/]+/?$}, false] ] ) .with_bindings( uri_method: :post, uri_template: "/v2/{parent}/storedInfoTypes", body: "*", matches: [ ["parent", %r{^projects/[^/]+/?$}, false] ] ) .with_bindings( uri_method: :post, uri_template: "/v2/{parent}/storedInfoTypes", body: "*", matches: [ ["parent", %r{^projects/[^/]+/locations/[^/]+/?$}, false] ] ) transcoder.transcode request_pb end ## # @private # # GRPC transcoding helper method for the update_stored_info_type REST call # # @param request_pb [::Google::Cloud::Dlp::V2::UpdateStoredInfoTypeRequest] # A request object representing the call parameters. Required. # @return [Array(String, [String, nil], Hash{String => String})] # Uri, Body, Query string parameters def self.transcode_update_stored_info_type_request request_pb transcoder = Gapic::Rest::GrpcTranscoder.new .with_bindings( uri_method: :patch, uri_template: "/v2/{name}", body: "*", matches: [ ["name", %r{^organizations/[^/]+/storedInfoTypes/[^/]+/?$}, false] ] ) .with_bindings( uri_method: :patch, uri_template: "/v2/{name}", body: "*", matches: [ ["name", %r{^organizations/[^/]+/locations/[^/]+/storedInfoTypes/[^/]+/?$}, false] ] ) .with_bindings( uri_method: :patch, uri_template: "/v2/{name}", body: "*", matches: [ ["name", %r{^projects/[^/]+/storedInfoTypes/[^/]+/?$}, false] ] ) .with_bindings( uri_method: :patch, uri_template: "/v2/{name}", body: "*", matches: [ ["name", %r{^projects/[^/]+/locations/[^/]+/storedInfoTypes/[^/]+/?$}, false] ] ) transcoder.transcode request_pb end ## # @private # # GRPC transcoding helper method for the get_stored_info_type REST call # # @param request_pb [::Google::Cloud::Dlp::V2::GetStoredInfoTypeRequest] # A request object representing the call parameters. Required. # @return [Array(String, [String, nil], Hash{String => String})] # Uri, Body, Query string parameters def self.transcode_get_stored_info_type_request request_pb transcoder = Gapic::Rest::GrpcTranscoder.new .with_bindings( uri_method: :get, uri_template: "/v2/{name}", matches: [ ["name", %r{^organizations/[^/]+/storedInfoTypes/[^/]+/?$}, false] ] ) .with_bindings( uri_method: :get, uri_template: "/v2/{name}", matches: [ ["name", %r{^organizations/[^/]+/locations/[^/]+/storedInfoTypes/[^/]+/?$}, false] ] ) .with_bindings( uri_method: :get, uri_template: "/v2/{name}", matches: [ ["name", %r{^projects/[^/]+/storedInfoTypes/[^/]+/?$}, false] ] ) .with_bindings( uri_method: :get, uri_template: "/v2/{name}", matches: [ ["name", %r{^projects/[^/]+/locations/[^/]+/storedInfoTypes/[^/]+/?$}, false] ] ) transcoder.transcode request_pb end ## # @private # # GRPC transcoding helper method for the list_stored_info_types REST call # # @param request_pb [::Google::Cloud::Dlp::V2::ListStoredInfoTypesRequest] # A request object representing the call parameters. Required. # @return [Array(String, [String, nil], Hash{String => String})] # Uri, Body, Query string parameters def self.transcode_list_stored_info_types_request request_pb transcoder = Gapic::Rest::GrpcTranscoder.new .with_bindings( uri_method: :get, uri_template: "/v2/{parent}/storedInfoTypes", matches: [ ["parent", %r{^organizations/[^/]+/?$}, false] ] ) .with_bindings( uri_method: :get, uri_template: "/v2/{parent}/storedInfoTypes", matches: [ ["parent", %r{^organizations/[^/]+/locations/[^/]+/?$}, false] ] ) .with_bindings( uri_method: :get, uri_template: "/v2/{parent}/storedInfoTypes", matches: [ ["parent", %r{^projects/[^/]+/?$}, false] ] ) .with_bindings( uri_method: :get, uri_template: "/v2/{parent}/storedInfoTypes", matches: [ ["parent", %r{^projects/[^/]+/locations/[^/]+/?$}, false] ] ) transcoder.transcode request_pb end ## # @private # # GRPC transcoding helper method for the delete_stored_info_type REST call # # @param request_pb [::Google::Cloud::Dlp::V2::DeleteStoredInfoTypeRequest] # A request object representing the call parameters. Required. # @return [Array(String, [String, nil], Hash{String => String})] # Uri, Body, Query string parameters def self.transcode_delete_stored_info_type_request request_pb transcoder = Gapic::Rest::GrpcTranscoder.new .with_bindings( uri_method: :delete, uri_template: "/v2/{name}", matches: [ ["name", %r{^organizations/[^/]+/storedInfoTypes/[^/]+/?$}, false] ] ) .with_bindings( uri_method: :delete, uri_template: "/v2/{name}", matches: [ ["name", %r{^organizations/[^/]+/locations/[^/]+/storedInfoTypes/[^/]+/?$}, false] ] ) .with_bindings( uri_method: :delete, uri_template: "/v2/{name}", matches: [ ["name", %r{^projects/[^/]+/storedInfoTypes/[^/]+/?$}, false] ] ) .with_bindings( uri_method: :delete, uri_template: "/v2/{name}", matches: [ ["name", %r{^projects/[^/]+/locations/[^/]+/storedInfoTypes/[^/]+/?$}, false] ] ) transcoder.transcode request_pb end ## # @private # # GRPC transcoding helper method for the list_project_data_profiles REST call # # @param request_pb [::Google::Cloud::Dlp::V2::ListProjectDataProfilesRequest] # A request object representing the call parameters. Required. # @return [Array(String, [String, nil], Hash{String => String})] # Uri, Body, Query string parameters def self.transcode_list_project_data_profiles_request request_pb transcoder = Gapic::Rest::GrpcTranscoder.new .with_bindings( uri_method: :get, uri_template: "/v2/{parent}/projectDataProfiles", matches: [ ["parent", %r{^organizations/[^/]+/locations/[^/]+/?$}, false] ] ) .with_bindings( uri_method: :get, uri_template: "/v2/{parent}/projectDataProfiles", matches: [ ["parent", %r{^projects/[^/]+/locations/[^/]+/?$}, false] ] ) transcoder.transcode request_pb end ## # @private # # GRPC transcoding helper method for the list_table_data_profiles REST call # # @param request_pb [::Google::Cloud::Dlp::V2::ListTableDataProfilesRequest] # A request object representing the call parameters. Required. # @return [Array(String, [String, nil], Hash{String => String})] # Uri, Body, Query string parameters def self.transcode_list_table_data_profiles_request request_pb transcoder = Gapic::Rest::GrpcTranscoder.new .with_bindings( uri_method: :get, uri_template: "/v2/{parent}/tableDataProfiles", matches: [ ["parent", %r{^organizations/[^/]+/locations/[^/]+/?$}, false] ] ) .with_bindings( uri_method: :get, uri_template: "/v2/{parent}/tableDataProfiles", matches: [ ["parent", %r{^projects/[^/]+/locations/[^/]+/?$}, false] ] ) transcoder.transcode request_pb end ## # @private # # GRPC transcoding helper method for the list_column_data_profiles REST call # # @param request_pb [::Google::Cloud::Dlp::V2::ListColumnDataProfilesRequest] # A request object representing the call parameters. Required. # @return [Array(String, [String, nil], Hash{String => String})] # Uri, Body, Query string parameters def self.transcode_list_column_data_profiles_request request_pb transcoder = Gapic::Rest::GrpcTranscoder.new .with_bindings( uri_method: :get, uri_template: "/v2/{parent}/columnDataProfiles", matches: [ ["parent", %r{^organizations/[^/]+/locations/[^/]+/?$}, false] ] ) .with_bindings( uri_method: :get, uri_template: "/v2/{parent}/columnDataProfiles", matches: [ ["parent", %r{^projects/[^/]+/locations/[^/]+/?$}, false] ] ) transcoder.transcode request_pb end ## # @private # # GRPC transcoding helper method for the get_project_data_profile REST call # # @param request_pb [::Google::Cloud::Dlp::V2::GetProjectDataProfileRequest] # A request object representing the call parameters. Required. # @return [Array(String, [String, nil], Hash{String => String})] # Uri, Body, Query string parameters def self.transcode_get_project_data_profile_request request_pb transcoder = Gapic::Rest::GrpcTranscoder.new .with_bindings( uri_method: :get, uri_template: "/v2/{name}", matches: [ ["name", %r{^organizations/[^/]+/locations/[^/]+/projectDataProfiles/[^/]+/?$}, false] ] ) .with_bindings( uri_method: :get, uri_template: "/v2/{name}", matches: [ ["name", %r{^projects/[^/]+/locations/[^/]+/projectDataProfiles/[^/]+/?$}, false] ] ) transcoder.transcode request_pb end ## # @private # # GRPC transcoding helper method for the get_table_data_profile REST call # # @param request_pb [::Google::Cloud::Dlp::V2::GetTableDataProfileRequest] # A request object representing the call parameters. Required. # @return [Array(String, [String, nil], Hash{String => String})] # Uri, Body, Query string parameters def self.transcode_get_table_data_profile_request request_pb transcoder = Gapic::Rest::GrpcTranscoder.new .with_bindings( uri_method: :get, uri_template: "/v2/{name}", matches: [ ["name", %r{^organizations/[^/]+/locations/[^/]+/tableDataProfiles/[^/]+/?$}, false] ] ) .with_bindings( uri_method: :get, uri_template: "/v2/{name}", matches: [ ["name", %r{^projects/[^/]+/locations/[^/]+/tableDataProfiles/[^/]+/?$}, false] ] ) transcoder.transcode request_pb end ## # @private # # GRPC transcoding helper method for the get_column_data_profile REST call # # @param request_pb [::Google::Cloud::Dlp::V2::GetColumnDataProfileRequest] # A request object representing the call parameters. Required. # @return [Array(String, [String, nil], Hash{String => String})] # Uri, Body, Query string parameters def self.transcode_get_column_data_profile_request request_pb transcoder = Gapic::Rest::GrpcTranscoder.new .with_bindings( uri_method: :get, uri_template: "/v2/{name}", matches: [ ["name", %r{^organizations/[^/]+/locations/[^/]+/columnDataProfiles/[^/]+/?$}, false] ] ) .with_bindings( uri_method: :get, uri_template: "/v2/{name}", matches: [ ["name", %r{^projects/[^/]+/locations/[^/]+/columnDataProfiles/[^/]+/?$}, false] ] ) transcoder.transcode request_pb end ## # @private # # GRPC transcoding helper method for the delete_table_data_profile REST call # # @param request_pb [::Google::Cloud::Dlp::V2::DeleteTableDataProfileRequest] # A request object representing the call parameters. Required. # @return [Array(String, [String, nil], Hash{String => String})] # Uri, Body, Query string parameters def self.transcode_delete_table_data_profile_request request_pb transcoder = Gapic::Rest::GrpcTranscoder.new .with_bindings( uri_method: :delete, uri_template: "/v2/{name}", matches: [ ["name", %r{^organizations/[^/]+/locations/[^/]+/tableDataProfiles/[^/]+/?$}, false] ] ) .with_bindings( uri_method: :delete, uri_template: "/v2/{name}", matches: [ ["name", %r{^projects/[^/]+/locations/[^/]+/tableDataProfiles/[^/]+/?$}, false] ] ) transcoder.transcode request_pb end ## # @private # # GRPC transcoding helper method for the hybrid_inspect_dlp_job REST call # # @param request_pb [::Google::Cloud::Dlp::V2::HybridInspectDlpJobRequest] # A request object representing the call parameters. Required. # @return [Array(String, [String, nil], Hash{String => String})] # Uri, Body, Query string parameters def self.transcode_hybrid_inspect_dlp_job_request request_pb transcoder = Gapic::Rest::GrpcTranscoder.new .with_bindings( uri_method: :post, uri_template: "/v2/{name}:hybridInspect", body: "*", matches: [ ["name", %r{^projects/[^/]+/locations/[^/]+/dlpJobs/[^/]+/?$}, false] ] ) transcoder.transcode request_pb end ## # @private # # GRPC transcoding helper method for the finish_dlp_job REST call # # @param request_pb [::Google::Cloud::Dlp::V2::FinishDlpJobRequest] # A request object representing the call parameters. Required. # @return [Array(String, [String, nil], Hash{String => String})] # Uri, Body, Query string parameters def self.transcode_finish_dlp_job_request request_pb transcoder = Gapic::Rest::GrpcTranscoder.new .with_bindings( uri_method: :post, uri_template: "/v2/{name}:finish", body: "*", matches: [ ["name", %r{^projects/[^/]+/locations/[^/]+/dlpJobs/[^/]+/?$}, false] ] ) transcoder.transcode request_pb end ## # @private # # GRPC transcoding helper method for the create_connection REST call # # @param request_pb [::Google::Cloud::Dlp::V2::CreateConnectionRequest] # A request object representing the call parameters. Required. # @return [Array(String, [String, nil], Hash{String => String})] # Uri, Body, Query string parameters def self.transcode_create_connection_request request_pb transcoder = Gapic::Rest::GrpcTranscoder.new .with_bindings( uri_method: :post, uri_template: "/v2/{parent}/connections", body: "*", matches: [ ["parent", %r{^projects/[^/]+/locations/[^/]+/?$}, false] ] ) transcoder.transcode request_pb end ## # @private # # GRPC transcoding helper method for the get_connection REST call # # @param request_pb [::Google::Cloud::Dlp::V2::GetConnectionRequest] # A request object representing the call parameters. Required. # @return [Array(String, [String, nil], Hash{String => String})] # Uri, Body, Query string parameters def self.transcode_get_connection_request request_pb transcoder = Gapic::Rest::GrpcTranscoder.new .with_bindings( uri_method: :get, uri_template: "/v2/{name}", matches: [ ["name", %r{^projects/[^/]+/locations/[^/]+/connections/[^/]+/?$}, false] ] ) transcoder.transcode request_pb end ## # @private # # GRPC transcoding helper method for the list_connections REST call # # @param request_pb [::Google::Cloud::Dlp::V2::ListConnectionsRequest] # A request object representing the call parameters. Required. # @return [Array(String, [String, nil], Hash{String => String})] # Uri, Body, Query string parameters def self.transcode_list_connections_request request_pb transcoder = Gapic::Rest::GrpcTranscoder.new .with_bindings( uri_method: :get, uri_template: "/v2/{parent}/connections", matches: [ ["parent", %r{^projects/[^/]+/locations/[^/]+/?$}, false] ] ) transcoder.transcode request_pb end ## # @private # # GRPC transcoding helper method for the search_connections REST call # # @param request_pb [::Google::Cloud::Dlp::V2::SearchConnectionsRequest] # A request object representing the call parameters. Required. # @return [Array(String, [String, nil], Hash{String => String})] # Uri, Body, Query string parameters def self.transcode_search_connections_request request_pb transcoder = Gapic::Rest::GrpcTranscoder.new .with_bindings( uri_method: :get, uri_template: "/v2/{parent}/connections:search", matches: [ ["parent", %r{^projects/[^/]+/locations/[^/]+/?$}, false] ] ) .with_bindings( uri_method: :get, uri_template: "/v2/{parent}/connections:search", matches: [ ["parent", %r{^organizations/[^/]+/locations/[^/]+/?$}, false] ] ) transcoder.transcode request_pb end ## # @private # # GRPC transcoding helper method for the delete_connection REST call # # @param request_pb [::Google::Cloud::Dlp::V2::DeleteConnectionRequest] # A request object representing the call parameters. Required. # @return [Array(String, [String, nil], Hash{String => String})] # Uri, Body, Query string parameters def self.transcode_delete_connection_request request_pb transcoder = Gapic::Rest::GrpcTranscoder.new .with_bindings( uri_method: :delete, uri_template: "/v2/{name}", matches: [ ["name", %r{^projects/[^/]+/locations/[^/]+/connections/[^/]+/?$}, false] ] ) transcoder.transcode request_pb end ## # @private # # GRPC transcoding helper method for the update_connection REST call # # @param request_pb [::Google::Cloud::Dlp::V2::UpdateConnectionRequest] # A request object representing the call parameters. Required. # @return [Array(String, [String, nil], Hash{String => String})] # Uri, Body, Query string parameters def self.transcode_update_connection_request request_pb transcoder = Gapic::Rest::GrpcTranscoder.new .with_bindings( uri_method: :patch, uri_template: "/v2/{name}", body: "*", matches: [ ["name", %r{^projects/[^/]+/locations/[^/]+/connections/[^/]+/?$}, false] ] ) transcoder.transcode request_pb end end end end end end end end