class Google::Apis::DlpV2::DLPService

Cloud Data Loss Prevention (DLP) API

Provides methods for detection, risk analysis, and de-identification of

privacy-sensitive fragments in text, images, and Google Cloud Platform storage
repositories.

@example

require 'google/apis/dlp_v2'

Dlp = Google::Apis::DlpV2 # Alias the module
service = Dlp::DLPService.new

@see cloud.google.com/dlp/docs/

Attributes

key[RW]

@return [String]

API key. Your API key identifies your project and provides you with API access,
quota, and reports. Required unless you provide an OAuth 2.0 token.
quota_user[RW]

@return [String]

Available to use for quota purposes for server-side applications. Can be any
arbitrary string assigned to a user, but should not exceed 40 characters.

Public Class Methods

new() click to toggle source
Calls superclass method
# File lib/google/apis/dlp_v2/service.rb, line 47
def initialize
  super('https://dlp.googleapis.com/', '',
        client_name: 'google-apis-dlp_v2',
        client_version: Google::Apis::DlpV2::GEM_VERSION)
  @batch_path = 'batch'
end

Public Instance Methods

activate_project_job_trigger(name, google_privacy_dlp_v2_activate_job_trigger_request_object = nil, fields: nil, quota_user: nil, options: nil, &block) click to toggle source

Activate a job trigger. Causes the immediate execute of a trigger instead of waiting on the trigger event to occur. @param [String] name

Required. Resource name of the trigger to activate, for example `projects/dlp-
test-project/jobTriggers/53234423`.

@param [Google::Apis::DlpV2::GooglePrivacyDlpV2ActivateJobTriggerRequest] google_privacy_dlp_v2_activate_job_trigger_request_object @param [String] fields

Selector specifying which fields to include in a partial response.

@param [String] quota_user

Available to use for quota purposes for server-side applications. Can be any
arbitrary string assigned to a user, but should not exceed 40 characters.

@param [Google::Apis::RequestOptions] options

Request-specific options

@yield [result, err] Result & error if block supplied @yieldparam result [Google::Apis::DlpV2::GooglePrivacyDlpV2DlpJob] parsed result object @yieldparam err [StandardError] error object if request failed

@return [Google::Apis::DlpV2::GooglePrivacyDlpV2DlpJob]

@raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification @raise [Google::Apis::AuthorizationError] Authorization is required

# File lib/google/apis/dlp_v2/service.rb, line 2523
def activate_project_job_trigger(name, google_privacy_dlp_v2_activate_job_trigger_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
  command = make_simple_command(:post, 'v2/{+name}:activate', options)
  command.request_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2ActivateJobTriggerRequest::Representation
  command.request_object = google_privacy_dlp_v2_activate_job_trigger_request_object
  command.response_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2DlpJob::Representation
  command.response_class = Google::Apis::DlpV2::GooglePrivacyDlpV2DlpJob
  command.params['name'] = name unless name.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  execute_or_queue_command(command, &block)
end
activate_project_location_job_trigger(name, google_privacy_dlp_v2_activate_job_trigger_request_object = nil, fields: nil, quota_user: nil, options: nil, &block) click to toggle source

Activate a job trigger. Causes the immediate execute of a trigger instead of waiting on the trigger event to occur. @param [String] name

Required. Resource name of the trigger to activate, for example `projects/dlp-
test-project/jobTriggers/53234423`.

@param [Google::Apis::DlpV2::GooglePrivacyDlpV2ActivateJobTriggerRequest] google_privacy_dlp_v2_activate_job_trigger_request_object @param [String] fields

Selector specifying which fields to include in a partial response.

@param [String] quota_user

Available to use for quota purposes for server-side applications. Can be any
arbitrary string assigned to a user, but should not exceed 40 characters.

@param [Google::Apis::RequestOptions] options

Request-specific options

@yield [result, err] Result & error if block supplied @yieldparam result [Google::Apis::DlpV2::GooglePrivacyDlpV2DlpJob] parsed result object @yieldparam err [StandardError] error object if request failed

@return [Google::Apis::DlpV2::GooglePrivacyDlpV2DlpJob]

@raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification @raise [Google::Apis::AuthorizationError] Authorization is required

# File lib/google/apis/dlp_v2/service.rb, line 3662
def activate_project_location_job_trigger(name, google_privacy_dlp_v2_activate_job_trigger_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
  command = make_simple_command(:post, 'v2/{+name}:activate', options)
  command.request_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2ActivateJobTriggerRequest::Representation
  command.request_object = google_privacy_dlp_v2_activate_job_trigger_request_object
  command.response_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2DlpJob::Representation
  command.response_class = Google::Apis::DlpV2::GooglePrivacyDlpV2DlpJob
  command.params['name'] = name unless name.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  execute_or_queue_command(command, &block)
end
cancel_project_dlp_job(name, google_privacy_dlp_v2_cancel_dlp_job_request_object = nil, fields: nil, quota_user: nil, options: nil, &block) click to toggle source

Starts asynchronous cancellation on a long-running DlpJob. The server makes a best effort to cancel the DlpJob, but success is not guaranteed. See https:// cloud.google.com/dlp/docs/inspecting-storage and cloud.google.com/dlp/ docs/compute-risk-analysis to learn more. @param [String] name

Required. The name of the DlpJob resource to be cancelled.

@param [Google::Apis::DlpV2::GooglePrivacyDlpV2CancelDlpJobRequest] google_privacy_dlp_v2_cancel_dlp_job_request_object @param [String] fields

Selector specifying which fields to include in a partial response.

@param [String] quota_user

Available to use for quota purposes for server-side applications. Can be any
arbitrary string assigned to a user, but should not exceed 40 characters.

@param [Google::Apis::RequestOptions] options

Request-specific options

@yield [result, err] Result & error if block supplied @yieldparam result [Google::Apis::DlpV2::GoogleProtobufEmpty] parsed result object @yieldparam err [StandardError] error object if request failed

@return [Google::Apis::DlpV2::GoogleProtobufEmpty]

@raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification @raise [Google::Apis::AuthorizationError] Authorization is required

# File lib/google/apis/dlp_v2/service.rb, line 2048
def cancel_project_dlp_job(name, google_privacy_dlp_v2_cancel_dlp_job_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
  command = make_simple_command(:post, 'v2/{+name}:cancel', options)
  command.request_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2CancelDlpJobRequest::Representation
  command.request_object = google_privacy_dlp_v2_cancel_dlp_job_request_object
  command.response_representation = Google::Apis::DlpV2::GoogleProtobufEmpty::Representation
  command.response_class = Google::Apis::DlpV2::GoogleProtobufEmpty
  command.params['name'] = name unless name.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  execute_or_queue_command(command, &block)
end
cancel_project_location_dlp_job(name, google_privacy_dlp_v2_cancel_dlp_job_request_object = nil, fields: nil, quota_user: nil, options: nil, &block) click to toggle source

Starts asynchronous cancellation on a long-running DlpJob. The server makes a best effort to cancel the DlpJob, but success is not guaranteed. See https:// cloud.google.com/dlp/docs/inspecting-storage and cloud.google.com/dlp/ docs/compute-risk-analysis to learn more. @param [String] name

Required. The name of the DlpJob resource to be cancelled.

@param [Google::Apis::DlpV2::GooglePrivacyDlpV2CancelDlpJobRequest] google_privacy_dlp_v2_cancel_dlp_job_request_object @param [String] fields

Selector specifying which fields to include in a partial response.

@param [String] quota_user

Available to use for quota purposes for server-side applications. Can be any
arbitrary string assigned to a user, but should not exceed 40 characters.

@param [Google::Apis::RequestOptions] options

Request-specific options

@yield [result, err] Result & error if block supplied @yieldparam result [Google::Apis::DlpV2::GoogleProtobufEmpty] parsed result object @yieldparam err [StandardError] error object if request failed

@return [Google::Apis::DlpV2::GoogleProtobufEmpty]

@raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification @raise [Google::Apis::AuthorizationError] Authorization is required

# File lib/google/apis/dlp_v2/service.rb, line 3118
def cancel_project_location_dlp_job(name, google_privacy_dlp_v2_cancel_dlp_job_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
  command = make_simple_command(:post, 'v2/{+name}:cancel', options)
  command.request_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2CancelDlpJobRequest::Representation
  command.request_object = google_privacy_dlp_v2_cancel_dlp_job_request_object
  command.response_representation = Google::Apis::DlpV2::GoogleProtobufEmpty::Representation
  command.response_class = Google::Apis::DlpV2::GoogleProtobufEmpty
  command.params['name'] = name unless name.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  execute_or_queue_command(command, &block)
end
create_organization_deidentify_template(parent, google_privacy_dlp_v2_create_deidentify_template_request_object = nil, fields: nil, quota_user: nil, options: nil, &block) click to toggle source

Creates a DeidentifyTemplate for re-using frequently used configuration for de- identifying content, images, and storage. See cloud.google.com/dlp/ docs/creating-templates-deid to learn more. @param [String] parent

Required. Parent resource name. The format of this value varies depending on
the scope of the request (project or organization) and whether you have [
specified a processing location](https://cloud.google.com/dlp/docs/specifying-
location): + Projects scope, location specified: `projects/`PROJECT_ID`/
locations/`LOCATION_ID + Projects scope, no location specified (defaults to
global): `projects/`PROJECT_ID + Organizations scope, location specified: `
organizations/`ORG_ID`/locations/`LOCATION_ID + Organizations scope, no
location specified (defaults to global): `organizations/`ORG_ID The following
example `parent` string specifies a parent project with the identifier `
example-project`, and specifies the `europe-west3` location for processing
data: parent=projects/example-project/locations/europe-west3

@param [Google::Apis::DlpV2::GooglePrivacyDlpV2CreateDeidentifyTemplateRequest] google_privacy_dlp_v2_create_deidentify_template_request_object @param [String] fields

Selector specifying which fields to include in a partial response.

@param [String] quota_user

Available to use for quota purposes for server-side applications. Can be any
arbitrary string assigned to a user, but should not exceed 40 characters.

@param [Google::Apis::RequestOptions] options

Request-specific options

@yield [result, err] Result & error if block supplied @yieldparam result [Google::Apis::DlpV2::GooglePrivacyDlpV2DeidentifyTemplate] parsed result object @yieldparam err [StandardError] error object if request failed

@return [Google::Apis::DlpV2::GooglePrivacyDlpV2DeidentifyTemplate]

@raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification @raise [Google::Apis::AuthorizationError] Authorization is required

# File lib/google/apis/dlp_v2/service.rb, line 173
def create_organization_deidentify_template(parent, google_privacy_dlp_v2_create_deidentify_template_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
  command = make_simple_command(:post, 'v2/{+parent}/deidentifyTemplates', options)
  command.request_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2CreateDeidentifyTemplateRequest::Representation
  command.request_object = google_privacy_dlp_v2_create_deidentify_template_request_object
  command.response_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2DeidentifyTemplate::Representation
  command.response_class = Google::Apis::DlpV2::GooglePrivacyDlpV2DeidentifyTemplate
  command.params['parent'] = parent unless parent.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  execute_or_queue_command(command, &block)
end
create_organization_inspect_template(parent, google_privacy_dlp_v2_create_inspect_template_request_object = nil, fields: nil, quota_user: nil, options: nil, &block) click to toggle source

Creates an InspectTemplate for re-using frequently used configuration for inspecting content, images, and storage. See cloud.google.com/dlp/docs/ creating-templates to learn more. @param [String] parent

Required. Parent resource name. The format of this value varies depending on
the scope of the request (project or organization) and whether you have [
specified a processing location](https://cloud.google.com/dlp/docs/specifying-
location): + Projects scope, location specified: `projects/`PROJECT_ID`/
locations/`LOCATION_ID + Projects scope, no location specified (defaults to
global): `projects/`PROJECT_ID + Organizations scope, location specified: `
organizations/`ORG_ID`/locations/`LOCATION_ID + Organizations scope, no
location specified (defaults to global): `organizations/`ORG_ID The following
example `parent` string specifies a parent project with the identifier `
example-project`, and specifies the `europe-west3` location for processing
data: parent=projects/example-project/locations/europe-west3

@param [Google::Apis::DlpV2::GooglePrivacyDlpV2CreateInspectTemplateRequest] google_privacy_dlp_v2_create_inspect_template_request_object @param [String] fields

Selector specifying which fields to include in a partial response.

@param [String] quota_user

Available to use for quota purposes for server-side applications. Can be any
arbitrary string assigned to a user, but should not exceed 40 characters.

@param [Google::Apis::RequestOptions] options

Request-specific options

@yield [result, err] Result & error if block supplied @yieldparam result [Google::Apis::DlpV2::GooglePrivacyDlpV2InspectTemplate] parsed result object @yieldparam err [StandardError] error object if request failed

@return [Google::Apis::DlpV2::GooglePrivacyDlpV2InspectTemplate]

@raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification @raise [Google::Apis::AuthorizationError] Authorization is required

# File lib/google/apis/dlp_v2/service.rb, line 381
def create_organization_inspect_template(parent, google_privacy_dlp_v2_create_inspect_template_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
  command = make_simple_command(:post, 'v2/{+parent}/inspectTemplates', options)
  command.request_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2CreateInspectTemplateRequest::Representation
  command.request_object = google_privacy_dlp_v2_create_inspect_template_request_object
  command.response_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2InspectTemplate::Representation
  command.response_class = Google::Apis::DlpV2::GooglePrivacyDlpV2InspectTemplate
  command.params['parent'] = parent unless parent.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  execute_or_queue_command(command, &block)
end
create_organization_location_deidentify_template(parent, google_privacy_dlp_v2_create_deidentify_template_request_object = nil, fields: nil, quota_user: nil, options: nil, &block) click to toggle source

Creates a DeidentifyTemplate for re-using frequently used configuration for de- identifying content, images, and storage. See cloud.google.com/dlp/ docs/creating-templates-deid to learn more. @param [String] parent

Required. Parent resource name. The format of this value varies depending on
the scope of the request (project or organization) and whether you have [
specified a processing location](https://cloud.google.com/dlp/docs/specifying-
location): + Projects scope, location specified: `projects/`PROJECT_ID`/
locations/`LOCATION_ID + Projects scope, no location specified (defaults to
global): `projects/`PROJECT_ID + Organizations scope, location specified: `
organizations/`ORG_ID`/locations/`LOCATION_ID + Organizations scope, no
location specified (defaults to global): `organizations/`ORG_ID The following
example `parent` string specifies a parent project with the identifier `
example-project`, and specifies the `europe-west3` location for processing
data: parent=projects/example-project/locations/europe-west3

@param [Google::Apis::DlpV2::GooglePrivacyDlpV2CreateDeidentifyTemplateRequest] google_privacy_dlp_v2_create_deidentify_template_request_object @param [String] fields

Selector specifying which fields to include in a partial response.

@param [String] quota_user

Available to use for quota purposes for server-side applications. Can be any
arbitrary string assigned to a user, but should not exceed 40 characters.

@param [Google::Apis::RequestOptions] options

Request-specific options

@yield [result, err] Result & error if block supplied @yieldparam result [Google::Apis::DlpV2::GooglePrivacyDlpV2DeidentifyTemplate] parsed result object @yieldparam err [StandardError] error object if request failed

@return [Google::Apis::DlpV2::GooglePrivacyDlpV2DeidentifyTemplate]

@raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification @raise [Google::Apis::AuthorizationError] Authorization is required

# File lib/google/apis/dlp_v2/service.rb, line 589
def create_organization_location_deidentify_template(parent, google_privacy_dlp_v2_create_deidentify_template_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
  command = make_simple_command(:post, 'v2/{+parent}/deidentifyTemplates', options)
  command.request_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2CreateDeidentifyTemplateRequest::Representation
  command.request_object = google_privacy_dlp_v2_create_deidentify_template_request_object
  command.response_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2DeidentifyTemplate::Representation
  command.response_class = Google::Apis::DlpV2::GooglePrivacyDlpV2DeidentifyTemplate
  command.params['parent'] = parent unless parent.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  execute_or_queue_command(command, &block)
end
create_organization_location_inspect_template(parent, google_privacy_dlp_v2_create_inspect_template_request_object = nil, fields: nil, quota_user: nil, options: nil, &block) click to toggle source

Creates an InspectTemplate for re-using frequently used configuration for inspecting content, images, and storage. See cloud.google.com/dlp/docs/ creating-templates to learn more. @param [String] parent

Required. Parent resource name. The format of this value varies depending on
the scope of the request (project or organization) and whether you have [
specified a processing location](https://cloud.google.com/dlp/docs/specifying-
location): + Projects scope, location specified: `projects/`PROJECT_ID`/
locations/`LOCATION_ID + Projects scope, no location specified (defaults to
global): `projects/`PROJECT_ID + Organizations scope, location specified: `
organizations/`ORG_ID`/locations/`LOCATION_ID + Organizations scope, no
location specified (defaults to global): `organizations/`ORG_ID The following
example `parent` string specifies a parent project with the identifier `
example-project`, and specifies the `europe-west3` location for processing
data: parent=projects/example-project/locations/europe-west3

@param [Google::Apis::DlpV2::GooglePrivacyDlpV2CreateInspectTemplateRequest] google_privacy_dlp_v2_create_inspect_template_request_object @param [String] fields

Selector specifying which fields to include in a partial response.

@param [String] quota_user

Available to use for quota purposes for server-side applications. Can be any
arbitrary string assigned to a user, but should not exceed 40 characters.

@param [Google::Apis::RequestOptions] options

Request-specific options

@yield [result, err] Result & error if block supplied @yieldparam result [Google::Apis::DlpV2::GooglePrivacyDlpV2InspectTemplate] parsed result object @yieldparam err [StandardError] error object if request failed

@return [Google::Apis::DlpV2::GooglePrivacyDlpV2InspectTemplate]

@raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification @raise [Google::Apis::AuthorizationError] Authorization is required

# File lib/google/apis/dlp_v2/service.rb, line 874
def create_organization_location_inspect_template(parent, google_privacy_dlp_v2_create_inspect_template_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
  command = make_simple_command(:post, 'v2/{+parent}/inspectTemplates', options)
  command.request_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2CreateInspectTemplateRequest::Representation
  command.request_object = google_privacy_dlp_v2_create_inspect_template_request_object
  command.response_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2InspectTemplate::Representation
  command.response_class = Google::Apis::DlpV2::GooglePrivacyDlpV2InspectTemplate
  command.params['parent'] = parent unless parent.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  execute_or_queue_command(command, &block)
end
create_organization_location_job_trigger(parent, google_privacy_dlp_v2_create_job_trigger_request_object = nil, fields: nil, quota_user: nil, options: nil, &block) click to toggle source

Creates a job trigger to run DLP actions such as scanning storage for sensitive information on a set schedule. See cloud.google.com/dlp/docs/ creating-job-triggers to learn more. @param [String] parent

Required. Parent resource name. The format of this value varies depending on
whether you have [specified a processing location](https://cloud.google.com/
dlp/docs/specifying-location): + Projects scope, location specified: `projects/
`PROJECT_ID`/locations/`LOCATION_ID + Projects scope, no location specified (
defaults to global): `projects/`PROJECT_ID The following example `parent`
string specifies a parent project with the identifier `example-project`, and
specifies the `europe-west3` location for processing data: parent=projects/
example-project/locations/europe-west3

@param [Google::Apis::DlpV2::GooglePrivacyDlpV2CreateJobTriggerRequest] google_privacy_dlp_v2_create_job_trigger_request_object @param [String] fields

Selector specifying which fields to include in a partial response.

@param [String] quota_user

Available to use for quota purposes for server-side applications. Can be any
arbitrary string assigned to a user, but should not exceed 40 characters.

@param [Google::Apis::RequestOptions] options

Request-specific options

@yield [result, err] Result & error if block supplied @yieldparam result [Google::Apis::DlpV2::GooglePrivacyDlpV2JobTrigger] parsed result object @yieldparam err [StandardError] error object if request failed

@return [Google::Apis::DlpV2::GooglePrivacyDlpV2JobTrigger]

@raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification @raise [Google::Apis::AuthorizationError] Authorization is required

# File lib/google/apis/dlp_v2/service.rb, line 1079
def create_organization_location_job_trigger(parent, google_privacy_dlp_v2_create_job_trigger_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
  command = make_simple_command(:post, 'v2/{+parent}/jobTriggers', options)
  command.request_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2CreateJobTriggerRequest::Representation
  command.request_object = google_privacy_dlp_v2_create_job_trigger_request_object
  command.response_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2JobTrigger::Representation
  command.response_class = Google::Apis::DlpV2::GooglePrivacyDlpV2JobTrigger
  command.params['parent'] = parent unless parent.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  execute_or_queue_command(command, &block)
end
create_organization_location_stored_info_type(parent, google_privacy_dlp_v2_create_stored_info_type_request_object = nil, fields: nil, quota_user: nil, options: nil, &block) click to toggle source

Creates a pre-built stored infoType to be used for inspection. See https:// cloud.google.com/dlp/docs/creating-stored-infotypes to learn more. @param [String] parent

Required. Parent resource name. The format of this value varies depending on
the scope of the request (project or organization) and whether you have [
specified a processing location](https://cloud.google.com/dlp/docs/specifying-
location): + Projects scope, location specified: `projects/`PROJECT_ID`/
locations/`LOCATION_ID + Projects scope, no location specified (defaults to
global): `projects/`PROJECT_ID + Organizations scope, location specified: `
organizations/`ORG_ID`/locations/`LOCATION_ID + Organizations scope, no
location specified (defaults to global): `organizations/`ORG_ID The following
example `parent` string specifies a parent project with the identifier `
example-project`, and specifies the `europe-west3` location for processing
data: parent=projects/example-project/locations/europe-west3

@param [Google::Apis::DlpV2::GooglePrivacyDlpV2CreateStoredInfoTypeRequest] google_privacy_dlp_v2_create_stored_info_type_request_object @param [String] fields

Selector specifying which fields to include in a partial response.

@param [String] quota_user

Available to use for quota purposes for server-side applications. Can be any
arbitrary string assigned to a user, but should not exceed 40 characters.

@param [Google::Apis::RequestOptions] options

Request-specific options

@yield [result, err] Result & error if block supplied @yieldparam result [Google::Apis::DlpV2::GooglePrivacyDlpV2StoredInfoType] parsed result object @yieldparam err [StandardError] error object if request failed

@return [Google::Apis::DlpV2::GooglePrivacyDlpV2StoredInfoType]

@raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification @raise [Google::Apis::AuthorizationError] Authorization is required

# File lib/google/apis/dlp_v2/service.rb, line 1300
def create_organization_location_stored_info_type(parent, google_privacy_dlp_v2_create_stored_info_type_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
  command = make_simple_command(:post, 'v2/{+parent}/storedInfoTypes', options)
  command.request_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2CreateStoredInfoTypeRequest::Representation
  command.request_object = google_privacy_dlp_v2_create_stored_info_type_request_object
  command.response_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2StoredInfoType::Representation
  command.response_class = Google::Apis::DlpV2::GooglePrivacyDlpV2StoredInfoType
  command.params['parent'] = parent unless parent.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  execute_or_queue_command(command, &block)
end
create_organization_stored_info_type(parent, google_privacy_dlp_v2_create_stored_info_type_request_object = nil, fields: nil, quota_user: nil, options: nil, &block) click to toggle source

Creates a pre-built stored infoType to be used for inspection. See https:// cloud.google.com/dlp/docs/creating-stored-infotypes to learn more. @param [String] parent

Required. Parent resource name. The format of this value varies depending on
the scope of the request (project or organization) and whether you have [
specified a processing location](https://cloud.google.com/dlp/docs/specifying-
location): + Projects scope, location specified: `projects/`PROJECT_ID`/
locations/`LOCATION_ID + Projects scope, no location specified (defaults to
global): `projects/`PROJECT_ID + Organizations scope, location specified: `
organizations/`ORG_ID`/locations/`LOCATION_ID + Organizations scope, no
location specified (defaults to global): `organizations/`ORG_ID The following
example `parent` string specifies a parent project with the identifier `
example-project`, and specifies the `europe-west3` location for processing
data: parent=projects/example-project/locations/europe-west3

@param [Google::Apis::DlpV2::GooglePrivacyDlpV2CreateStoredInfoTypeRequest] google_privacy_dlp_v2_create_stored_info_type_request_object @param [String] fields

Selector specifying which fields to include in a partial response.

@param [String] quota_user

Available to use for quota purposes for server-side applications. Can be any
arbitrary string assigned to a user, but should not exceed 40 characters.

@param [Google::Apis::RequestOptions] options

Request-specific options

@yield [result, err] Result & error if block supplied @yieldparam result [Google::Apis::DlpV2::GooglePrivacyDlpV2StoredInfoType] parsed result object @yieldparam err [StandardError] error object if request failed

@return [Google::Apis::DlpV2::GooglePrivacyDlpV2StoredInfoType]

@raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification @raise [Google::Apis::AuthorizationError] Authorization is required

# File lib/google/apis/dlp_v2/service.rb, line 1508
def create_organization_stored_info_type(parent, google_privacy_dlp_v2_create_stored_info_type_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
  command = make_simple_command(:post, 'v2/{+parent}/storedInfoTypes', options)
  command.request_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2CreateStoredInfoTypeRequest::Representation
  command.request_object = google_privacy_dlp_v2_create_stored_info_type_request_object
  command.response_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2StoredInfoType::Representation
  command.response_class = Google::Apis::DlpV2::GooglePrivacyDlpV2StoredInfoType
  command.params['parent'] = parent unless parent.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  execute_or_queue_command(command, &block)
end
create_project_deidentify_template(parent, google_privacy_dlp_v2_create_deidentify_template_request_object = nil, fields: nil, quota_user: nil, options: nil, &block) click to toggle source

Creates a DeidentifyTemplate for re-using frequently used configuration for de- identifying content, images, and storage. See cloud.google.com/dlp/ docs/creating-templates-deid to learn more. @param [String] parent

Required. Parent resource name. The format of this value varies depending on
the scope of the request (project or organization) and whether you have [
specified a processing location](https://cloud.google.com/dlp/docs/specifying-
location): + Projects scope, location specified: `projects/`PROJECT_ID`/
locations/`LOCATION_ID + Projects scope, no location specified (defaults to
global): `projects/`PROJECT_ID + Organizations scope, location specified: `
organizations/`ORG_ID`/locations/`LOCATION_ID + Organizations scope, no
location specified (defaults to global): `organizations/`ORG_ID The following
example `parent` string specifies a parent project with the identifier `
example-project`, and specifies the `europe-west3` location for processing
data: parent=projects/example-project/locations/europe-west3

@param [Google::Apis::DlpV2::GooglePrivacyDlpV2CreateDeidentifyTemplateRequest] google_privacy_dlp_v2_create_deidentify_template_request_object @param [String] fields

Selector specifying which fields to include in a partial response.

@param [String] quota_user

Available to use for quota purposes for server-side applications. Can be any
arbitrary string assigned to a user, but should not exceed 40 characters.

@param [Google::Apis::RequestOptions] options

Request-specific options

@yield [result, err] Result & error if block supplied @yieldparam result [Google::Apis::DlpV2::GooglePrivacyDlpV2DeidentifyTemplate] parsed result object @yieldparam err [StandardError] error object if request failed

@return [Google::Apis::DlpV2::GooglePrivacyDlpV2DeidentifyTemplate]

@raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification @raise [Google::Apis::AuthorizationError] Authorization is required

# File lib/google/apis/dlp_v2/service.rb, line 1849
def create_project_deidentify_template(parent, google_privacy_dlp_v2_create_deidentify_template_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
  command = make_simple_command(:post, 'v2/{+parent}/deidentifyTemplates', options)
  command.request_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2CreateDeidentifyTemplateRequest::Representation
  command.request_object = google_privacy_dlp_v2_create_deidentify_template_request_object
  command.response_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2DeidentifyTemplate::Representation
  command.response_class = Google::Apis::DlpV2::GooglePrivacyDlpV2DeidentifyTemplate
  command.params['parent'] = parent unless parent.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  execute_or_queue_command(command, &block)
end
create_project_dlp_job(parent, google_privacy_dlp_v2_create_dlp_job_request_object = nil, fields: nil, quota_user: nil, options: nil, &block) click to toggle source

Creates a new job to inspect storage or calculate risk metrics. See https:// cloud.google.com/dlp/docs/inspecting-storage and cloud.google.com/dlp/ docs/compute-risk-analysis to learn more. When no InfoTypes or CustomInfoTypes are specified in inspect jobs, the system will automatically choose what detectors to run. By default this may be all types, but may change over time as detectors are updated. @param [String] parent

Required. Parent resource name. The format of this value varies depending on
whether you have [specified a processing location](https://cloud.google.com/
dlp/docs/specifying-location): + Projects scope, location specified: `projects/
`PROJECT_ID`/locations/`LOCATION_ID + Projects scope, no location specified (
defaults to global): `projects/`PROJECT_ID The following example `parent`
string specifies a parent project with the identifier `example-project`, and
specifies the `europe-west3` location for processing data: parent=projects/
example-project/locations/europe-west3

@param [Google::Apis::DlpV2::GooglePrivacyDlpV2CreateDlpJobRequest] google_privacy_dlp_v2_create_dlp_job_request_object @param [String] fields

Selector specifying which fields to include in a partial response.

@param [String] quota_user

Available to use for quota purposes for server-side applications. Can be any
arbitrary string assigned to a user, but should not exceed 40 characters.

@param [Google::Apis::RequestOptions] options

Request-specific options

@yield [result, err] Result & error if block supplied @yieldparam result [Google::Apis::DlpV2::GooglePrivacyDlpV2DlpJob] parsed result object @yieldparam err [StandardError] error object if request failed

@return [Google::Apis::DlpV2::GooglePrivacyDlpV2DlpJob]

@raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification @raise [Google::Apis::AuthorizationError] Authorization is required

# File lib/google/apis/dlp_v2/service.rb, line 2093
def create_project_dlp_job(parent, google_privacy_dlp_v2_create_dlp_job_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
  command = make_simple_command(:post, 'v2/{+parent}/dlpJobs', options)
  command.request_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2CreateDlpJobRequest::Representation
  command.request_object = google_privacy_dlp_v2_create_dlp_job_request_object
  command.response_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2DlpJob::Representation
  command.response_class = Google::Apis::DlpV2::GooglePrivacyDlpV2DlpJob
  command.params['parent'] = parent unless parent.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  execute_or_queue_command(command, &block)
end
create_project_inspect_template(parent, google_privacy_dlp_v2_create_inspect_template_request_object = nil, fields: nil, quota_user: nil, options: nil, &block) click to toggle source

Creates an InspectTemplate for re-using frequently used configuration for inspecting content, images, and storage. See cloud.google.com/dlp/docs/ creating-templates to learn more. @param [String] parent

Required. Parent resource name. The format of this value varies depending on
the scope of the request (project or organization) and whether you have [
specified a processing location](https://cloud.google.com/dlp/docs/specifying-
location): + Projects scope, location specified: `projects/`PROJECT_ID`/
locations/`LOCATION_ID + Projects scope, no location specified (defaults to
global): `projects/`PROJECT_ID + Organizations scope, location specified: `
organizations/`ORG_ID`/locations/`LOCATION_ID + Organizations scope, no
location specified (defaults to global): `organizations/`ORG_ID The following
example `parent` string specifies a parent project with the identifier `
example-project`, and specifies the `europe-west3` location for processing
data: parent=projects/example-project/locations/europe-west3

@param [Google::Apis::DlpV2::GooglePrivacyDlpV2CreateInspectTemplateRequest] google_privacy_dlp_v2_create_inspect_template_request_object @param [String] fields

Selector specifying which fields to include in a partial response.

@param [String] quota_user

Available to use for quota purposes for server-side applications. Can be any
arbitrary string assigned to a user, but should not exceed 40 characters.

@param [Google::Apis::RequestOptions] options

Request-specific options

@yield [result, err] Result & error if block supplied @yieldparam result [Google::Apis::DlpV2::GooglePrivacyDlpV2InspectTemplate] parsed result object @yieldparam err [StandardError] error object if request failed

@return [Google::Apis::DlpV2::GooglePrivacyDlpV2InspectTemplate]

@raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification @raise [Google::Apis::AuthorizationError] Authorization is required

# File lib/google/apis/dlp_v2/service.rb, line 2325
def create_project_inspect_template(parent, google_privacy_dlp_v2_create_inspect_template_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
  command = make_simple_command(:post, 'v2/{+parent}/inspectTemplates', options)
  command.request_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2CreateInspectTemplateRequest::Representation
  command.request_object = google_privacy_dlp_v2_create_inspect_template_request_object
  command.response_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2InspectTemplate::Representation
  command.response_class = Google::Apis::DlpV2::GooglePrivacyDlpV2InspectTemplate
  command.params['parent'] = parent unless parent.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  execute_or_queue_command(command, &block)
end
create_project_job_trigger(parent, google_privacy_dlp_v2_create_job_trigger_request_object = nil, fields: nil, quota_user: nil, options: nil, &block) click to toggle source

Creates a job trigger to run DLP actions such as scanning storage for sensitive information on a set schedule. See cloud.google.com/dlp/docs/ creating-job-triggers to learn more. @param [String] parent

Required. Parent resource name. The format of this value varies depending on
whether you have [specified a processing location](https://cloud.google.com/
dlp/docs/specifying-location): + Projects scope, location specified: `projects/
`PROJECT_ID`/locations/`LOCATION_ID + Projects scope, no location specified (
defaults to global): `projects/`PROJECT_ID The following example `parent`
string specifies a parent project with the identifier `example-project`, and
specifies the `europe-west3` location for processing data: parent=projects/
example-project/locations/europe-west3

@param [Google::Apis::DlpV2::GooglePrivacyDlpV2CreateJobTriggerRequest] google_privacy_dlp_v2_create_job_trigger_request_object @param [String] fields

Selector specifying which fields to include in a partial response.

@param [String] quota_user

Available to use for quota purposes for server-side applications. Can be any
arbitrary string assigned to a user, but should not exceed 40 characters.

@param [Google::Apis::RequestOptions] options

Request-specific options

@yield [result, err] Result & error if block supplied @yieldparam result [Google::Apis::DlpV2::GooglePrivacyDlpV2JobTrigger] parsed result object @yieldparam err [StandardError] error object if request failed

@return [Google::Apis::DlpV2::GooglePrivacyDlpV2JobTrigger]

@raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification @raise [Google::Apis::AuthorizationError] Authorization is required

# File lib/google/apis/dlp_v2/service.rb, line 2565
def create_project_job_trigger(parent, google_privacy_dlp_v2_create_job_trigger_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
  command = make_simple_command(:post, 'v2/{+parent}/jobTriggers', options)
  command.request_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2CreateJobTriggerRequest::Representation
  command.request_object = google_privacy_dlp_v2_create_job_trigger_request_object
  command.response_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2JobTrigger::Representation
  command.response_class = Google::Apis::DlpV2::GooglePrivacyDlpV2JobTrigger
  command.params['parent'] = parent unless parent.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  execute_or_queue_command(command, &block)
end
create_project_location_deidentify_template(parent, google_privacy_dlp_v2_create_deidentify_template_request_object = nil, fields: nil, quota_user: nil, options: nil, &block) click to toggle source

Creates a DeidentifyTemplate for re-using frequently used configuration for de- identifying content, images, and storage. See cloud.google.com/dlp/ docs/creating-templates-deid to learn more. @param [String] parent

Required. Parent resource name. The format of this value varies depending on
the scope of the request (project or organization) and whether you have [
specified a processing location](https://cloud.google.com/dlp/docs/specifying-
location): + Projects scope, location specified: `projects/`PROJECT_ID`/
locations/`LOCATION_ID + Projects scope, no location specified (defaults to
global): `projects/`PROJECT_ID + Organizations scope, location specified: `
organizations/`ORG_ID`/locations/`LOCATION_ID + Organizations scope, no
location specified (defaults to global): `organizations/`ORG_ID The following
example `parent` string specifies a parent project with the identifier `
example-project`, and specifies the `europe-west3` location for processing
data: parent=projects/example-project/locations/europe-west3

@param [Google::Apis::DlpV2::GooglePrivacyDlpV2CreateDeidentifyTemplateRequest] google_privacy_dlp_v2_create_deidentify_template_request_object @param [String] fields

Selector specifying which fields to include in a partial response.

@param [String] quota_user

Available to use for quota purposes for server-side applications. Can be any
arbitrary string assigned to a user, but should not exceed 40 characters.

@param [Google::Apis::RequestOptions] options

Request-specific options

@yield [result, err] Result & error if block supplied @yieldparam result [Google::Apis::DlpV2::GooglePrivacyDlpV2DeidentifyTemplate] parsed result object @yieldparam err [StandardError] error object if request failed

@return [Google::Apis::DlpV2::GooglePrivacyDlpV2DeidentifyTemplate]

@raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification @raise [Google::Apis::AuthorizationError] Authorization is required

# File lib/google/apis/dlp_v2/service.rb, line 2919
def create_project_location_deidentify_template(parent, google_privacy_dlp_v2_create_deidentify_template_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
  command = make_simple_command(:post, 'v2/{+parent}/deidentifyTemplates', options)
  command.request_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2CreateDeidentifyTemplateRequest::Representation
  command.request_object = google_privacy_dlp_v2_create_deidentify_template_request_object
  command.response_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2DeidentifyTemplate::Representation
  command.response_class = Google::Apis::DlpV2::GooglePrivacyDlpV2DeidentifyTemplate
  command.params['parent'] = parent unless parent.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  execute_or_queue_command(command, &block)
end
create_project_location_dlp_job(parent, google_privacy_dlp_v2_create_dlp_job_request_object = nil, fields: nil, quota_user: nil, options: nil, &block) click to toggle source

Creates a new job to inspect storage or calculate risk metrics. See https:// cloud.google.com/dlp/docs/inspecting-storage and cloud.google.com/dlp/ docs/compute-risk-analysis to learn more. When no InfoTypes or CustomInfoTypes are specified in inspect jobs, the system will automatically choose what detectors to run. By default this may be all types, but may change over time as detectors are updated. @param [String] parent

Required. Parent resource name. The format of this value varies depending on
whether you have [specified a processing location](https://cloud.google.com/
dlp/docs/specifying-location): + Projects scope, location specified: `projects/
`PROJECT_ID`/locations/`LOCATION_ID + Projects scope, no location specified (
defaults to global): `projects/`PROJECT_ID The following example `parent`
string specifies a parent project with the identifier `example-project`, and
specifies the `europe-west3` location for processing data: parent=projects/
example-project/locations/europe-west3

@param [Google::Apis::DlpV2::GooglePrivacyDlpV2CreateDlpJobRequest] google_privacy_dlp_v2_create_dlp_job_request_object @param [String] fields

Selector specifying which fields to include in a partial response.

@param [String] quota_user

Available to use for quota purposes for server-side applications. Can be any
arbitrary string assigned to a user, but should not exceed 40 characters.

@param [Google::Apis::RequestOptions] options

Request-specific options

@yield [result, err] Result & error if block supplied @yieldparam result [Google::Apis::DlpV2::GooglePrivacyDlpV2DlpJob] parsed result object @yieldparam err [StandardError] error object if request failed

@return [Google::Apis::DlpV2::GooglePrivacyDlpV2DlpJob]

@raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification @raise [Google::Apis::AuthorizationError] Authorization is required

# File lib/google/apis/dlp_v2/service.rb, line 3163
def create_project_location_dlp_job(parent, google_privacy_dlp_v2_create_dlp_job_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
  command = make_simple_command(:post, 'v2/{+parent}/dlpJobs', options)
  command.request_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2CreateDlpJobRequest::Representation
  command.request_object = google_privacy_dlp_v2_create_dlp_job_request_object
  command.response_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2DlpJob::Representation
  command.response_class = Google::Apis::DlpV2::GooglePrivacyDlpV2DlpJob
  command.params['parent'] = parent unless parent.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  execute_or_queue_command(command, &block)
end
create_project_location_inspect_template(parent, google_privacy_dlp_v2_create_inspect_template_request_object = nil, fields: nil, quota_user: nil, options: nil, &block) click to toggle source

Creates an InspectTemplate for re-using frequently used configuration for inspecting content, images, and storage. See cloud.google.com/dlp/docs/ creating-templates to learn more. @param [String] parent

Required. Parent resource name. The format of this value varies depending on
the scope of the request (project or organization) and whether you have [
specified a processing location](https://cloud.google.com/dlp/docs/specifying-
location): + Projects scope, location specified: `projects/`PROJECT_ID`/
locations/`LOCATION_ID + Projects scope, no location specified (defaults to
global): `projects/`PROJECT_ID + Organizations scope, location specified: `
organizations/`ORG_ID`/locations/`LOCATION_ID + Organizations scope, no
location specified (defaults to global): `organizations/`ORG_ID The following
example `parent` string specifies a parent project with the identifier `
example-project`, and specifies the `europe-west3` location for processing
data: parent=projects/example-project/locations/europe-west3

@param [Google::Apis::DlpV2::GooglePrivacyDlpV2CreateInspectTemplateRequest] google_privacy_dlp_v2_create_inspect_template_request_object @param [String] fields

Selector specifying which fields to include in a partial response.

@param [String] quota_user

Available to use for quota purposes for server-side applications. Can be any
arbitrary string assigned to a user, but should not exceed 40 characters.

@param [Google::Apis::RequestOptions] options

Request-specific options

@yield [result, err] Result & error if block supplied @yieldparam result [Google::Apis::DlpV2::GooglePrivacyDlpV2InspectTemplate] parsed result object @yieldparam err [StandardError] error object if request failed

@return [Google::Apis::DlpV2::GooglePrivacyDlpV2InspectTemplate]

@raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification @raise [Google::Apis::AuthorizationError] Authorization is required

# File lib/google/apis/dlp_v2/service.rb, line 3464
def create_project_location_inspect_template(parent, google_privacy_dlp_v2_create_inspect_template_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
  command = make_simple_command(:post, 'v2/{+parent}/inspectTemplates', options)
  command.request_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2CreateInspectTemplateRequest::Representation
  command.request_object = google_privacy_dlp_v2_create_inspect_template_request_object
  command.response_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2InspectTemplate::Representation
  command.response_class = Google::Apis::DlpV2::GooglePrivacyDlpV2InspectTemplate
  command.params['parent'] = parent unless parent.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  execute_or_queue_command(command, &block)
end
create_project_location_job_trigger(parent, google_privacy_dlp_v2_create_job_trigger_request_object = nil, fields: nil, quota_user: nil, options: nil, &block) click to toggle source

Creates a job trigger to run DLP actions such as scanning storage for sensitive information on a set schedule. See cloud.google.com/dlp/docs/ creating-job-triggers to learn more. @param [String] parent

Required. Parent resource name. The format of this value varies depending on
whether you have [specified a processing location](https://cloud.google.com/
dlp/docs/specifying-location): + Projects scope, location specified: `projects/
`PROJECT_ID`/locations/`LOCATION_ID + Projects scope, no location specified (
defaults to global): `projects/`PROJECT_ID The following example `parent`
string specifies a parent project with the identifier `example-project`, and
specifies the `europe-west3` location for processing data: parent=projects/
example-project/locations/europe-west3

@param [Google::Apis::DlpV2::GooglePrivacyDlpV2CreateJobTriggerRequest] google_privacy_dlp_v2_create_job_trigger_request_object @param [String] fields

Selector specifying which fields to include in a partial response.

@param [String] quota_user

Available to use for quota purposes for server-side applications. Can be any
arbitrary string assigned to a user, but should not exceed 40 characters.

@param [Google::Apis::RequestOptions] options

Request-specific options

@yield [result, err] Result & error if block supplied @yieldparam result [Google::Apis::DlpV2::GooglePrivacyDlpV2JobTrigger] parsed result object @yieldparam err [StandardError] error object if request failed

@return [Google::Apis::DlpV2::GooglePrivacyDlpV2JobTrigger]

@raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification @raise [Google::Apis::AuthorizationError] Authorization is required

# File lib/google/apis/dlp_v2/service.rb, line 3704
def create_project_location_job_trigger(parent, google_privacy_dlp_v2_create_job_trigger_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
  command = make_simple_command(:post, 'v2/{+parent}/jobTriggers', options)
  command.request_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2CreateJobTriggerRequest::Representation
  command.request_object = google_privacy_dlp_v2_create_job_trigger_request_object
  command.response_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2JobTrigger::Representation
  command.response_class = Google::Apis::DlpV2::GooglePrivacyDlpV2JobTrigger
  command.params['parent'] = parent unless parent.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  execute_or_queue_command(command, &block)
end
create_project_location_stored_info_type(parent, google_privacy_dlp_v2_create_stored_info_type_request_object = nil, fields: nil, quota_user: nil, options: nil, &block) click to toggle source

Creates a pre-built stored infoType to be used for inspection. See https:// cloud.google.com/dlp/docs/creating-stored-infotypes to learn more. @param [String] parent

Required. Parent resource name. The format of this value varies depending on
the scope of the request (project or organization) and whether you have [
specified a processing location](https://cloud.google.com/dlp/docs/specifying-
location): + Projects scope, location specified: `projects/`PROJECT_ID`/
locations/`LOCATION_ID + Projects scope, no location specified (defaults to
global): `projects/`PROJECT_ID + Organizations scope, location specified: `
organizations/`ORG_ID`/locations/`LOCATION_ID + Organizations scope, no
location specified (defaults to global): `organizations/`ORG_ID The following
example `parent` string specifies a parent project with the identifier `
example-project`, and specifies the `europe-west3` location for processing
data: parent=projects/example-project/locations/europe-west3

@param [Google::Apis::DlpV2::GooglePrivacyDlpV2CreateStoredInfoTypeRequest] google_privacy_dlp_v2_create_stored_info_type_request_object @param [String] fields

Selector specifying which fields to include in a partial response.

@param [String] quota_user

Available to use for quota purposes for server-side applications. Can be any
arbitrary string assigned to a user, but should not exceed 40 characters.

@param [Google::Apis::RequestOptions] options

Request-specific options

@yield [result, err] Result & error if block supplied @yieldparam result [Google::Apis::DlpV2::GooglePrivacyDlpV2StoredInfoType] parsed result object @yieldparam err [StandardError] error object if request failed

@return [Google::Apis::DlpV2::GooglePrivacyDlpV2StoredInfoType]

@raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification @raise [Google::Apis::AuthorizationError] Authorization is required

# File lib/google/apis/dlp_v2/service.rb, line 3961
def create_project_location_stored_info_type(parent, google_privacy_dlp_v2_create_stored_info_type_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
  command = make_simple_command(:post, 'v2/{+parent}/storedInfoTypes', options)
  command.request_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2CreateStoredInfoTypeRequest::Representation
  command.request_object = google_privacy_dlp_v2_create_stored_info_type_request_object
  command.response_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2StoredInfoType::Representation
  command.response_class = Google::Apis::DlpV2::GooglePrivacyDlpV2StoredInfoType
  command.params['parent'] = parent unless parent.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  execute_or_queue_command(command, &block)
end
create_project_stored_info_type(parent, google_privacy_dlp_v2_create_stored_info_type_request_object = nil, fields: nil, quota_user: nil, options: nil, &block) click to toggle source

Creates a pre-built stored infoType to be used for inspection. See https:// cloud.google.com/dlp/docs/creating-stored-infotypes to learn more. @param [String] parent

Required. Parent resource name. The format of this value varies depending on
the scope of the request (project or organization) and whether you have [
specified a processing location](https://cloud.google.com/dlp/docs/specifying-
location): + Projects scope, location specified: `projects/`PROJECT_ID`/
locations/`LOCATION_ID + Projects scope, no location specified (defaults to
global): `projects/`PROJECT_ID + Organizations scope, location specified: `
organizations/`ORG_ID`/locations/`LOCATION_ID + Organizations scope, no
location specified (defaults to global): `organizations/`ORG_ID The following
example `parent` string specifies a parent project with the identifier `
example-project`, and specifies the `europe-west3` location for processing
data: parent=projects/example-project/locations/europe-west3

@param [Google::Apis::DlpV2::GooglePrivacyDlpV2CreateStoredInfoTypeRequest] google_privacy_dlp_v2_create_stored_info_type_request_object @param [String] fields

Selector specifying which fields to include in a partial response.

@param [String] quota_user

Available to use for quota purposes for server-side applications. Can be any
arbitrary string assigned to a user, but should not exceed 40 characters.

@param [Google::Apis::RequestOptions] options

Request-specific options

@yield [result, err] Result & error if block supplied @yieldparam result [Google::Apis::DlpV2::GooglePrivacyDlpV2StoredInfoType] parsed result object @yieldparam err [StandardError] error object if request failed

@return [Google::Apis::DlpV2::GooglePrivacyDlpV2StoredInfoType]

@raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification @raise [Google::Apis::AuthorizationError] Authorization is required

# File lib/google/apis/dlp_v2/service.rb, line 4169
def create_project_stored_info_type(parent, google_privacy_dlp_v2_create_stored_info_type_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
  command = make_simple_command(:post, 'v2/{+parent}/storedInfoTypes', options)
  command.request_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2CreateStoredInfoTypeRequest::Representation
  command.request_object = google_privacy_dlp_v2_create_stored_info_type_request_object
  command.response_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2StoredInfoType::Representation
  command.response_class = Google::Apis::DlpV2::GooglePrivacyDlpV2StoredInfoType
  command.params['parent'] = parent unless parent.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  execute_or_queue_command(command, &block)
end
deidentify_project_content(parent, google_privacy_dlp_v2_deidentify_content_request_object = nil, fields: nil, quota_user: nil, options: nil, &block) click to toggle source

De-identifies potentially sensitive info from a ContentItem. This method has limits on input size and output size. See cloud.google.com/dlp/docs/ deidentify-sensitive-data to learn more. When no InfoTypes or CustomInfoTypes are specified in this request, the system will automatically choose what detectors to run. By default this may be all types, but may change over time as detectors are updated. @param [String] parent

Parent resource name. The format of this value varies depending on whether you
have [specified a processing location](https://cloud.google.com/dlp/docs/
specifying-location): + Projects scope, location specified: `projects/`
PROJECT_ID`/locations/`LOCATION_ID + Projects scope, no location specified (
defaults to global): `projects/`PROJECT_ID The following example `parent`
string specifies a parent project with the identifier `example-project`, and
specifies the `europe-west3` location for processing data: parent=projects/
example-project/locations/europe-west3

@param [Google::Apis::DlpV2::GooglePrivacyDlpV2DeidentifyContentRequest] google_privacy_dlp_v2_deidentify_content_request_object @param [String] fields

Selector specifying which fields to include in a partial response.

@param [String] quota_user

Available to use for quota purposes for server-side applications. Can be any
arbitrary string assigned to a user, but should not exceed 40 characters.

@param [Google::Apis::RequestOptions] options

Request-specific options

@yield [result, err] Result & error if block supplied @yieldparam result [Google::Apis::DlpV2::GooglePrivacyDlpV2DeidentifyContentResponse] parsed result object @yieldparam err [StandardError] error object if request failed

@return [Google::Apis::DlpV2::GooglePrivacyDlpV2DeidentifyContentResponse]

@raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification @raise [Google::Apis::AuthorizationError] Authorization is required

# File lib/google/apis/dlp_v2/service.rb, line 1717
def deidentify_project_content(parent, google_privacy_dlp_v2_deidentify_content_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
  command = make_simple_command(:post, 'v2/{+parent}/content:deidentify', options)
  command.request_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2DeidentifyContentRequest::Representation
  command.request_object = google_privacy_dlp_v2_deidentify_content_request_object
  command.response_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2DeidentifyContentResponse::Representation
  command.response_class = Google::Apis::DlpV2::GooglePrivacyDlpV2DeidentifyContentResponse
  command.params['parent'] = parent unless parent.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  execute_or_queue_command(command, &block)
end
deidentify_project_location_content(parent, google_privacy_dlp_v2_deidentify_content_request_object = nil, fields: nil, quota_user: nil, options: nil, &block) click to toggle source

De-identifies potentially sensitive info from a ContentItem. This method has limits on input size and output size. See cloud.google.com/dlp/docs/ deidentify-sensitive-data to learn more. When no InfoTypes or CustomInfoTypes are specified in this request, the system will automatically choose what detectors to run. By default this may be all types, but may change over time as detectors are updated. @param [String] parent

Parent resource name. The format of this value varies depending on whether you
have [specified a processing location](https://cloud.google.com/dlp/docs/
specifying-location): + Projects scope, location specified: `projects/`
PROJECT_ID`/locations/`LOCATION_ID + Projects scope, no location specified (
defaults to global): `projects/`PROJECT_ID The following example `parent`
string specifies a parent project with the identifier `example-project`, and
specifies the `europe-west3` location for processing data: parent=projects/
example-project/locations/europe-west3

@param [Google::Apis::DlpV2::GooglePrivacyDlpV2DeidentifyContentRequest] google_privacy_dlp_v2_deidentify_content_request_object @param [String] fields

Selector specifying which fields to include in a partial response.

@param [String] quota_user

Available to use for quota purposes for server-side applications. Can be any
arbitrary string assigned to a user, but should not exceed 40 characters.

@param [Google::Apis::RequestOptions] options

Request-specific options

@yield [result, err] Result & error if block supplied @yieldparam result [Google::Apis::DlpV2::GooglePrivacyDlpV2DeidentifyContentResponse] parsed result object @yieldparam err [StandardError] error object if request failed

@return [Google::Apis::DlpV2::GooglePrivacyDlpV2DeidentifyContentResponse]

@raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification @raise [Google::Apis::AuthorizationError] Authorization is required

# File lib/google/apis/dlp_v2/service.rb, line 2787
def deidentify_project_location_content(parent, google_privacy_dlp_v2_deidentify_content_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
  command = make_simple_command(:post, 'v2/{+parent}/content:deidentify', options)
  command.request_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2DeidentifyContentRequest::Representation
  command.request_object = google_privacy_dlp_v2_deidentify_content_request_object
  command.response_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2DeidentifyContentResponse::Representation
  command.response_class = Google::Apis::DlpV2::GooglePrivacyDlpV2DeidentifyContentResponse
  command.params['parent'] = parent unless parent.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  execute_or_queue_command(command, &block)
end
delete_organization_deidentify_template(name, fields: nil, quota_user: nil, options: nil, &block) click to toggle source

Deletes a DeidentifyTemplate. See cloud.google.com/dlp/docs/creating- templates-deid to learn more. @param [String] name

Required. Resource name of the organization and deidentify template to be
deleted, for example `organizations/433245324/deidentifyTemplates/432452342`
or projects/project-id/deidentifyTemplates/432452342.

@param [String] fields

Selector specifying which fields to include in a partial response.

@param [String] quota_user

Available to use for quota purposes for server-side applications. Can be any
arbitrary string assigned to a user, but should not exceed 40 characters.

@param [Google::Apis::RequestOptions] options

Request-specific options

@yield [result, err] Result & error if block supplied @yieldparam result [Google::Apis::DlpV2::GoogleProtobufEmpty] parsed result object @yieldparam err [StandardError] error object if request failed

@return [Google::Apis::DlpV2::GoogleProtobufEmpty]

@raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification @raise [Google::Apis::AuthorizationError] Authorization is required

# File lib/google/apis/dlp_v2/service.rb, line 208
def delete_organization_deidentify_template(name, fields: nil, quota_user: nil, options: nil, &block)
  command = make_simple_command(:delete, 'v2/{+name}', options)
  command.response_representation = Google::Apis::DlpV2::GoogleProtobufEmpty::Representation
  command.response_class = Google::Apis::DlpV2::GoogleProtobufEmpty
  command.params['name'] = name unless name.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  execute_or_queue_command(command, &block)
end
delete_organization_inspect_template(name, fields: nil, quota_user: nil, options: nil, &block) click to toggle source

Deletes an InspectTemplate. See cloud.google.com/dlp/docs/creating- templates to learn more. @param [String] name

Required. Resource name of the organization and inspectTemplate to be deleted,
for example `organizations/433245324/inspectTemplates/432452342` or projects/
project-id/inspectTemplates/432452342.

@param [String] fields

Selector specifying which fields to include in a partial response.

@param [String] quota_user

Available to use for quota purposes for server-side applications. Can be any
arbitrary string assigned to a user, but should not exceed 40 characters.

@param [Google::Apis::RequestOptions] options

Request-specific options

@yield [result, err] Result & error if block supplied @yieldparam result [Google::Apis::DlpV2::GoogleProtobufEmpty] parsed result object @yieldparam err [StandardError] error object if request failed

@return [Google::Apis::DlpV2::GoogleProtobufEmpty]

@raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification @raise [Google::Apis::AuthorizationError] Authorization is required

# File lib/google/apis/dlp_v2/service.rb, line 416
def delete_organization_inspect_template(name, fields: nil, quota_user: nil, options: nil, &block)
  command = make_simple_command(:delete, 'v2/{+name}', options)
  command.response_representation = Google::Apis::DlpV2::GoogleProtobufEmpty::Representation
  command.response_class = Google::Apis::DlpV2::GoogleProtobufEmpty
  command.params['name'] = name unless name.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  execute_or_queue_command(command, &block)
end
delete_organization_location_deidentify_template(name, fields: nil, quota_user: nil, options: nil, &block) click to toggle source

Deletes a DeidentifyTemplate. See cloud.google.com/dlp/docs/creating- templates-deid to learn more. @param [String] name

Required. Resource name of the organization and deidentify template to be
deleted, for example `organizations/433245324/deidentifyTemplates/432452342`
or projects/project-id/deidentifyTemplates/432452342.

@param [String] fields

Selector specifying which fields to include in a partial response.

@param [String] quota_user

Available to use for quota purposes for server-side applications. Can be any
arbitrary string assigned to a user, but should not exceed 40 characters.

@param [Google::Apis::RequestOptions] options

Request-specific options

@yield [result, err] Result & error if block supplied @yieldparam result [Google::Apis::DlpV2::GoogleProtobufEmpty] parsed result object @yieldparam err [StandardError] error object if request failed

@return [Google::Apis::DlpV2::GoogleProtobufEmpty]

@raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification @raise [Google::Apis::AuthorizationError] Authorization is required

# File lib/google/apis/dlp_v2/service.rb, line 624
def delete_organization_location_deidentify_template(name, fields: nil, quota_user: nil, options: nil, &block)
  command = make_simple_command(:delete, 'v2/{+name}', options)
  command.response_representation = Google::Apis::DlpV2::GoogleProtobufEmpty::Representation
  command.response_class = Google::Apis::DlpV2::GoogleProtobufEmpty
  command.params['name'] = name unless name.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  execute_or_queue_command(command, &block)
end
delete_organization_location_inspect_template(name, fields: nil, quota_user: nil, options: nil, &block) click to toggle source

Deletes an InspectTemplate. See cloud.google.com/dlp/docs/creating- templates to learn more. @param [String] name

Required. Resource name of the organization and inspectTemplate to be deleted,
for example `organizations/433245324/inspectTemplates/432452342` or projects/
project-id/inspectTemplates/432452342.

@param [String] fields

Selector specifying which fields to include in a partial response.

@param [String] quota_user

Available to use for quota purposes for server-side applications. Can be any
arbitrary string assigned to a user, but should not exceed 40 characters.

@param [Google::Apis::RequestOptions] options

Request-specific options

@yield [result, err] Result & error if block supplied @yieldparam result [Google::Apis::DlpV2::GoogleProtobufEmpty] parsed result object @yieldparam err [StandardError] error object if request failed

@return [Google::Apis::DlpV2::GoogleProtobufEmpty]

@raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification @raise [Google::Apis::AuthorizationError] Authorization is required

# File lib/google/apis/dlp_v2/service.rb, line 909
def delete_organization_location_inspect_template(name, fields: nil, quota_user: nil, options: nil, &block)
  command = make_simple_command(:delete, 'v2/{+name}', options)
  command.response_representation = Google::Apis::DlpV2::GoogleProtobufEmpty::Representation
  command.response_class = Google::Apis::DlpV2::GoogleProtobufEmpty
  command.params['name'] = name unless name.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  execute_or_queue_command(command, &block)
end
delete_organization_location_job_trigger(name, fields: nil, quota_user: nil, options: nil, &block) click to toggle source

Deletes a job trigger. See cloud.google.com/dlp/docs/creating-job- triggers to learn more. @param [String] name

Required. Resource name of the project and the triggeredJob, for example `
projects/dlp-test-project/jobTriggers/53234423`.

@param [String] fields

Selector specifying which fields to include in a partial response.

@param [String] quota_user

Available to use for quota purposes for server-side applications. Can be any
arbitrary string assigned to a user, but should not exceed 40 characters.

@param [Google::Apis::RequestOptions] options

Request-specific options

@yield [result, err] Result & error if block supplied @yieldparam result [Google::Apis::DlpV2::GoogleProtobufEmpty] parsed result object @yieldparam err [StandardError] error object if request failed

@return [Google::Apis::DlpV2::GoogleProtobufEmpty]

@raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification @raise [Google::Apis::AuthorizationError] Authorization is required

# File lib/google/apis/dlp_v2/service.rb, line 1113
def delete_organization_location_job_trigger(name, fields: nil, quota_user: nil, options: nil, &block)
  command = make_simple_command(:delete, 'v2/{+name}', options)
  command.response_representation = Google::Apis::DlpV2::GoogleProtobufEmpty::Representation
  command.response_class = Google::Apis::DlpV2::GoogleProtobufEmpty
  command.params['name'] = name unless name.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  execute_or_queue_command(command, &block)
end
delete_organization_location_stored_info_type(name, fields: nil, quota_user: nil, options: nil, &block) click to toggle source

Deletes a stored infoType. See cloud.google.com/dlp/docs/creating- stored-infotypes to learn more. @param [String] name

Required. Resource name of the organization and storedInfoType to be deleted,
for example `organizations/433245324/storedInfoTypes/432452342` or projects/
project-id/storedInfoTypes/432452342.

@param [String] fields

Selector specifying which fields to include in a partial response.

@param [String] quota_user

Available to use for quota purposes for server-side applications. Can be any
arbitrary string assigned to a user, but should not exceed 40 characters.

@param [Google::Apis::RequestOptions] options

Request-specific options

@yield [result, err] Result & error if block supplied @yieldparam result [Google::Apis::DlpV2::GoogleProtobufEmpty] parsed result object @yieldparam err [StandardError] error object if request failed

@return [Google::Apis::DlpV2::GoogleProtobufEmpty]

@raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification @raise [Google::Apis::AuthorizationError] Authorization is required

# File lib/google/apis/dlp_v2/service.rb, line 1335
def delete_organization_location_stored_info_type(name, fields: nil, quota_user: nil, options: nil, &block)
  command = make_simple_command(:delete, 'v2/{+name}', options)
  command.response_representation = Google::Apis::DlpV2::GoogleProtobufEmpty::Representation
  command.response_class = Google::Apis::DlpV2::GoogleProtobufEmpty
  command.params['name'] = name unless name.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  execute_or_queue_command(command, &block)
end
delete_organization_stored_info_type(name, fields: nil, quota_user: nil, options: nil, &block) click to toggle source

Deletes a stored infoType. See cloud.google.com/dlp/docs/creating- stored-infotypes to learn more. @param [String] name

Required. Resource name of the organization and storedInfoType to be deleted,
for example `organizations/433245324/storedInfoTypes/432452342` or projects/
project-id/storedInfoTypes/432452342.

@param [String] fields

Selector specifying which fields to include in a partial response.

@param [String] quota_user

Available to use for quota purposes for server-side applications. Can be any
arbitrary string assigned to a user, but should not exceed 40 characters.

@param [Google::Apis::RequestOptions] options

Request-specific options

@yield [result, err] Result & error if block supplied @yieldparam result [Google::Apis::DlpV2::GoogleProtobufEmpty] parsed result object @yieldparam err [StandardError] error object if request failed

@return [Google::Apis::DlpV2::GoogleProtobufEmpty]

@raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification @raise [Google::Apis::AuthorizationError] Authorization is required

# File lib/google/apis/dlp_v2/service.rb, line 1543
def delete_organization_stored_info_type(name, fields: nil, quota_user: nil, options: nil, &block)
  command = make_simple_command(:delete, 'v2/{+name}', options)
  command.response_representation = Google::Apis::DlpV2::GoogleProtobufEmpty::Representation
  command.response_class = Google::Apis::DlpV2::GoogleProtobufEmpty
  command.params['name'] = name unless name.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  execute_or_queue_command(command, &block)
end
delete_project_deidentify_template(name, fields: nil, quota_user: nil, options: nil, &block) click to toggle source

Deletes a DeidentifyTemplate. See cloud.google.com/dlp/docs/creating- templates-deid to learn more. @param [String] name

Required. Resource name of the organization and deidentify template to be
deleted, for example `organizations/433245324/deidentifyTemplates/432452342`
or projects/project-id/deidentifyTemplates/432452342.

@param [String] fields

Selector specifying which fields to include in a partial response.

@param [String] quota_user

Available to use for quota purposes for server-side applications. Can be any
arbitrary string assigned to a user, but should not exceed 40 characters.

@param [Google::Apis::RequestOptions] options

Request-specific options

@yield [result, err] Result & error if block supplied @yieldparam result [Google::Apis::DlpV2::GoogleProtobufEmpty] parsed result object @yieldparam err [StandardError] error object if request failed

@return [Google::Apis::DlpV2::GoogleProtobufEmpty]

@raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification @raise [Google::Apis::AuthorizationError] Authorization is required

# File lib/google/apis/dlp_v2/service.rb, line 1884
def delete_project_deidentify_template(name, fields: nil, quota_user: nil, options: nil, &block)
  command = make_simple_command(:delete, 'v2/{+name}', options)
  command.response_representation = Google::Apis::DlpV2::GoogleProtobufEmpty::Representation
  command.response_class = Google::Apis::DlpV2::GoogleProtobufEmpty
  command.params['name'] = name unless name.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  execute_or_queue_command(command, &block)
end
delete_project_dlp_job(name, fields: nil, quota_user: nil, options: nil, &block) click to toggle source

Deletes a long-running DlpJob. This method indicates that the client is no longer interested in the DlpJob result. The job will be cancelled if possible. See cloud.google.com/dlp/docs/inspecting-storage and cloud. google.com/dlp/docs/compute-risk-analysis to learn more. @param [String] name

Required. The name of the DlpJob resource to be deleted.

@param [String] fields

Selector specifying which fields to include in a partial response.

@param [String] quota_user

Available to use for quota purposes for server-side applications. Can be any
arbitrary string assigned to a user, but should not exceed 40 characters.

@param [Google::Apis::RequestOptions] options

Request-specific options

@yield [result, err] Result & error if block supplied @yieldparam result [Google::Apis::DlpV2::GoogleProtobufEmpty] parsed result object @yieldparam err [StandardError] error object if request failed

@return [Google::Apis::DlpV2::GoogleProtobufEmpty]

@raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification @raise [Google::Apis::AuthorizationError] Authorization is required

# File lib/google/apis/dlp_v2/service.rb, line 2128
def delete_project_dlp_job(name, fields: nil, quota_user: nil, options: nil, &block)
  command = make_simple_command(:delete, 'v2/{+name}', options)
  command.response_representation = Google::Apis::DlpV2::GoogleProtobufEmpty::Representation
  command.response_class = Google::Apis::DlpV2::GoogleProtobufEmpty
  command.params['name'] = name unless name.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  execute_or_queue_command(command, &block)
end
delete_project_inspect_template(name, fields: nil, quota_user: nil, options: nil, &block) click to toggle source

Deletes an InspectTemplate. See cloud.google.com/dlp/docs/creating- templates to learn more. @param [String] name

Required. Resource name of the organization and inspectTemplate to be deleted,
for example `organizations/433245324/inspectTemplates/432452342` or projects/
project-id/inspectTemplates/432452342.

@param [String] fields

Selector specifying which fields to include in a partial response.

@param [String] quota_user

Available to use for quota purposes for server-side applications. Can be any
arbitrary string assigned to a user, but should not exceed 40 characters.

@param [Google::Apis::RequestOptions] options

Request-specific options

@yield [result, err] Result & error if block supplied @yieldparam result [Google::Apis::DlpV2::GoogleProtobufEmpty] parsed result object @yieldparam err [StandardError] error object if request failed

@return [Google::Apis::DlpV2::GoogleProtobufEmpty]

@raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification @raise [Google::Apis::AuthorizationError] Authorization is required

# File lib/google/apis/dlp_v2/service.rb, line 2360
def delete_project_inspect_template(name, fields: nil, quota_user: nil, options: nil, &block)
  command = make_simple_command(:delete, 'v2/{+name}', options)
  command.response_representation = Google::Apis::DlpV2::GoogleProtobufEmpty::Representation
  command.response_class = Google::Apis::DlpV2::GoogleProtobufEmpty
  command.params['name'] = name unless name.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  execute_or_queue_command(command, &block)
end
delete_project_job_trigger(name, fields: nil, quota_user: nil, options: nil, &block) click to toggle source

Deletes a job trigger. See cloud.google.com/dlp/docs/creating-job- triggers to learn more. @param [String] name

Required. Resource name of the project and the triggeredJob, for example `
projects/dlp-test-project/jobTriggers/53234423`.

@param [String] fields

Selector specifying which fields to include in a partial response.

@param [String] quota_user

Available to use for quota purposes for server-side applications. Can be any
arbitrary string assigned to a user, but should not exceed 40 characters.

@param [Google::Apis::RequestOptions] options

Request-specific options

@yield [result, err] Result & error if block supplied @yieldparam result [Google::Apis::DlpV2::GoogleProtobufEmpty] parsed result object @yieldparam err [StandardError] error object if request failed

@return [Google::Apis::DlpV2::GoogleProtobufEmpty]

@raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification @raise [Google::Apis::AuthorizationError] Authorization is required

# File lib/google/apis/dlp_v2/service.rb, line 2599
def delete_project_job_trigger(name, fields: nil, quota_user: nil, options: nil, &block)
  command = make_simple_command(:delete, 'v2/{+name}', options)
  command.response_representation = Google::Apis::DlpV2::GoogleProtobufEmpty::Representation
  command.response_class = Google::Apis::DlpV2::GoogleProtobufEmpty
  command.params['name'] = name unless name.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  execute_or_queue_command(command, &block)
end
delete_project_location_deidentify_template(name, fields: nil, quota_user: nil, options: nil, &block) click to toggle source

Deletes a DeidentifyTemplate. See cloud.google.com/dlp/docs/creating- templates-deid to learn more. @param [String] name

Required. Resource name of the organization and deidentify template to be
deleted, for example `organizations/433245324/deidentifyTemplates/432452342`
or projects/project-id/deidentifyTemplates/432452342.

@param [String] fields

Selector specifying which fields to include in a partial response.

@param [String] quota_user

Available to use for quota purposes for server-side applications. Can be any
arbitrary string assigned to a user, but should not exceed 40 characters.

@param [Google::Apis::RequestOptions] options

Request-specific options

@yield [result, err] Result & error if block supplied @yieldparam result [Google::Apis::DlpV2::GoogleProtobufEmpty] parsed result object @yieldparam err [StandardError] error object if request failed

@return [Google::Apis::DlpV2::GoogleProtobufEmpty]

@raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification @raise [Google::Apis::AuthorizationError] Authorization is required

# File lib/google/apis/dlp_v2/service.rb, line 2954
def delete_project_location_deidentify_template(name, fields: nil, quota_user: nil, options: nil, &block)
  command = make_simple_command(:delete, 'v2/{+name}', options)
  command.response_representation = Google::Apis::DlpV2::GoogleProtobufEmpty::Representation
  command.response_class = Google::Apis::DlpV2::GoogleProtobufEmpty
  command.params['name'] = name unless name.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  execute_or_queue_command(command, &block)
end
delete_project_location_dlp_job(name, fields: nil, quota_user: nil, options: nil, &block) click to toggle source

Deletes a long-running DlpJob. This method indicates that the client is no longer interested in the DlpJob result. The job will be cancelled if possible. See cloud.google.com/dlp/docs/inspecting-storage and cloud. google.com/dlp/docs/compute-risk-analysis to learn more. @param [String] name

Required. The name of the DlpJob resource to be deleted.

@param [String] fields

Selector specifying which fields to include in a partial response.

@param [String] quota_user

Available to use for quota purposes for server-side applications. Can be any
arbitrary string assigned to a user, but should not exceed 40 characters.

@param [Google::Apis::RequestOptions] options

Request-specific options

@yield [result, err] Result & error if block supplied @yieldparam result [Google::Apis::DlpV2::GoogleProtobufEmpty] parsed result object @yieldparam err [StandardError] error object if request failed

@return [Google::Apis::DlpV2::GoogleProtobufEmpty]

@raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification @raise [Google::Apis::AuthorizationError] Authorization is required

# File lib/google/apis/dlp_v2/service.rb, line 3198
def delete_project_location_dlp_job(name, fields: nil, quota_user: nil, options: nil, &block)
  command = make_simple_command(:delete, 'v2/{+name}', options)
  command.response_representation = Google::Apis::DlpV2::GoogleProtobufEmpty::Representation
  command.response_class = Google::Apis::DlpV2::GoogleProtobufEmpty
  command.params['name'] = name unless name.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  execute_or_queue_command(command, &block)
end
delete_project_location_inspect_template(name, fields: nil, quota_user: nil, options: nil, &block) click to toggle source

Deletes an InspectTemplate. See cloud.google.com/dlp/docs/creating- templates to learn more. @param [String] name

Required. Resource name of the organization and inspectTemplate to be deleted,
for example `organizations/433245324/inspectTemplates/432452342` or projects/
project-id/inspectTemplates/432452342.

@param [String] fields

Selector specifying which fields to include in a partial response.

@param [String] quota_user

Available to use for quota purposes for server-side applications. Can be any
arbitrary string assigned to a user, but should not exceed 40 characters.

@param [Google::Apis::RequestOptions] options

Request-specific options

@yield [result, err] Result & error if block supplied @yieldparam result [Google::Apis::DlpV2::GoogleProtobufEmpty] parsed result object @yieldparam err [StandardError] error object if request failed

@return [Google::Apis::DlpV2::GoogleProtobufEmpty]

@raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification @raise [Google::Apis::AuthorizationError] Authorization is required

# File lib/google/apis/dlp_v2/service.rb, line 3499
def delete_project_location_inspect_template(name, fields: nil, quota_user: nil, options: nil, &block)
  command = make_simple_command(:delete, 'v2/{+name}', options)
  command.response_representation = Google::Apis::DlpV2::GoogleProtobufEmpty::Representation
  command.response_class = Google::Apis::DlpV2::GoogleProtobufEmpty
  command.params['name'] = name unless name.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  execute_or_queue_command(command, &block)
end
delete_project_location_job_trigger(name, fields: nil, quota_user: nil, options: nil, &block) click to toggle source

Deletes a job trigger. See cloud.google.com/dlp/docs/creating-job- triggers to learn more. @param [String] name

Required. Resource name of the project and the triggeredJob, for example `
projects/dlp-test-project/jobTriggers/53234423`.

@param [String] fields

Selector specifying which fields to include in a partial response.

@param [String] quota_user

Available to use for quota purposes for server-side applications. Can be any
arbitrary string assigned to a user, but should not exceed 40 characters.

@param [Google::Apis::RequestOptions] options

Request-specific options

@yield [result, err] Result & error if block supplied @yieldparam result [Google::Apis::DlpV2::GoogleProtobufEmpty] parsed result object @yieldparam err [StandardError] error object if request failed

@return [Google::Apis::DlpV2::GoogleProtobufEmpty]

@raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification @raise [Google::Apis::AuthorizationError] Authorization is required

# File lib/google/apis/dlp_v2/service.rb, line 3738
def delete_project_location_job_trigger(name, fields: nil, quota_user: nil, options: nil, &block)
  command = make_simple_command(:delete, 'v2/{+name}', options)
  command.response_representation = Google::Apis::DlpV2::GoogleProtobufEmpty::Representation
  command.response_class = Google::Apis::DlpV2::GoogleProtobufEmpty
  command.params['name'] = name unless name.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  execute_or_queue_command(command, &block)
end
delete_project_location_stored_info_type(name, fields: nil, quota_user: nil, options: nil, &block) click to toggle source

Deletes a stored infoType. See cloud.google.com/dlp/docs/creating- stored-infotypes to learn more. @param [String] name

Required. Resource name of the organization and storedInfoType to be deleted,
for example `organizations/433245324/storedInfoTypes/432452342` or projects/
project-id/storedInfoTypes/432452342.

@param [String] fields

Selector specifying which fields to include in a partial response.

@param [String] quota_user

Available to use for quota purposes for server-side applications. Can be any
arbitrary string assigned to a user, but should not exceed 40 characters.

@param [Google::Apis::RequestOptions] options

Request-specific options

@yield [result, err] Result & error if block supplied @yieldparam result [Google::Apis::DlpV2::GoogleProtobufEmpty] parsed result object @yieldparam err [StandardError] error object if request failed

@return [Google::Apis::DlpV2::GoogleProtobufEmpty]

@raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification @raise [Google::Apis::AuthorizationError] Authorization is required

# File lib/google/apis/dlp_v2/service.rb, line 3996
def delete_project_location_stored_info_type(name, fields: nil, quota_user: nil, options: nil, &block)
  command = make_simple_command(:delete, 'v2/{+name}', options)
  command.response_representation = Google::Apis::DlpV2::GoogleProtobufEmpty::Representation
  command.response_class = Google::Apis::DlpV2::GoogleProtobufEmpty
  command.params['name'] = name unless name.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  execute_or_queue_command(command, &block)
end
delete_project_stored_info_type(name, fields: nil, quota_user: nil, options: nil, &block) click to toggle source

Deletes a stored infoType. See cloud.google.com/dlp/docs/creating- stored-infotypes to learn more. @param [String] name

Required. Resource name of the organization and storedInfoType to be deleted,
for example `organizations/433245324/storedInfoTypes/432452342` or projects/
project-id/storedInfoTypes/432452342.

@param [String] fields

Selector specifying which fields to include in a partial response.

@param [String] quota_user

Available to use for quota purposes for server-side applications. Can be any
arbitrary string assigned to a user, but should not exceed 40 characters.

@param [Google::Apis::RequestOptions] options

Request-specific options

@yield [result, err] Result & error if block supplied @yieldparam result [Google::Apis::DlpV2::GoogleProtobufEmpty] parsed result object @yieldparam err [StandardError] error object if request failed

@return [Google::Apis::DlpV2::GoogleProtobufEmpty]

@raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification @raise [Google::Apis::AuthorizationError] Authorization is required

# File lib/google/apis/dlp_v2/service.rb, line 4204
def delete_project_stored_info_type(name, fields: nil, quota_user: nil, options: nil, &block)
  command = make_simple_command(:delete, 'v2/{+name}', options)
  command.response_representation = Google::Apis::DlpV2::GoogleProtobufEmpty::Representation
  command.response_class = Google::Apis::DlpV2::GoogleProtobufEmpty
  command.params['name'] = name unless name.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  execute_or_queue_command(command, &block)
end
finish_project_location_dlp_job(name, google_privacy_dlp_v2_finish_dlp_job_request_object = nil, fields: nil, quota_user: nil, options: nil, &block) click to toggle source

Finish a running hybrid DlpJob. Triggers the finalization steps and running of any enabled actions that have not yet run. @param [String] name

Required. The name of the DlpJob resource to be cancelled.

@param [Google::Apis::DlpV2::GooglePrivacyDlpV2FinishDlpJobRequest] google_privacy_dlp_v2_finish_dlp_job_request_object @param [String] fields

Selector specifying which fields to include in a partial response.

@param [String] quota_user

Available to use for quota purposes for server-side applications. Can be any
arbitrary string assigned to a user, but should not exceed 40 characters.

@param [Google::Apis::RequestOptions] options

Request-specific options

@yield [result, err] Result & error if block supplied @yieldparam result [Google::Apis::DlpV2::GoogleProtobufEmpty] parsed result object @yieldparam err [StandardError] error object if request failed

@return [Google::Apis::DlpV2::GoogleProtobufEmpty]

@raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification @raise [Google::Apis::AuthorizationError] Authorization is required

# File lib/google/apis/dlp_v2/service.rb, line 3230
def finish_project_location_dlp_job(name, google_privacy_dlp_v2_finish_dlp_job_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
  command = make_simple_command(:post, 'v2/{+name}:finish', options)
  command.request_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2FinishDlpJobRequest::Representation
  command.request_object = google_privacy_dlp_v2_finish_dlp_job_request_object
  command.response_representation = Google::Apis::DlpV2::GoogleProtobufEmpty::Representation
  command.response_class = Google::Apis::DlpV2::GoogleProtobufEmpty
  command.params['name'] = name unless name.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  execute_or_queue_command(command, &block)
end
get_organization_deidentify_template(name, fields: nil, quota_user: nil, options: nil, &block) click to toggle source

Gets a DeidentifyTemplate. See cloud.google.com/dlp/docs/creating- templates-deid to learn more. @param [String] name

Required. Resource name of the organization and deidentify template to be read,
for example `organizations/433245324/deidentifyTemplates/432452342` or
projects/project-id/deidentifyTemplates/432452342.

@param [String] fields

Selector specifying which fields to include in a partial response.

@param [String] quota_user

Available to use for quota purposes for server-side applications. Can be any
arbitrary string assigned to a user, but should not exceed 40 characters.

@param [Google::Apis::RequestOptions] options

Request-specific options

@yield [result, err] Result & error if block supplied @yieldparam result [Google::Apis::DlpV2::GooglePrivacyDlpV2DeidentifyTemplate] parsed result object @yieldparam err [StandardError] error object if request failed

@return [Google::Apis::DlpV2::GooglePrivacyDlpV2DeidentifyTemplate]

@raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification @raise [Google::Apis::AuthorizationError] Authorization is required

# File lib/google/apis/dlp_v2/service.rb, line 241
def get_organization_deidentify_template(name, fields: nil, quota_user: nil, options: nil, &block)
  command = make_simple_command(:get, 'v2/{+name}', options)
  command.response_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2DeidentifyTemplate::Representation
  command.response_class = Google::Apis::DlpV2::GooglePrivacyDlpV2DeidentifyTemplate
  command.params['name'] = name unless name.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  execute_or_queue_command(command, &block)
end
get_organization_inspect_template(name, fields: nil, quota_user: nil, options: nil, &block) click to toggle source

Gets an InspectTemplate. See cloud.google.com/dlp/docs/creating- templates to learn more. @param [String] name

Required. Resource name of the organization and inspectTemplate to be read,
for example `organizations/433245324/inspectTemplates/432452342` or projects/
project-id/inspectTemplates/432452342.

@param [String] fields

Selector specifying which fields to include in a partial response.

@param [String] quota_user

Available to use for quota purposes for server-side applications. Can be any
arbitrary string assigned to a user, but should not exceed 40 characters.

@param [Google::Apis::RequestOptions] options

Request-specific options

@yield [result, err] Result & error if block supplied @yieldparam result [Google::Apis::DlpV2::GooglePrivacyDlpV2InspectTemplate] parsed result object @yieldparam err [StandardError] error object if request failed

@return [Google::Apis::DlpV2::GooglePrivacyDlpV2InspectTemplate]

@raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification @raise [Google::Apis::AuthorizationError] Authorization is required

# File lib/google/apis/dlp_v2/service.rb, line 449
def get_organization_inspect_template(name, fields: nil, quota_user: nil, options: nil, &block)
  command = make_simple_command(:get, 'v2/{+name}', options)
  command.response_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2InspectTemplate::Representation
  command.response_class = Google::Apis::DlpV2::GooglePrivacyDlpV2InspectTemplate
  command.params['name'] = name unless name.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  execute_or_queue_command(command, &block)
end
get_organization_location_deidentify_template(name, fields: nil, quota_user: nil, options: nil, &block) click to toggle source

Gets a DeidentifyTemplate. See cloud.google.com/dlp/docs/creating- templates-deid to learn more. @param [String] name

Required. Resource name of the organization and deidentify template to be read,
for example `organizations/433245324/deidentifyTemplates/432452342` or
projects/project-id/deidentifyTemplates/432452342.

@param [String] fields

Selector specifying which fields to include in a partial response.

@param [String] quota_user

Available to use for quota purposes for server-side applications. Can be any
arbitrary string assigned to a user, but should not exceed 40 characters.

@param [Google::Apis::RequestOptions] options

Request-specific options

@yield [result, err] Result & error if block supplied @yieldparam result [Google::Apis::DlpV2::GooglePrivacyDlpV2DeidentifyTemplate] parsed result object @yieldparam err [StandardError] error object if request failed

@return [Google::Apis::DlpV2::GooglePrivacyDlpV2DeidentifyTemplate]

@raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification @raise [Google::Apis::AuthorizationError] Authorization is required

# File lib/google/apis/dlp_v2/service.rb, line 657
def get_organization_location_deidentify_template(name, fields: nil, quota_user: nil, options: nil, &block)
  command = make_simple_command(:get, 'v2/{+name}', options)
  command.response_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2DeidentifyTemplate::Representation
  command.response_class = Google::Apis::DlpV2::GooglePrivacyDlpV2DeidentifyTemplate
  command.params['name'] = name unless name.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  execute_or_queue_command(command, &block)
end
get_organization_location_inspect_template(name, fields: nil, quota_user: nil, options: nil, &block) click to toggle source

Gets an InspectTemplate. See cloud.google.com/dlp/docs/creating- templates to learn more. @param [String] name

Required. Resource name of the organization and inspectTemplate to be read,
for example `organizations/433245324/inspectTemplates/432452342` or projects/
project-id/inspectTemplates/432452342.

@param [String] fields

Selector specifying which fields to include in a partial response.

@param [String] quota_user

Available to use for quota purposes for server-side applications. Can be any
arbitrary string assigned to a user, but should not exceed 40 characters.

@param [Google::Apis::RequestOptions] options

Request-specific options

@yield [result, err] Result & error if block supplied @yieldparam result [Google::Apis::DlpV2::GooglePrivacyDlpV2InspectTemplate] parsed result object @yieldparam err [StandardError] error object if request failed

@return [Google::Apis::DlpV2::GooglePrivacyDlpV2InspectTemplate]

@raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification @raise [Google::Apis::AuthorizationError] Authorization is required

# File lib/google/apis/dlp_v2/service.rb, line 942
def get_organization_location_inspect_template(name, fields: nil, quota_user: nil, options: nil, &block)
  command = make_simple_command(:get, 'v2/{+name}', options)
  command.response_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2InspectTemplate::Representation
  command.response_class = Google::Apis::DlpV2::GooglePrivacyDlpV2InspectTemplate
  command.params['name'] = name unless name.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  execute_or_queue_command(command, &block)
end
get_organization_location_job_trigger(name, fields: nil, quota_user: nil, options: nil, &block) click to toggle source

Gets a job trigger. See cloud.google.com/dlp/docs/creating-job- triggers to learn more. @param [String] name

Required. Resource name of the project and the triggeredJob, for example `
projects/dlp-test-project/jobTriggers/53234423`.

@param [String] fields

Selector specifying which fields to include in a partial response.

@param [String] quota_user

Available to use for quota purposes for server-side applications. Can be any
arbitrary string assigned to a user, but should not exceed 40 characters.

@param [Google::Apis::RequestOptions] options

Request-specific options

@yield [result, err] Result & error if block supplied @yieldparam result [Google::Apis::DlpV2::GooglePrivacyDlpV2JobTrigger] parsed result object @yieldparam err [StandardError] error object if request failed

@return [Google::Apis::DlpV2::GooglePrivacyDlpV2JobTrigger]

@raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification @raise [Google::Apis::AuthorizationError] Authorization is required

# File lib/google/apis/dlp_v2/service.rb, line 1145
def get_organization_location_job_trigger(name, fields: nil, quota_user: nil, options: nil, &block)
  command = make_simple_command(:get, 'v2/{+name}', options)
  command.response_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2JobTrigger::Representation
  command.response_class = Google::Apis::DlpV2::GooglePrivacyDlpV2JobTrigger
  command.params['name'] = name unless name.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  execute_or_queue_command(command, &block)
end
get_organization_location_stored_info_type(name, fields: nil, quota_user: nil, options: nil, &block) click to toggle source

Gets a stored infoType. See cloud.google.com/dlp/docs/creating-stored- infotypes to learn more. @param [String] name

Required. Resource name of the organization and storedInfoType to be read, for
example `organizations/433245324/storedInfoTypes/432452342` or projects/
project-id/storedInfoTypes/432452342.

@param [String] fields

Selector specifying which fields to include in a partial response.

@param [String] quota_user

Available to use for quota purposes for server-side applications. Can be any
arbitrary string assigned to a user, but should not exceed 40 characters.

@param [Google::Apis::RequestOptions] options

Request-specific options

@yield [result, err] Result & error if block supplied @yieldparam result [Google::Apis::DlpV2::GooglePrivacyDlpV2StoredInfoType] parsed result object @yieldparam err [StandardError] error object if request failed

@return [Google::Apis::DlpV2::GooglePrivacyDlpV2StoredInfoType]

@raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification @raise [Google::Apis::AuthorizationError] Authorization is required

# File lib/google/apis/dlp_v2/service.rb, line 1368
def get_organization_location_stored_info_type(name, fields: nil, quota_user: nil, options: nil, &block)
  command = make_simple_command(:get, 'v2/{+name}', options)
  command.response_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2StoredInfoType::Representation
  command.response_class = Google::Apis::DlpV2::GooglePrivacyDlpV2StoredInfoType
  command.params['name'] = name unless name.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  execute_or_queue_command(command, &block)
end
get_organization_stored_info_type(name, fields: nil, quota_user: nil, options: nil, &block) click to toggle source

Gets a stored infoType. See cloud.google.com/dlp/docs/creating-stored- infotypes to learn more. @param [String] name

Required. Resource name of the organization and storedInfoType to be read, for
example `organizations/433245324/storedInfoTypes/432452342` or projects/
project-id/storedInfoTypes/432452342.

@param [String] fields

Selector specifying which fields to include in a partial response.

@param [String] quota_user

Available to use for quota purposes for server-side applications. Can be any
arbitrary string assigned to a user, but should not exceed 40 characters.

@param [Google::Apis::RequestOptions] options

Request-specific options

@yield [result, err] Result & error if block supplied @yieldparam result [Google::Apis::DlpV2::GooglePrivacyDlpV2StoredInfoType] parsed result object @yieldparam err [StandardError] error object if request failed

@return [Google::Apis::DlpV2::GooglePrivacyDlpV2StoredInfoType]

@raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification @raise [Google::Apis::AuthorizationError] Authorization is required

# File lib/google/apis/dlp_v2/service.rb, line 1576
def get_organization_stored_info_type(name, fields: nil, quota_user: nil, options: nil, &block)
  command = make_simple_command(:get, 'v2/{+name}', options)
  command.response_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2StoredInfoType::Representation
  command.response_class = Google::Apis::DlpV2::GooglePrivacyDlpV2StoredInfoType
  command.params['name'] = name unless name.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  execute_or_queue_command(command, &block)
end
get_project_deidentify_template(name, fields: nil, quota_user: nil, options: nil, &block) click to toggle source

Gets a DeidentifyTemplate. See cloud.google.com/dlp/docs/creating- templates-deid to learn more. @param [String] name

Required. Resource name of the organization and deidentify template to be read,
for example `organizations/433245324/deidentifyTemplates/432452342` or
projects/project-id/deidentifyTemplates/432452342.

@param [String] fields

Selector specifying which fields to include in a partial response.

@param [String] quota_user

Available to use for quota purposes for server-side applications. Can be any
arbitrary string assigned to a user, but should not exceed 40 characters.

@param [Google::Apis::RequestOptions] options

Request-specific options

@yield [result, err] Result & error if block supplied @yieldparam result [Google::Apis::DlpV2::GooglePrivacyDlpV2DeidentifyTemplate] parsed result object @yieldparam err [StandardError] error object if request failed

@return [Google::Apis::DlpV2::GooglePrivacyDlpV2DeidentifyTemplate]

@raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification @raise [Google::Apis::AuthorizationError] Authorization is required

# File lib/google/apis/dlp_v2/service.rb, line 1917
def get_project_deidentify_template(name, fields: nil, quota_user: nil, options: nil, &block)
  command = make_simple_command(:get, 'v2/{+name}', options)
  command.response_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2DeidentifyTemplate::Representation
  command.response_class = Google::Apis::DlpV2::GooglePrivacyDlpV2DeidentifyTemplate
  command.params['name'] = name unless name.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  execute_or_queue_command(command, &block)
end
get_project_dlp_job(name, fields: nil, quota_user: nil, options: nil, &block) click to toggle source

Gets the latest state of a long-running DlpJob. See cloud.google.com/ dlp/docs/inspecting-storage and cloud.google.com/dlp/docs/compute-risk- analysis to learn more. @param [String] name

Required. The name of the DlpJob resource.

@param [String] fields

Selector specifying which fields to include in a partial response.

@param [String] quota_user

Available to use for quota purposes for server-side applications. Can be any
arbitrary string assigned to a user, but should not exceed 40 characters.

@param [Google::Apis::RequestOptions] options

Request-specific options

@yield [result, err] Result & error if block supplied @yieldparam result [Google::Apis::DlpV2::GooglePrivacyDlpV2DlpJob] parsed result object @yieldparam err [StandardError] error object if request failed

@return [Google::Apis::DlpV2::GooglePrivacyDlpV2DlpJob]

@raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification @raise [Google::Apis::AuthorizationError] Authorization is required

# File lib/google/apis/dlp_v2/service.rb, line 2160
def get_project_dlp_job(name, fields: nil, quota_user: nil, options: nil, &block)
  command = make_simple_command(:get, 'v2/{+name}', options)
  command.response_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2DlpJob::Representation
  command.response_class = Google::Apis::DlpV2::GooglePrivacyDlpV2DlpJob
  command.params['name'] = name unless name.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  execute_or_queue_command(command, &block)
end
get_project_inspect_template(name, fields: nil, quota_user: nil, options: nil, &block) click to toggle source

Gets an InspectTemplate. See cloud.google.com/dlp/docs/creating- templates to learn more. @param [String] name

Required. Resource name of the organization and inspectTemplate to be read,
for example `organizations/433245324/inspectTemplates/432452342` or projects/
project-id/inspectTemplates/432452342.

@param [String] fields

Selector specifying which fields to include in a partial response.

@param [String] quota_user

Available to use for quota purposes for server-side applications. Can be any
arbitrary string assigned to a user, but should not exceed 40 characters.

@param [Google::Apis::RequestOptions] options

Request-specific options

@yield [result, err] Result & error if block supplied @yieldparam result [Google::Apis::DlpV2::GooglePrivacyDlpV2InspectTemplate] parsed result object @yieldparam err [StandardError] error object if request failed

@return [Google::Apis::DlpV2::GooglePrivacyDlpV2InspectTemplate]

@raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification @raise [Google::Apis::AuthorizationError] Authorization is required

# File lib/google/apis/dlp_v2/service.rb, line 2393
def get_project_inspect_template(name, fields: nil, quota_user: nil, options: nil, &block)
  command = make_simple_command(:get, 'v2/{+name}', options)
  command.response_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2InspectTemplate::Representation
  command.response_class = Google::Apis::DlpV2::GooglePrivacyDlpV2InspectTemplate
  command.params['name'] = name unless name.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  execute_or_queue_command(command, &block)
end
get_project_job_trigger(name, fields: nil, quota_user: nil, options: nil, &block) click to toggle source

Gets a job trigger. See cloud.google.com/dlp/docs/creating-job- triggers to learn more. @param [String] name

Required. Resource name of the project and the triggeredJob, for example `
projects/dlp-test-project/jobTriggers/53234423`.

@param [String] fields

Selector specifying which fields to include in a partial response.

@param [String] quota_user

Available to use for quota purposes for server-side applications. Can be any
arbitrary string assigned to a user, but should not exceed 40 characters.

@param [Google::Apis::RequestOptions] options

Request-specific options

@yield [result, err] Result & error if block supplied @yieldparam result [Google::Apis::DlpV2::GooglePrivacyDlpV2JobTrigger] parsed result object @yieldparam err [StandardError] error object if request failed

@return [Google::Apis::DlpV2::GooglePrivacyDlpV2JobTrigger]

@raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification @raise [Google::Apis::AuthorizationError] Authorization is required

# File lib/google/apis/dlp_v2/service.rb, line 2631
def get_project_job_trigger(name, fields: nil, quota_user: nil, options: nil, &block)
  command = make_simple_command(:get, 'v2/{+name}', options)
  command.response_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2JobTrigger::Representation
  command.response_class = Google::Apis::DlpV2::GooglePrivacyDlpV2JobTrigger
  command.params['name'] = name unless name.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  execute_or_queue_command(command, &block)
end
get_project_location_deidentify_template(name, fields: nil, quota_user: nil, options: nil, &block) click to toggle source

Gets a DeidentifyTemplate. See cloud.google.com/dlp/docs/creating- templates-deid to learn more. @param [String] name

Required. Resource name of the organization and deidentify template to be read,
for example `organizations/433245324/deidentifyTemplates/432452342` or
projects/project-id/deidentifyTemplates/432452342.

@param [String] fields

Selector specifying which fields to include in a partial response.

@param [String] quota_user

Available to use for quota purposes for server-side applications. Can be any
arbitrary string assigned to a user, but should not exceed 40 characters.

@param [Google::Apis::RequestOptions] options

Request-specific options

@yield [result, err] Result & error if block supplied @yieldparam result [Google::Apis::DlpV2::GooglePrivacyDlpV2DeidentifyTemplate] parsed result object @yieldparam err [StandardError] error object if request failed

@return [Google::Apis::DlpV2::GooglePrivacyDlpV2DeidentifyTemplate]

@raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification @raise [Google::Apis::AuthorizationError] Authorization is required

# File lib/google/apis/dlp_v2/service.rb, line 2987
def get_project_location_deidentify_template(name, fields: nil, quota_user: nil, options: nil, &block)
  command = make_simple_command(:get, 'v2/{+name}', options)
  command.response_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2DeidentifyTemplate::Representation
  command.response_class = Google::Apis::DlpV2::GooglePrivacyDlpV2DeidentifyTemplate
  command.params['name'] = name unless name.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  execute_or_queue_command(command, &block)
end
get_project_location_dlp_job(name, fields: nil, quota_user: nil, options: nil, &block) click to toggle source

Gets the latest state of a long-running DlpJob. See cloud.google.com/ dlp/docs/inspecting-storage and cloud.google.com/dlp/docs/compute-risk- analysis to learn more. @param [String] name

Required. The name of the DlpJob resource.

@param [String] fields

Selector specifying which fields to include in a partial response.

@param [String] quota_user

Available to use for quota purposes for server-side applications. Can be any
arbitrary string assigned to a user, but should not exceed 40 characters.

@param [Google::Apis::RequestOptions] options

Request-specific options

@yield [result, err] Result & error if block supplied @yieldparam result [Google::Apis::DlpV2::GooglePrivacyDlpV2DlpJob] parsed result object @yieldparam err [StandardError] error object if request failed

@return [Google::Apis::DlpV2::GooglePrivacyDlpV2DlpJob]

@raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification @raise [Google::Apis::AuthorizationError] Authorization is required

# File lib/google/apis/dlp_v2/service.rb, line 3264
def get_project_location_dlp_job(name, fields: nil, quota_user: nil, options: nil, &block)
  command = make_simple_command(:get, 'v2/{+name}', options)
  command.response_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2DlpJob::Representation
  command.response_class = Google::Apis::DlpV2::GooglePrivacyDlpV2DlpJob
  command.params['name'] = name unless name.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  execute_or_queue_command(command, &block)
end
get_project_location_inspect_template(name, fields: nil, quota_user: nil, options: nil, &block) click to toggle source

Gets an InspectTemplate. See cloud.google.com/dlp/docs/creating- templates to learn more. @param [String] name

Required. Resource name of the organization and inspectTemplate to be read,
for example `organizations/433245324/inspectTemplates/432452342` or projects/
project-id/inspectTemplates/432452342.

@param [String] fields

Selector specifying which fields to include in a partial response.

@param [String] quota_user

Available to use for quota purposes for server-side applications. Can be any
arbitrary string assigned to a user, but should not exceed 40 characters.

@param [Google::Apis::RequestOptions] options

Request-specific options

@yield [result, err] Result & error if block supplied @yieldparam result [Google::Apis::DlpV2::GooglePrivacyDlpV2InspectTemplate] parsed result object @yieldparam err [StandardError] error object if request failed

@return [Google::Apis::DlpV2::GooglePrivacyDlpV2InspectTemplate]

@raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification @raise [Google::Apis::AuthorizationError] Authorization is required

# File lib/google/apis/dlp_v2/service.rb, line 3532
def get_project_location_inspect_template(name, fields: nil, quota_user: nil, options: nil, &block)
  command = make_simple_command(:get, 'v2/{+name}', options)
  command.response_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2InspectTemplate::Representation
  command.response_class = Google::Apis::DlpV2::GooglePrivacyDlpV2InspectTemplate
  command.params['name'] = name unless name.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  execute_or_queue_command(command, &block)
end
get_project_location_job_trigger(name, fields: nil, quota_user: nil, options: nil, &block) click to toggle source

Gets a job trigger. See cloud.google.com/dlp/docs/creating-job- triggers to learn more. @param [String] name

Required. Resource name of the project and the triggeredJob, for example `
projects/dlp-test-project/jobTriggers/53234423`.

@param [String] fields

Selector specifying which fields to include in a partial response.

@param [String] quota_user

Available to use for quota purposes for server-side applications. Can be any
arbitrary string assigned to a user, but should not exceed 40 characters.

@param [Google::Apis::RequestOptions] options

Request-specific options

@yield [result, err] Result & error if block supplied @yieldparam result [Google::Apis::DlpV2::GooglePrivacyDlpV2JobTrigger] parsed result object @yieldparam err [StandardError] error object if request failed

@return [Google::Apis::DlpV2::GooglePrivacyDlpV2JobTrigger]

@raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification @raise [Google::Apis::AuthorizationError] Authorization is required

# File lib/google/apis/dlp_v2/service.rb, line 3770
def get_project_location_job_trigger(name, fields: nil, quota_user: nil, options: nil, &block)
  command = make_simple_command(:get, 'v2/{+name}', options)
  command.response_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2JobTrigger::Representation
  command.response_class = Google::Apis::DlpV2::GooglePrivacyDlpV2JobTrigger
  command.params['name'] = name unless name.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  execute_or_queue_command(command, &block)
end
get_project_location_stored_info_type(name, fields: nil, quota_user: nil, options: nil, &block) click to toggle source

Gets a stored infoType. See cloud.google.com/dlp/docs/creating-stored- infotypes to learn more. @param [String] name

Required. Resource name of the organization and storedInfoType to be read, for
example `organizations/433245324/storedInfoTypes/432452342` or projects/
project-id/storedInfoTypes/432452342.

@param [String] fields

Selector specifying which fields to include in a partial response.

@param [String] quota_user

Available to use for quota purposes for server-side applications. Can be any
arbitrary string assigned to a user, but should not exceed 40 characters.

@param [Google::Apis::RequestOptions] options

Request-specific options

@yield [result, err] Result & error if block supplied @yieldparam result [Google::Apis::DlpV2::GooglePrivacyDlpV2StoredInfoType] parsed result object @yieldparam err [StandardError] error object if request failed

@return [Google::Apis::DlpV2::GooglePrivacyDlpV2StoredInfoType]

@raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification @raise [Google::Apis::AuthorizationError] Authorization is required

# File lib/google/apis/dlp_v2/service.rb, line 4029
def get_project_location_stored_info_type(name, fields: nil, quota_user: nil, options: nil, &block)
  command = make_simple_command(:get, 'v2/{+name}', options)
  command.response_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2StoredInfoType::Representation
  command.response_class = Google::Apis::DlpV2::GooglePrivacyDlpV2StoredInfoType
  command.params['name'] = name unless name.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  execute_or_queue_command(command, &block)
end
get_project_stored_info_type(name, fields: nil, quota_user: nil, options: nil, &block) click to toggle source

Gets a stored infoType. See cloud.google.com/dlp/docs/creating-stored- infotypes to learn more. @param [String] name

Required. Resource name of the organization and storedInfoType to be read, for
example `organizations/433245324/storedInfoTypes/432452342` or projects/
project-id/storedInfoTypes/432452342.

@param [String] fields

Selector specifying which fields to include in a partial response.

@param [String] quota_user

Available to use for quota purposes for server-side applications. Can be any
arbitrary string assigned to a user, but should not exceed 40 characters.

@param [Google::Apis::RequestOptions] options

Request-specific options

@yield [result, err] Result & error if block supplied @yieldparam result [Google::Apis::DlpV2::GooglePrivacyDlpV2StoredInfoType] parsed result object @yieldparam err [StandardError] error object if request failed

@return [Google::Apis::DlpV2::GooglePrivacyDlpV2StoredInfoType]

@raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification @raise [Google::Apis::AuthorizationError] Authorization is required

# File lib/google/apis/dlp_v2/service.rb, line 4237
def get_project_stored_info_type(name, fields: nil, quota_user: nil, options: nil, &block)
  command = make_simple_command(:get, 'v2/{+name}', options)
  command.response_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2StoredInfoType::Representation
  command.response_class = Google::Apis::DlpV2::GooglePrivacyDlpV2StoredInfoType
  command.params['name'] = name unless name.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  execute_or_queue_command(command, &block)
end
hybrid_project_location_dlp_job_inspect(name, google_privacy_dlp_v2_hybrid_inspect_dlp_job_request_object = nil, fields: nil, quota_user: nil, options: nil, &block) click to toggle source

Inspect hybrid content and store findings to a job. To review the findings, inspect the job. Inspection will occur asynchronously. @param [String] name

Required. Resource name of the job to execute a hybrid inspect on, for example
`projects/dlp-test-project/dlpJob/53234423`.

@param [Google::Apis::DlpV2::GooglePrivacyDlpV2HybridInspectDlpJobRequest] google_privacy_dlp_v2_hybrid_inspect_dlp_job_request_object @param [String] fields

Selector specifying which fields to include in a partial response.

@param [String] quota_user

Available to use for quota purposes for server-side applications. Can be any
arbitrary string assigned to a user, but should not exceed 40 characters.

@param [Google::Apis::RequestOptions] options

Request-specific options

@yield [result, err] Result & error if block supplied @yieldparam result [Google::Apis::DlpV2::GooglePrivacyDlpV2HybridInspectResponse] parsed result object @yieldparam err [StandardError] error object if request failed

@return [Google::Apis::DlpV2::GooglePrivacyDlpV2HybridInspectResponse]

@raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification @raise [Google::Apis::AuthorizationError] Authorization is required

# File lib/google/apis/dlp_v2/service.rb, line 3297
def hybrid_project_location_dlp_job_inspect(name, google_privacy_dlp_v2_hybrid_inspect_dlp_job_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
  command = make_simple_command(:post, 'v2/{+name}:hybridInspect', options)
  command.request_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2HybridInspectDlpJobRequest::Representation
  command.request_object = google_privacy_dlp_v2_hybrid_inspect_dlp_job_request_object
  command.response_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2HybridInspectResponse::Representation
  command.response_class = Google::Apis::DlpV2::GooglePrivacyDlpV2HybridInspectResponse
  command.params['name'] = name unless name.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  execute_or_queue_command(command, &block)
end
hybrid_project_location_job_trigger_inspect(name, google_privacy_dlp_v2_hybrid_inspect_job_trigger_request_object = nil, fields: nil, quota_user: nil, options: nil, &block) click to toggle source

Inspect hybrid content and store findings to a trigger. The inspection will be processed asynchronously. To review the findings monitor the jobs within the trigger. @param [String] name

Required. Resource name of the trigger to execute a hybrid inspect on, for
example `projects/dlp-test-project/jobTriggers/53234423`.

@param [Google::Apis::DlpV2::GooglePrivacyDlpV2HybridInspectJobTriggerRequest] google_privacy_dlp_v2_hybrid_inspect_job_trigger_request_object @param [String] fields

Selector specifying which fields to include in a partial response.

@param [String] quota_user

Available to use for quota purposes for server-side applications. Can be any
arbitrary string assigned to a user, but should not exceed 40 characters.

@param [Google::Apis::RequestOptions] options

Request-specific options

@yield [result, err] Result & error if block supplied @yieldparam result [Google::Apis::DlpV2::GooglePrivacyDlpV2HybridInspectResponse] parsed result object @yieldparam err [StandardError] error object if request failed

@return [Google::Apis::DlpV2::GooglePrivacyDlpV2HybridInspectResponse]

@raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification @raise [Google::Apis::AuthorizationError] Authorization is required

# File lib/google/apis/dlp_v2/service.rb, line 3804
def hybrid_project_location_job_trigger_inspect(name, google_privacy_dlp_v2_hybrid_inspect_job_trigger_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
  command = make_simple_command(:post, 'v2/{+name}:hybridInspect', options)
  command.request_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2HybridInspectJobTriggerRequest::Representation
  command.request_object = google_privacy_dlp_v2_hybrid_inspect_job_trigger_request_object
  command.response_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2HybridInspectResponse::Representation
  command.response_class = Google::Apis::DlpV2::GooglePrivacyDlpV2HybridInspectResponse
  command.params['name'] = name unless name.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  execute_or_queue_command(command, &block)
end
inspect_project_content(parent, google_privacy_dlp_v2_inspect_content_request_object = nil, fields: nil, quota_user: nil, options: nil, &block) click to toggle source

Finds potentially sensitive info in content. This method has limits on input size, processing time, and output size. When no InfoTypes or CustomInfoTypes are specified in this request, the system will automatically choose what detectors to run. By default this may be all types, but may change over time as detectors are updated. For how to guides, see cloud.google.com/dlp/ docs/inspecting-images and cloud.google.com/dlp/docs/inspecting-text, @param [String] parent

Parent resource name. The format of this value varies depending on whether you
have [specified a processing location](https://cloud.google.com/dlp/docs/
specifying-location): + Projects scope, location specified: `projects/`
PROJECT_ID`/locations/`LOCATION_ID + Projects scope, no location specified (
defaults to global): `projects/`PROJECT_ID The following example `parent`
string specifies a parent project with the identifier `example-project`, and
specifies the `europe-west3` location for processing data: parent=projects/
example-project/locations/europe-west3

@param [Google::Apis::DlpV2::GooglePrivacyDlpV2InspectContentRequest] google_privacy_dlp_v2_inspect_content_request_object @param [String] fields

Selector specifying which fields to include in a partial response.

@param [String] quota_user

Available to use for quota purposes for server-side applications. Can be any
arbitrary string assigned to a user, but should not exceed 40 characters.

@param [Google::Apis::RequestOptions] options

Request-specific options

@yield [result, err] Result & error if block supplied @yieldparam result [Google::Apis::DlpV2::GooglePrivacyDlpV2InspectContentResponse] parsed result object @yieldparam err [StandardError] error object if request failed

@return [Google::Apis::DlpV2::GooglePrivacyDlpV2InspectContentResponse]

@raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification @raise [Google::Apis::AuthorizationError] Authorization is required

# File lib/google/apis/dlp_v2/service.rb, line 1762
def inspect_project_content(parent, google_privacy_dlp_v2_inspect_content_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
  command = make_simple_command(:post, 'v2/{+parent}/content:inspect', options)
  command.request_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2InspectContentRequest::Representation
  command.request_object = google_privacy_dlp_v2_inspect_content_request_object
  command.response_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2InspectContentResponse::Representation
  command.response_class = Google::Apis::DlpV2::GooglePrivacyDlpV2InspectContentResponse
  command.params['parent'] = parent unless parent.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  execute_or_queue_command(command, &block)
end
inspect_project_location_content(parent, google_privacy_dlp_v2_inspect_content_request_object = nil, fields: nil, quota_user: nil, options: nil, &block) click to toggle source

Finds potentially sensitive info in content. This method has limits on input size, processing time, and output size. When no InfoTypes or CustomInfoTypes are specified in this request, the system will automatically choose what detectors to run. By default this may be all types, but may change over time as detectors are updated. For how to guides, see cloud.google.com/dlp/ docs/inspecting-images and cloud.google.com/dlp/docs/inspecting-text, @param [String] parent

Parent resource name. The format of this value varies depending on whether you
have [specified a processing location](https://cloud.google.com/dlp/docs/
specifying-location): + Projects scope, location specified: `projects/`
PROJECT_ID`/locations/`LOCATION_ID + Projects scope, no location specified (
defaults to global): `projects/`PROJECT_ID The following example `parent`
string specifies a parent project with the identifier `example-project`, and
specifies the `europe-west3` location for processing data: parent=projects/
example-project/locations/europe-west3

@param [Google::Apis::DlpV2::GooglePrivacyDlpV2InspectContentRequest] google_privacy_dlp_v2_inspect_content_request_object @param [String] fields

Selector specifying which fields to include in a partial response.

@param [String] quota_user

Available to use for quota purposes for server-side applications. Can be any
arbitrary string assigned to a user, but should not exceed 40 characters.

@param [Google::Apis::RequestOptions] options

Request-specific options

@yield [result, err] Result & error if block supplied @yieldparam result [Google::Apis::DlpV2::GooglePrivacyDlpV2InspectContentResponse] parsed result object @yieldparam err [StandardError] error object if request failed

@return [Google::Apis::DlpV2::GooglePrivacyDlpV2InspectContentResponse]

@raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification @raise [Google::Apis::AuthorizationError] Authorization is required

# File lib/google/apis/dlp_v2/service.rb, line 2832
def inspect_project_location_content(parent, google_privacy_dlp_v2_inspect_content_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
  command = make_simple_command(:post, 'v2/{+parent}/content:inspect', options)
  command.request_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2InspectContentRequest::Representation
  command.request_object = google_privacy_dlp_v2_inspect_content_request_object
  command.response_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2InspectContentResponse::Representation
  command.response_class = Google::Apis::DlpV2::GooglePrivacyDlpV2InspectContentResponse
  command.params['parent'] = parent unless parent.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  execute_or_queue_command(command, &block)
end
list_info_types(filter: nil, language_code: nil, location_id: nil, parent: nil, fields: nil, quota_user: nil, options: nil, &block) click to toggle source

Returns a list of the sensitive information types that the DLP API supports. See cloud.google.com/dlp/docs/infotypes-reference to learn more. @param [String] filter

filter to only return infoTypes supported by certain parts of the API.
Defaults to supported_by=INSPECT.

@param [String] language_code

BCP-47 language code for localized infoType friendly names. If omitted, or if
localized strings are not available, en-US strings will be returned.

@param [String] location_id

Deprecated. This field has no effect.

@param [String] parent

The parent resource name. The format of this value is as follows: locations/
LOCATION_ID

@param [String] fields

Selector specifying which fields to include in a partial response.

@param [String] quota_user

Available to use for quota purposes for server-side applications. Can be any
arbitrary string assigned to a user, but should not exceed 40 characters.

@param [Google::Apis::RequestOptions] options

Request-specific options

@yield [result, err] Result & error if block supplied @yieldparam result [Google::Apis::DlpV2::GooglePrivacyDlpV2ListInfoTypesResponse] parsed result object @yieldparam err [StandardError] error object if request failed

@return [Google::Apis::DlpV2::GooglePrivacyDlpV2ListInfoTypesResponse]

@raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification @raise [Google::Apis::AuthorizationError] Authorization is required

# File lib/google/apis/dlp_v2/service.rb, line 84
def list_info_types(filter: nil, language_code: nil, location_id: nil, parent: nil, fields: nil, quota_user: nil, options: nil, &block)
  command = make_simple_command(:get, 'v2/infoTypes', options)
  command.response_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2ListInfoTypesResponse::Representation
  command.response_class = Google::Apis::DlpV2::GooglePrivacyDlpV2ListInfoTypesResponse
  command.query['filter'] = filter unless filter.nil?
  command.query['languageCode'] = language_code unless language_code.nil?
  command.query['locationId'] = location_id unless location_id.nil?
  command.query['parent'] = parent unless parent.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  execute_or_queue_command(command, &block)
end
list_location_info_types(parent, filter: nil, language_code: nil, location_id: nil, fields: nil, quota_user: nil, options: nil, &block) click to toggle source

Returns a list of the sensitive information types that the DLP API supports. See cloud.google.com/dlp/docs/infotypes-reference to learn more. @param [String] parent

The parent resource name. The format of this value is as follows: locations/
LOCATION_ID

@param [String] filter

filter to only return infoTypes supported by certain parts of the API.
Defaults to supported_by=INSPECT.

@param [String] language_code

BCP-47 language code for localized infoType friendly names. If omitted, or if
localized strings are not available, en-US strings will be returned.

@param [String] location_id

Deprecated. This field has no effect.

@param [String] fields

Selector specifying which fields to include in a partial response.

@param [String] quota_user

Available to use for quota purposes for server-side applications. Can be any
arbitrary string assigned to a user, but should not exceed 40 characters.

@param [Google::Apis::RequestOptions] options

Request-specific options

@yield [result, err] Result & error if block supplied @yieldparam result [Google::Apis::DlpV2::GooglePrivacyDlpV2ListInfoTypesResponse] parsed result object @yieldparam err [StandardError] error object if request failed

@return [Google::Apis::DlpV2::GooglePrivacyDlpV2ListInfoTypesResponse]

@raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification @raise [Google::Apis::AuthorizationError] Authorization is required

# File lib/google/apis/dlp_v2/service.rb, line 127
def list_location_info_types(parent, filter: nil, language_code: nil, location_id: nil, fields: nil, quota_user: nil, options: nil, &block)
  command = make_simple_command(:get, 'v2/{+parent}/infoTypes', options)
  command.response_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2ListInfoTypesResponse::Representation
  command.response_class = Google::Apis::DlpV2::GooglePrivacyDlpV2ListInfoTypesResponse
  command.params['parent'] = parent unless parent.nil?
  command.query['filter'] = filter unless filter.nil?
  command.query['languageCode'] = language_code unless language_code.nil?
  command.query['locationId'] = location_id unless location_id.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  execute_or_queue_command(command, &block)
end
list_organization_deidentify_templates(parent, location_id: nil, order_by: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block) click to toggle source

Lists DeidentifyTemplates. See cloud.google.com/dlp/docs/creating- templates-deid to learn more. @param [String] parent

Required. Parent resource name. The format of this value varies depending on
the scope of the request (project or organization) and whether you have [
specified a processing location](https://cloud.google.com/dlp/docs/specifying-
location): + Projects scope, location specified: `projects/`PROJECT_ID`/
locations/`LOCATION_ID + Projects scope, no location specified (defaults to
global): `projects/`PROJECT_ID + Organizations scope, location specified: `
organizations/`ORG_ID`/locations/`LOCATION_ID + Organizations scope, no
location specified (defaults to global): `organizations/`ORG_ID The following
example `parent` string specifies a parent project with the identifier `
example-project`, and specifies the `europe-west3` location for processing
data: parent=projects/example-project/locations/europe-west3

@param [String] location_id

Deprecated. This field has no effect.

@param [String] order_by

Comma separated list of fields to order by, followed by `asc` or `desc`
postfix. This list is case-insensitive, default sorting order is ascending,
redundant space characters are insignificant. Example: `name asc,update_time,
create_time desc` Supported fields are: - `create_time`: corresponds to time
the template was created. - `update_time`: corresponds to time the template
was last updated. - `name`: corresponds to template's name. - `display_name`:
corresponds to template's display name.

@param [Fixnum] page_size

Size of the page, can be limited by server. If zero server returns a page of
max size 100.

@param [String] page_token

Page token to continue retrieval. Comes from previous call to `
ListDeidentifyTemplates`.

@param [String] fields

Selector specifying which fields to include in a partial response.

@param [String] quota_user

Available to use for quota purposes for server-side applications. Can be any
arbitrary string assigned to a user, but should not exceed 40 characters.

@param [Google::Apis::RequestOptions] options

Request-specific options

@yield [result, err] Result & error if block supplied @yieldparam result [Google::Apis::DlpV2::GooglePrivacyDlpV2ListDeidentifyTemplatesResponse] parsed result object @yieldparam err [StandardError] error object if request failed

@return [Google::Apis::DlpV2::GooglePrivacyDlpV2ListDeidentifyTemplatesResponse]

@raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification @raise [Google::Apis::AuthorizationError] Authorization is required

# File lib/google/apis/dlp_v2/service.rb, line 298
def list_organization_deidentify_templates(parent, location_id: nil, order_by: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
  command = make_simple_command(:get, 'v2/{+parent}/deidentifyTemplates', options)
  command.response_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2ListDeidentifyTemplatesResponse::Representation
  command.response_class = Google::Apis::DlpV2::GooglePrivacyDlpV2ListDeidentifyTemplatesResponse
  command.params['parent'] = parent unless parent.nil?
  command.query['locationId'] = location_id unless location_id.nil?
  command.query['orderBy'] = order_by unless order_by.nil?
  command.query['pageSize'] = page_size unless page_size.nil?
  command.query['pageToken'] = page_token unless page_token.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  execute_or_queue_command(command, &block)
end
list_organization_inspect_templates(parent, location_id: nil, order_by: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block) click to toggle source

Lists InspectTemplates. See cloud.google.com/dlp/docs/creating- templates to learn more. @param [String] parent

Required. Parent resource name. The format of this value varies depending on
the scope of the request (project or organization) and whether you have [
specified a processing location](https://cloud.google.com/dlp/docs/specifying-
location): + Projects scope, location specified: `projects/`PROJECT_ID`/
locations/`LOCATION_ID + Projects scope, no location specified (defaults to
global): `projects/`PROJECT_ID + Organizations scope, location specified: `
organizations/`ORG_ID`/locations/`LOCATION_ID + Organizations scope, no
location specified (defaults to global): `organizations/`ORG_ID The following
example `parent` string specifies a parent project with the identifier `
example-project`, and specifies the `europe-west3` location for processing
data: parent=projects/example-project/locations/europe-west3

@param [String] location_id

Deprecated. This field has no effect.

@param [String] order_by

Comma separated list of fields to order by, followed by `asc` or `desc`
postfix. This list is case-insensitive, default sorting order is ascending,
redundant space characters are insignificant. Example: `name asc,update_time,
create_time desc` Supported fields are: - `create_time`: corresponds to time
the template was created. - `update_time`: corresponds to time the template
was last updated. - `name`: corresponds to template's name. - `display_name`:
corresponds to template's display name.

@param [Fixnum] page_size

Size of the page, can be limited by server. If zero server returns a page of
max size 100.

@param [String] page_token

Page token to continue retrieval. Comes from previous call to `
ListInspectTemplates`.

@param [String] fields

Selector specifying which fields to include in a partial response.

@param [String] quota_user

Available to use for quota purposes for server-side applications. Can be any
arbitrary string assigned to a user, but should not exceed 40 characters.

@param [Google::Apis::RequestOptions] options

Request-specific options

@yield [result, err] Result & error if block supplied @yieldparam result [Google::Apis::DlpV2::GooglePrivacyDlpV2ListInspectTemplatesResponse] parsed result object @yieldparam err [StandardError] error object if request failed

@return [Google::Apis::DlpV2::GooglePrivacyDlpV2ListInspectTemplatesResponse]

@raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification @raise [Google::Apis::AuthorizationError] Authorization is required

# File lib/google/apis/dlp_v2/service.rb, line 506
def list_organization_inspect_templates(parent, location_id: nil, order_by: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
  command = make_simple_command(:get, 'v2/{+parent}/inspectTemplates', options)
  command.response_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2ListInspectTemplatesResponse::Representation
  command.response_class = Google::Apis::DlpV2::GooglePrivacyDlpV2ListInspectTemplatesResponse
  command.params['parent'] = parent unless parent.nil?
  command.query['locationId'] = location_id unless location_id.nil?
  command.query['orderBy'] = order_by unless order_by.nil?
  command.query['pageSize'] = page_size unless page_size.nil?
  command.query['pageToken'] = page_token unless page_token.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  execute_or_queue_command(command, &block)
end
list_organization_location_deidentify_templates(parent, location_id: nil, order_by: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block) click to toggle source

Lists DeidentifyTemplates. See cloud.google.com/dlp/docs/creating- templates-deid to learn more. @param [String] parent

Required. Parent resource name. The format of this value varies depending on
the scope of the request (project or organization) and whether you have [
specified a processing location](https://cloud.google.com/dlp/docs/specifying-
location): + Projects scope, location specified: `projects/`PROJECT_ID`/
locations/`LOCATION_ID + Projects scope, no location specified (defaults to
global): `projects/`PROJECT_ID + Organizations scope, location specified: `
organizations/`ORG_ID`/locations/`LOCATION_ID + Organizations scope, no
location specified (defaults to global): `organizations/`ORG_ID The following
example `parent` string specifies a parent project with the identifier `
example-project`, and specifies the `europe-west3` location for processing
data: parent=projects/example-project/locations/europe-west3

@param [String] location_id

Deprecated. This field has no effect.

@param [String] order_by

Comma separated list of fields to order by, followed by `asc` or `desc`
postfix. This list is case-insensitive, default sorting order is ascending,
redundant space characters are insignificant. Example: `name asc,update_time,
create_time desc` Supported fields are: - `create_time`: corresponds to time
the template was created. - `update_time`: corresponds to time the template
was last updated. - `name`: corresponds to template's name. - `display_name`:
corresponds to template's display name.

@param [Fixnum] page_size

Size of the page, can be limited by server. If zero server returns a page of
max size 100.

@param [String] page_token

Page token to continue retrieval. Comes from previous call to `
ListDeidentifyTemplates`.

@param [String] fields

Selector specifying which fields to include in a partial response.

@param [String] quota_user

Available to use for quota purposes for server-side applications. Can be any
arbitrary string assigned to a user, but should not exceed 40 characters.

@param [Google::Apis::RequestOptions] options

Request-specific options

@yield [result, err] Result & error if block supplied @yieldparam result [Google::Apis::DlpV2::GooglePrivacyDlpV2ListDeidentifyTemplatesResponse] parsed result object @yieldparam err [StandardError] error object if request failed

@return [Google::Apis::DlpV2::GooglePrivacyDlpV2ListDeidentifyTemplatesResponse]

@raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification @raise [Google::Apis::AuthorizationError] Authorization is required

# File lib/google/apis/dlp_v2/service.rb, line 714
def list_organization_location_deidentify_templates(parent, location_id: nil, order_by: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
  command = make_simple_command(:get, 'v2/{+parent}/deidentifyTemplates', options)
  command.response_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2ListDeidentifyTemplatesResponse::Representation
  command.response_class = Google::Apis::DlpV2::GooglePrivacyDlpV2ListDeidentifyTemplatesResponse
  command.params['parent'] = parent unless parent.nil?
  command.query['locationId'] = location_id unless location_id.nil?
  command.query['orderBy'] = order_by unless order_by.nil?
  command.query['pageSize'] = page_size unless page_size.nil?
  command.query['pageToken'] = page_token unless page_token.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  execute_or_queue_command(command, &block)
end
list_organization_location_dlp_jobs(parent, filter: nil, location_id: nil, order_by: nil, page_size: nil, page_token: nil, type: nil, fields: nil, quota_user: nil, options: nil, &block) click to toggle source

Lists DlpJobs that match the specified filter in the request. See https:// cloud.google.com/dlp/docs/inspecting-storage and cloud.google.com/dlp/ docs/compute-risk-analysis to learn more. @param [String] parent

Required. Parent resource name. The format of this value varies depending on
whether you have [specified a processing location](https://cloud.google.com/
dlp/docs/specifying-location): + Projects scope, location specified: `projects/
`PROJECT_ID`/locations/`LOCATION_ID + Projects scope, no location specified (
defaults to global): `projects/`PROJECT_ID The following example `parent`
string specifies a parent project with the identifier `example-project`, and
specifies the `europe-west3` location for processing data: parent=projects/
example-project/locations/europe-west3

@param [String] filter

Allows filtering. Supported syntax: * Filter expressions are made up of one or
more restrictions. * Restrictions can be combined by `AND` or `OR` logical
operators. A sequence of restrictions implicitly uses `AND`. * A restriction
has the form of ``field` `operator` `value``. * Supported fields/values for
inspect jobs: - `state` - PENDING|RUNNING|CANCELED|FINISHED|FAILED - `
inspected_storage` - DATASTORE|CLOUD_STORAGE|BIGQUERY - `trigger_name` - The
resource name of the trigger that created job. - 'end_time` - Corresponds to
time the job finished. - 'start_time` - Corresponds to time the job finished. *
Supported fields for risk analysis jobs: - `state` - RUNNING|CANCELED|
FINISHED|FAILED - 'end_time` - Corresponds to time the job finished. - '
start_time` - Corresponds to time the job finished. * The operator must be `=`
or `!=`. Examples: * inspected_storage = cloud_storage AND state = done *
inspected_storage = cloud_storage OR inspected_storage = bigquery *
inspected_storage = cloud_storage AND (state = done OR state = canceled) *
end_time > \"2017-12-12T00:00:00+00:00\" The length of this field should be no
more than 500 characters.

@param [String] location_id

Deprecated. This field has no effect.

@param [String] order_by

Comma separated list of fields to order by, followed by `asc` or `desc`
postfix. This list is case-insensitive, default sorting order is ascending,
redundant space characters are insignificant. Example: `name asc, end_time asc,
create_time desc` Supported fields are: - `create_time`: corresponds to time
the job was created. - `end_time`: corresponds to time the job ended. - `name`:
corresponds to job's name. - `state`: corresponds to `state`

@param [Fixnum] page_size

The standard list page size.

@param [String] page_token

The standard list page token.

@param [String] type

The type of job. Defaults to `DlpJobType.INSPECT`

@param [String] fields

Selector specifying which fields to include in a partial response.

@param [String] quota_user

Available to use for quota purposes for server-side applications. Can be any
arbitrary string assigned to a user, but should not exceed 40 characters.

@param [Google::Apis::RequestOptions] options

Request-specific options

@yield [result, err] Result & error if block supplied @yieldparam result [Google::Apis::DlpV2::GooglePrivacyDlpV2ListDlpJobsResponse] parsed result object @yieldparam err [StandardError] error object if request failed

@return [Google::Apis::DlpV2::GooglePrivacyDlpV2ListDlpJobsResponse]

@raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification @raise [Google::Apis::AuthorizationError] Authorization is required

# File lib/google/apis/dlp_v2/service.rb, line 825
def list_organization_location_dlp_jobs(parent, filter: nil, location_id: nil, order_by: nil, page_size: nil, page_token: nil, type: nil, fields: nil, quota_user: nil, options: nil, &block)
  command = make_simple_command(:get, 'v2/{+parent}/dlpJobs', options)
  command.response_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2ListDlpJobsResponse::Representation
  command.response_class = Google::Apis::DlpV2::GooglePrivacyDlpV2ListDlpJobsResponse
  command.params['parent'] = parent unless parent.nil?
  command.query['filter'] = filter unless filter.nil?
  command.query['locationId'] = location_id unless location_id.nil?
  command.query['orderBy'] = order_by unless order_by.nil?
  command.query['pageSize'] = page_size unless page_size.nil?
  command.query['pageToken'] = page_token unless page_token.nil?
  command.query['type'] = type unless type.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  execute_or_queue_command(command, &block)
end
list_organization_location_inspect_templates(parent, location_id: nil, order_by: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block) click to toggle source

Lists InspectTemplates. See cloud.google.com/dlp/docs/creating- templates to learn more. @param [String] parent

Required. Parent resource name. The format of this value varies depending on
the scope of the request (project or organization) and whether you have [
specified a processing location](https://cloud.google.com/dlp/docs/specifying-
location): + Projects scope, location specified: `projects/`PROJECT_ID`/
locations/`LOCATION_ID + Projects scope, no location specified (defaults to
global): `projects/`PROJECT_ID + Organizations scope, location specified: `
organizations/`ORG_ID`/locations/`LOCATION_ID + Organizations scope, no
location specified (defaults to global): `organizations/`ORG_ID The following
example `parent` string specifies a parent project with the identifier `
example-project`, and specifies the `europe-west3` location for processing
data: parent=projects/example-project/locations/europe-west3

@param [String] location_id

Deprecated. This field has no effect.

@param [String] order_by

Comma separated list of fields to order by, followed by `asc` or `desc`
postfix. This list is case-insensitive, default sorting order is ascending,
redundant space characters are insignificant. Example: `name asc,update_time,
create_time desc` Supported fields are: - `create_time`: corresponds to time
the template was created. - `update_time`: corresponds to time the template
was last updated. - `name`: corresponds to template's name. - `display_name`:
corresponds to template's display name.

@param [Fixnum] page_size

Size of the page, can be limited by server. If zero server returns a page of
max size 100.

@param [String] page_token

Page token to continue retrieval. Comes from previous call to `
ListInspectTemplates`.

@param [String] fields

Selector specifying which fields to include in a partial response.

@param [String] quota_user

Available to use for quota purposes for server-side applications. Can be any
arbitrary string assigned to a user, but should not exceed 40 characters.

@param [Google::Apis::RequestOptions] options

Request-specific options

@yield [result, err] Result & error if block supplied @yieldparam result [Google::Apis::DlpV2::GooglePrivacyDlpV2ListInspectTemplatesResponse] parsed result object @yieldparam err [StandardError] error object if request failed

@return [Google::Apis::DlpV2::GooglePrivacyDlpV2ListInspectTemplatesResponse]

@raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification @raise [Google::Apis::AuthorizationError] Authorization is required

# File lib/google/apis/dlp_v2/service.rb, line 999
def list_organization_location_inspect_templates(parent, location_id: nil, order_by: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
  command = make_simple_command(:get, 'v2/{+parent}/inspectTemplates', options)
  command.response_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2ListInspectTemplatesResponse::Representation
  command.response_class = Google::Apis::DlpV2::GooglePrivacyDlpV2ListInspectTemplatesResponse
  command.params['parent'] = parent unless parent.nil?
  command.query['locationId'] = location_id unless location_id.nil?
  command.query['orderBy'] = order_by unless order_by.nil?
  command.query['pageSize'] = page_size unless page_size.nil?
  command.query['pageToken'] = page_token unless page_token.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  execute_or_queue_command(command, &block)
end
list_organization_location_job_triggers(parent, filter: nil, location_id: nil, order_by: nil, page_size: nil, page_token: nil, type: nil, fields: nil, quota_user: nil, options: nil, &block) click to toggle source

Lists job triggers. See cloud.google.com/dlp/docs/creating-job- triggers to learn more. @param [String] parent

Required. Parent resource name. The format of this value varies depending on
whether you have [specified a processing location](https://cloud.google.com/
dlp/docs/specifying-location): + Projects scope, location specified: `projects/
`PROJECT_ID`/locations/`LOCATION_ID + Projects scope, no location specified (
defaults to global): `projects/`PROJECT_ID The following example `parent`
string specifies a parent project with the identifier `example-project`, and
specifies the `europe-west3` location for processing data: parent=projects/
example-project/locations/europe-west3

@param [String] filter

Allows filtering. Supported syntax: * Filter expressions are made up of one or
more restrictions. * Restrictions can be combined by `AND` or `OR` logical
operators. A sequence of restrictions implicitly uses `AND`. * A restriction
has the form of ``field` `operator` `value``. * Supported fields/values for
inspect triggers: - `status` - HEALTHY|PAUSED|CANCELLED - `inspected_storage` -
DATASTORE|CLOUD_STORAGE|BIGQUERY - 'last_run_time` - RFC 3339 formatted
timestamp, surrounded by quotation marks. Nanoseconds are ignored. - '
error_count' - Number of errors that have occurred while running. * The
operator must be `=` or `!=` for status and inspected_storage. Examples: *
inspected_storage = cloud_storage AND status = HEALTHY * inspected_storage =
cloud_storage OR inspected_storage = bigquery * inspected_storage =
cloud_storage AND (state = PAUSED OR state = HEALTHY) * last_run_time > \"2017-
12-12T00:00:00+00:00\" The length of this field should be no more than 500
characters.

@param [String] location_id

Deprecated. This field has no effect.

@param [String] order_by

Comma separated list of triggeredJob fields to order by, followed by `asc` or `
desc` postfix. This list is case-insensitive, default sorting order is
ascending, redundant space characters are insignificant. Example: `name asc,
update_time, create_time desc` Supported fields are: - `create_time`:
corresponds to time the JobTrigger was created. - `update_time`: corresponds
to time the JobTrigger was last updated. - `last_run_time`: corresponds to the
last time the JobTrigger ran. - `name`: corresponds to JobTrigger's name. - `
display_name`: corresponds to JobTrigger's display name. - `status`:
corresponds to JobTrigger's status.

@param [Fixnum] page_size

Size of the page, can be limited by a server.

@param [String] page_token

Page token to continue retrieval. Comes from previous call to ListJobTriggers.
`order_by` field must not change for subsequent calls.

@param [String] type

The type of jobs. Will use `DlpJobType.INSPECT` if not set.

@param [String] fields

Selector specifying which fields to include in a partial response.

@param [String] quota_user

Available to use for quota purposes for server-side applications. Can be any
arbitrary string assigned to a user, but should not exceed 40 characters.

@param [Google::Apis::RequestOptions] options

Request-specific options

@yield [result, err] Result & error if block supplied @yieldparam result [Google::Apis::DlpV2::GooglePrivacyDlpV2ListJobTriggersResponse] parsed result object @yieldparam err [StandardError] error object if request failed

@return [Google::Apis::DlpV2::GooglePrivacyDlpV2ListJobTriggersResponse]

@raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification @raise [Google::Apis::AuthorizationError] Authorization is required

# File lib/google/apis/dlp_v2/service.rb, line 1217
def list_organization_location_job_triggers(parent, filter: nil, location_id: nil, order_by: nil, page_size: nil, page_token: nil, type: nil, fields: nil, quota_user: nil, options: nil, &block)
  command = make_simple_command(:get, 'v2/{+parent}/jobTriggers', options)
  command.response_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2ListJobTriggersResponse::Representation
  command.response_class = Google::Apis::DlpV2::GooglePrivacyDlpV2ListJobTriggersResponse
  command.params['parent'] = parent unless parent.nil?
  command.query['filter'] = filter unless filter.nil?
  command.query['locationId'] = location_id unless location_id.nil?
  command.query['orderBy'] = order_by unless order_by.nil?
  command.query['pageSize'] = page_size unless page_size.nil?
  command.query['pageToken'] = page_token unless page_token.nil?
  command.query['type'] = type unless type.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  execute_or_queue_command(command, &block)
end
list_organization_location_stored_info_types(parent, location_id: nil, order_by: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block) click to toggle source

Lists stored infoTypes. See cloud.google.com/dlp/docs/creating-stored- infotypes to learn more. @param [String] parent

Required. Parent resource name. The format of this value varies depending on
the scope of the request (project or organization) and whether you have [
specified a processing location](https://cloud.google.com/dlp/docs/specifying-
location): + Projects scope, location specified: `projects/`PROJECT_ID`/
locations/`LOCATION_ID + Projects scope, no location specified (defaults to
global): `projects/`PROJECT_ID + Organizations scope, location specified: `
organizations/`ORG_ID`/locations/`LOCATION_ID + Organizations scope, no
location specified (defaults to global): `organizations/`ORG_ID The following
example `parent` string specifies a parent project with the identifier `
example-project`, and specifies the `europe-west3` location for processing
data: parent=projects/example-project/locations/europe-west3

@param [String] location_id

Deprecated. This field has no effect.

@param [String] order_by

Comma separated list of fields to order by, followed by `asc` or `desc`
postfix. This list is case-insensitive, default sorting order is ascending,
redundant space characters are insignificant. Example: `name asc, display_name,
create_time desc` Supported fields are: - `create_time`: corresponds to time
the most recent version of the resource was created. - `state`: corresponds to
the state of the resource. - `name`: corresponds to resource name. - `
display_name`: corresponds to info type's display name.

@param [Fixnum] page_size

Size of the page, can be limited by server. If zero server returns a page of
max size 100.

@param [String] page_token

Page token to continue retrieval. Comes from previous call to `
ListStoredInfoTypes`.

@param [String] fields

Selector specifying which fields to include in a partial response.

@param [String] quota_user

Available to use for quota purposes for server-side applications. Can be any
arbitrary string assigned to a user, but should not exceed 40 characters.

@param [Google::Apis::RequestOptions] options

Request-specific options

@yield [result, err] Result & error if block supplied @yieldparam result [Google::Apis::DlpV2::GooglePrivacyDlpV2ListStoredInfoTypesResponse] parsed result object @yieldparam err [StandardError] error object if request failed

@return [Google::Apis::DlpV2::GooglePrivacyDlpV2ListStoredInfoTypesResponse]

@raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification @raise [Google::Apis::AuthorizationError] Authorization is required

# File lib/google/apis/dlp_v2/service.rb, line 1425
def list_organization_location_stored_info_types(parent, location_id: nil, order_by: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
  command = make_simple_command(:get, 'v2/{+parent}/storedInfoTypes', options)
  command.response_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2ListStoredInfoTypesResponse::Representation
  command.response_class = Google::Apis::DlpV2::GooglePrivacyDlpV2ListStoredInfoTypesResponse
  command.params['parent'] = parent unless parent.nil?
  command.query['locationId'] = location_id unless location_id.nil?
  command.query['orderBy'] = order_by unless order_by.nil?
  command.query['pageSize'] = page_size unless page_size.nil?
  command.query['pageToken'] = page_token unless page_token.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  execute_or_queue_command(command, &block)
end
list_organization_stored_info_types(parent, location_id: nil, order_by: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block) click to toggle source

Lists stored infoTypes. See cloud.google.com/dlp/docs/creating-stored- infotypes to learn more. @param [String] parent

Required. Parent resource name. The format of this value varies depending on
the scope of the request (project or organization) and whether you have [
specified a processing location](https://cloud.google.com/dlp/docs/specifying-
location): + Projects scope, location specified: `projects/`PROJECT_ID`/
locations/`LOCATION_ID + Projects scope, no location specified (defaults to
global): `projects/`PROJECT_ID + Organizations scope, location specified: `
organizations/`ORG_ID`/locations/`LOCATION_ID + Organizations scope, no
location specified (defaults to global): `organizations/`ORG_ID The following
example `parent` string specifies a parent project with the identifier `
example-project`, and specifies the `europe-west3` location for processing
data: parent=projects/example-project/locations/europe-west3

@param [String] location_id

Deprecated. This field has no effect.

@param [String] order_by

Comma separated list of fields to order by, followed by `asc` or `desc`
postfix. This list is case-insensitive, default sorting order is ascending,
redundant space characters are insignificant. Example: `name asc, display_name,
create_time desc` Supported fields are: - `create_time`: corresponds to time
the most recent version of the resource was created. - `state`: corresponds to
the state of the resource. - `name`: corresponds to resource name. - `
display_name`: corresponds to info type's display name.

@param [Fixnum] page_size

Size of the page, can be limited by server. If zero server returns a page of
max size 100.

@param [String] page_token

Page token to continue retrieval. Comes from previous call to `
ListStoredInfoTypes`.

@param [String] fields

Selector specifying which fields to include in a partial response.

@param [String] quota_user

Available to use for quota purposes for server-side applications. Can be any
arbitrary string assigned to a user, but should not exceed 40 characters.

@param [Google::Apis::RequestOptions] options

Request-specific options

@yield [result, err] Result & error if block supplied @yieldparam result [Google::Apis::DlpV2::GooglePrivacyDlpV2ListStoredInfoTypesResponse] parsed result object @yieldparam err [StandardError] error object if request failed

@return [Google::Apis::DlpV2::GooglePrivacyDlpV2ListStoredInfoTypesResponse]

@raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification @raise [Google::Apis::AuthorizationError] Authorization is required

# File lib/google/apis/dlp_v2/service.rb, line 1633
def list_organization_stored_info_types(parent, location_id: nil, order_by: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
  command = make_simple_command(:get, 'v2/{+parent}/storedInfoTypes', options)
  command.response_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2ListStoredInfoTypesResponse::Representation
  command.response_class = Google::Apis::DlpV2::GooglePrivacyDlpV2ListStoredInfoTypesResponse
  command.params['parent'] = parent unless parent.nil?
  command.query['locationId'] = location_id unless location_id.nil?
  command.query['orderBy'] = order_by unless order_by.nil?
  command.query['pageSize'] = page_size unless page_size.nil?
  command.query['pageToken'] = page_token unless page_token.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  execute_or_queue_command(command, &block)
end
list_project_deidentify_templates(parent, location_id: nil, order_by: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block) click to toggle source

Lists DeidentifyTemplates. See cloud.google.com/dlp/docs/creating- templates-deid to learn more. @param [String] parent

Required. Parent resource name. The format of this value varies depending on
the scope of the request (project or organization) and whether you have [
specified a processing location](https://cloud.google.com/dlp/docs/specifying-
location): + Projects scope, location specified: `projects/`PROJECT_ID`/
locations/`LOCATION_ID + Projects scope, no location specified (defaults to
global): `projects/`PROJECT_ID + Organizations scope, location specified: `
organizations/`ORG_ID`/locations/`LOCATION_ID + Organizations scope, no
location specified (defaults to global): `organizations/`ORG_ID The following
example `parent` string specifies a parent project with the identifier `
example-project`, and specifies the `europe-west3` location for processing
data: parent=projects/example-project/locations/europe-west3

@param [String] location_id

Deprecated. This field has no effect.

@param [String] order_by

Comma separated list of fields to order by, followed by `asc` or `desc`
postfix. This list is case-insensitive, default sorting order is ascending,
redundant space characters are insignificant. Example: `name asc,update_time,
create_time desc` Supported fields are: - `create_time`: corresponds to time
the template was created. - `update_time`: corresponds to time the template
was last updated. - `name`: corresponds to template's name. - `display_name`:
corresponds to template's display name.

@param [Fixnum] page_size

Size of the page, can be limited by server. If zero server returns a page of
max size 100.

@param [String] page_token

Page token to continue retrieval. Comes from previous call to `
ListDeidentifyTemplates`.

@param [String] fields

Selector specifying which fields to include in a partial response.

@param [String] quota_user

Available to use for quota purposes for server-side applications. Can be any
arbitrary string assigned to a user, but should not exceed 40 characters.

@param [Google::Apis::RequestOptions] options

Request-specific options

@yield [result, err] Result & error if block supplied @yieldparam result [Google::Apis::DlpV2::GooglePrivacyDlpV2ListDeidentifyTemplatesResponse] parsed result object @yieldparam err [StandardError] error object if request failed

@return [Google::Apis::DlpV2::GooglePrivacyDlpV2ListDeidentifyTemplatesResponse]

@raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification @raise [Google::Apis::AuthorizationError] Authorization is required

# File lib/google/apis/dlp_v2/service.rb, line 1974
def list_project_deidentify_templates(parent, location_id: nil, order_by: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
  command = make_simple_command(:get, 'v2/{+parent}/deidentifyTemplates', options)
  command.response_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2ListDeidentifyTemplatesResponse::Representation
  command.response_class = Google::Apis::DlpV2::GooglePrivacyDlpV2ListDeidentifyTemplatesResponse
  command.params['parent'] = parent unless parent.nil?
  command.query['locationId'] = location_id unless location_id.nil?
  command.query['orderBy'] = order_by unless order_by.nil?
  command.query['pageSize'] = page_size unless page_size.nil?
  command.query['pageToken'] = page_token unless page_token.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  execute_or_queue_command(command, &block)
end
list_project_dlp_jobs(parent, filter: nil, location_id: nil, order_by: nil, page_size: nil, page_token: nil, type: nil, fields: nil, quota_user: nil, options: nil, &block) click to toggle source

Lists DlpJobs that match the specified filter in the request. See https:// cloud.google.com/dlp/docs/inspecting-storage and cloud.google.com/dlp/ docs/compute-risk-analysis to learn more. @param [String] parent

Required. Parent resource name. The format of this value varies depending on
whether you have [specified a processing location](https://cloud.google.com/
dlp/docs/specifying-location): + Projects scope, location specified: `projects/
`PROJECT_ID`/locations/`LOCATION_ID + Projects scope, no location specified (
defaults to global): `projects/`PROJECT_ID The following example `parent`
string specifies a parent project with the identifier `example-project`, and
specifies the `europe-west3` location for processing data: parent=projects/
example-project/locations/europe-west3

@param [String] filter

Allows filtering. Supported syntax: * Filter expressions are made up of one or
more restrictions. * Restrictions can be combined by `AND` or `OR` logical
operators. A sequence of restrictions implicitly uses `AND`. * A restriction
has the form of ``field` `operator` `value``. * Supported fields/values for
inspect jobs: - `state` - PENDING|RUNNING|CANCELED|FINISHED|FAILED - `
inspected_storage` - DATASTORE|CLOUD_STORAGE|BIGQUERY - `trigger_name` - The
resource name of the trigger that created job. - 'end_time` - Corresponds to
time the job finished. - 'start_time` - Corresponds to time the job finished. *
Supported fields for risk analysis jobs: - `state` - RUNNING|CANCELED|
FINISHED|FAILED - 'end_time` - Corresponds to time the job finished. - '
start_time` - Corresponds to time the job finished. * The operator must be `=`
or `!=`. Examples: * inspected_storage = cloud_storage AND state = done *
inspected_storage = cloud_storage OR inspected_storage = bigquery *
inspected_storage = cloud_storage AND (state = done OR state = canceled) *
end_time > \"2017-12-12T00:00:00+00:00\" The length of this field should be no
more than 500 characters.

@param [String] location_id

Deprecated. This field has no effect.

@param [String] order_by

Comma separated list of fields to order by, followed by `asc` or `desc`
postfix. This list is case-insensitive, default sorting order is ascending,
redundant space characters are insignificant. Example: `name asc, end_time asc,
create_time desc` Supported fields are: - `create_time`: corresponds to time
the job was created. - `end_time`: corresponds to time the job ended. - `name`:
corresponds to job's name. - `state`: corresponds to `state`

@param [Fixnum] page_size

The standard list page size.

@param [String] page_token

The standard list page token.

@param [String] type

The type of job. Defaults to `DlpJobType.INSPECT`

@param [String] fields

Selector specifying which fields to include in a partial response.

@param [String] quota_user

Available to use for quota purposes for server-side applications. Can be any
arbitrary string assigned to a user, but should not exceed 40 characters.

@param [Google::Apis::RequestOptions] options

Request-specific options

@yield [result, err] Result & error if block supplied @yieldparam result [Google::Apis::DlpV2::GooglePrivacyDlpV2ListDlpJobsResponse] parsed result object @yieldparam err [StandardError] error object if request failed

@return [Google::Apis::DlpV2::GooglePrivacyDlpV2ListDlpJobsResponse]

@raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification @raise [Google::Apis::AuthorizationError] Authorization is required

# File lib/google/apis/dlp_v2/service.rb, line 2231
def list_project_dlp_jobs(parent, filter: nil, location_id: nil, order_by: nil, page_size: nil, page_token: nil, type: nil, fields: nil, quota_user: nil, options: nil, &block)
  command = make_simple_command(:get, 'v2/{+parent}/dlpJobs', options)
  command.response_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2ListDlpJobsResponse::Representation
  command.response_class = Google::Apis::DlpV2::GooglePrivacyDlpV2ListDlpJobsResponse
  command.params['parent'] = parent unless parent.nil?
  command.query['filter'] = filter unless filter.nil?
  command.query['locationId'] = location_id unless location_id.nil?
  command.query['orderBy'] = order_by unless order_by.nil?
  command.query['pageSize'] = page_size unless page_size.nil?
  command.query['pageToken'] = page_token unless page_token.nil?
  command.query['type'] = type unless type.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  execute_or_queue_command(command, &block)
end
list_project_inspect_templates(parent, location_id: nil, order_by: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block) click to toggle source

Lists InspectTemplates. See cloud.google.com/dlp/docs/creating- templates to learn more. @param [String] parent

Required. Parent resource name. The format of this value varies depending on
the scope of the request (project or organization) and whether you have [
specified a processing location](https://cloud.google.com/dlp/docs/specifying-
location): + Projects scope, location specified: `projects/`PROJECT_ID`/
locations/`LOCATION_ID + Projects scope, no location specified (defaults to
global): `projects/`PROJECT_ID + Organizations scope, location specified: `
organizations/`ORG_ID`/locations/`LOCATION_ID + Organizations scope, no
location specified (defaults to global): `organizations/`ORG_ID The following
example `parent` string specifies a parent project with the identifier `
example-project`, and specifies the `europe-west3` location for processing
data: parent=projects/example-project/locations/europe-west3

@param [String] location_id

Deprecated. This field has no effect.

@param [String] order_by

Comma separated list of fields to order by, followed by `asc` or `desc`
postfix. This list is case-insensitive, default sorting order is ascending,
redundant space characters are insignificant. Example: `name asc,update_time,
create_time desc` Supported fields are: - `create_time`: corresponds to time
the template was created. - `update_time`: corresponds to time the template
was last updated. - `name`: corresponds to template's name. - `display_name`:
corresponds to template's display name.

@param [Fixnum] page_size

Size of the page, can be limited by server. If zero server returns a page of
max size 100.

@param [String] page_token

Page token to continue retrieval. Comes from previous call to `
ListInspectTemplates`.

@param [String] fields

Selector specifying which fields to include in a partial response.

@param [String] quota_user

Available to use for quota purposes for server-side applications. Can be any
arbitrary string assigned to a user, but should not exceed 40 characters.

@param [Google::Apis::RequestOptions] options

Request-specific options

@yield [result, err] Result & error if block supplied @yieldparam result [Google::Apis::DlpV2::GooglePrivacyDlpV2ListInspectTemplatesResponse] parsed result object @yieldparam err [StandardError] error object if request failed

@return [Google::Apis::DlpV2::GooglePrivacyDlpV2ListInspectTemplatesResponse]

@raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification @raise [Google::Apis::AuthorizationError] Authorization is required

# File lib/google/apis/dlp_v2/service.rb, line 2450
def list_project_inspect_templates(parent, location_id: nil, order_by: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
  command = make_simple_command(:get, 'v2/{+parent}/inspectTemplates', options)
  command.response_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2ListInspectTemplatesResponse::Representation
  command.response_class = Google::Apis::DlpV2::GooglePrivacyDlpV2ListInspectTemplatesResponse
  command.params['parent'] = parent unless parent.nil?
  command.query['locationId'] = location_id unless location_id.nil?
  command.query['orderBy'] = order_by unless order_by.nil?
  command.query['pageSize'] = page_size unless page_size.nil?
  command.query['pageToken'] = page_token unless page_token.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  execute_or_queue_command(command, &block)
end
list_project_job_triggers(parent, filter: nil, location_id: nil, order_by: nil, page_size: nil, page_token: nil, type: nil, fields: nil, quota_user: nil, options: nil, &block) click to toggle source

Lists job triggers. See cloud.google.com/dlp/docs/creating-job- triggers to learn more. @param [String] parent

Required. Parent resource name. The format of this value varies depending on
whether you have [specified a processing location](https://cloud.google.com/
dlp/docs/specifying-location): + Projects scope, location specified: `projects/
`PROJECT_ID`/locations/`LOCATION_ID + Projects scope, no location specified (
defaults to global): `projects/`PROJECT_ID The following example `parent`
string specifies a parent project with the identifier `example-project`, and
specifies the `europe-west3` location for processing data: parent=projects/
example-project/locations/europe-west3

@param [String] filter

Allows filtering. Supported syntax: * Filter expressions are made up of one or
more restrictions. * Restrictions can be combined by `AND` or `OR` logical
operators. A sequence of restrictions implicitly uses `AND`. * A restriction
has the form of ``field` `operator` `value``. * Supported fields/values for
inspect triggers: - `status` - HEALTHY|PAUSED|CANCELLED - `inspected_storage` -
DATASTORE|CLOUD_STORAGE|BIGQUERY - 'last_run_time` - RFC 3339 formatted
timestamp, surrounded by quotation marks. Nanoseconds are ignored. - '
error_count' - Number of errors that have occurred while running. * The
operator must be `=` or `!=` for status and inspected_storage. Examples: *
inspected_storage = cloud_storage AND status = HEALTHY * inspected_storage =
cloud_storage OR inspected_storage = bigquery * inspected_storage =
cloud_storage AND (state = PAUSED OR state = HEALTHY) * last_run_time > \"2017-
12-12T00:00:00+00:00\" The length of this field should be no more than 500
characters.

@param [String] location_id

Deprecated. This field has no effect.

@param [String] order_by

Comma separated list of triggeredJob fields to order by, followed by `asc` or `
desc` postfix. This list is case-insensitive, default sorting order is
ascending, redundant space characters are insignificant. Example: `name asc,
update_time, create_time desc` Supported fields are: - `create_time`:
corresponds to time the JobTrigger was created. - `update_time`: corresponds
to time the JobTrigger was last updated. - `last_run_time`: corresponds to the
last time the JobTrigger ran. - `name`: corresponds to JobTrigger's name. - `
display_name`: corresponds to JobTrigger's display name. - `status`:
corresponds to JobTrigger's status.

@param [Fixnum] page_size

Size of the page, can be limited by a server.

@param [String] page_token

Page token to continue retrieval. Comes from previous call to ListJobTriggers.
`order_by` field must not change for subsequent calls.

@param [String] type

The type of jobs. Will use `DlpJobType.INSPECT` if not set.

@param [String] fields

Selector specifying which fields to include in a partial response.

@param [String] quota_user

Available to use for quota purposes for server-side applications. Can be any
arbitrary string assigned to a user, but should not exceed 40 characters.

@param [Google::Apis::RequestOptions] options

Request-specific options

@yield [result, err] Result & error if block supplied @yieldparam result [Google::Apis::DlpV2::GooglePrivacyDlpV2ListJobTriggersResponse] parsed result object @yieldparam err [StandardError] error object if request failed

@return [Google::Apis::DlpV2::GooglePrivacyDlpV2ListJobTriggersResponse]

@raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification @raise [Google::Apis::AuthorizationError] Authorization is required

# File lib/google/apis/dlp_v2/service.rb, line 2703
def list_project_job_triggers(parent, filter: nil, location_id: nil, order_by: nil, page_size: nil, page_token: nil, type: nil, fields: nil, quota_user: nil, options: nil, &block)
  command = make_simple_command(:get, 'v2/{+parent}/jobTriggers', options)
  command.response_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2ListJobTriggersResponse::Representation
  command.response_class = Google::Apis::DlpV2::GooglePrivacyDlpV2ListJobTriggersResponse
  command.params['parent'] = parent unless parent.nil?
  command.query['filter'] = filter unless filter.nil?
  command.query['locationId'] = location_id unless location_id.nil?
  command.query['orderBy'] = order_by unless order_by.nil?
  command.query['pageSize'] = page_size unless page_size.nil?
  command.query['pageToken'] = page_token unless page_token.nil?
  command.query['type'] = type unless type.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  execute_or_queue_command(command, &block)
end
list_project_location_deidentify_templates(parent, location_id: nil, order_by: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block) click to toggle source

Lists DeidentifyTemplates. See cloud.google.com/dlp/docs/creating- templates-deid to learn more. @param [String] parent

Required. Parent resource name. The format of this value varies depending on
the scope of the request (project or organization) and whether you have [
specified a processing location](https://cloud.google.com/dlp/docs/specifying-
location): + Projects scope, location specified: `projects/`PROJECT_ID`/
locations/`LOCATION_ID + Projects scope, no location specified (defaults to
global): `projects/`PROJECT_ID + Organizations scope, location specified: `
organizations/`ORG_ID`/locations/`LOCATION_ID + Organizations scope, no
location specified (defaults to global): `organizations/`ORG_ID The following
example `parent` string specifies a parent project with the identifier `
example-project`, and specifies the `europe-west3` location for processing
data: parent=projects/example-project/locations/europe-west3

@param [String] location_id

Deprecated. This field has no effect.

@param [String] order_by

Comma separated list of fields to order by, followed by `asc` or `desc`
postfix. This list is case-insensitive, default sorting order is ascending,
redundant space characters are insignificant. Example: `name asc,update_time,
create_time desc` Supported fields are: - `create_time`: corresponds to time
the template was created. - `update_time`: corresponds to time the template
was last updated. - `name`: corresponds to template's name. - `display_name`:
corresponds to template's display name.

@param [Fixnum] page_size

Size of the page, can be limited by server. If zero server returns a page of
max size 100.

@param [String] page_token

Page token to continue retrieval. Comes from previous call to `
ListDeidentifyTemplates`.

@param [String] fields

Selector specifying which fields to include in a partial response.

@param [String] quota_user

Available to use for quota purposes for server-side applications. Can be any
arbitrary string assigned to a user, but should not exceed 40 characters.

@param [Google::Apis::RequestOptions] options

Request-specific options

@yield [result, err] Result & error if block supplied @yieldparam result [Google::Apis::DlpV2::GooglePrivacyDlpV2ListDeidentifyTemplatesResponse] parsed result object @yieldparam err [StandardError] error object if request failed

@return [Google::Apis::DlpV2::GooglePrivacyDlpV2ListDeidentifyTemplatesResponse]

@raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification @raise [Google::Apis::AuthorizationError] Authorization is required

# File lib/google/apis/dlp_v2/service.rb, line 3044
def list_project_location_deidentify_templates(parent, location_id: nil, order_by: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
  command = make_simple_command(:get, 'v2/{+parent}/deidentifyTemplates', options)
  command.response_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2ListDeidentifyTemplatesResponse::Representation
  command.response_class = Google::Apis::DlpV2::GooglePrivacyDlpV2ListDeidentifyTemplatesResponse
  command.params['parent'] = parent unless parent.nil?
  command.query['locationId'] = location_id unless location_id.nil?
  command.query['orderBy'] = order_by unless order_by.nil?
  command.query['pageSize'] = page_size unless page_size.nil?
  command.query['pageToken'] = page_token unless page_token.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  execute_or_queue_command(command, &block)
end
list_project_location_dlp_jobs(parent, filter: nil, location_id: nil, order_by: nil, page_size: nil, page_token: nil, type: nil, fields: nil, quota_user: nil, options: nil, &block) click to toggle source

Lists DlpJobs that match the specified filter in the request. See https:// cloud.google.com/dlp/docs/inspecting-storage and cloud.google.com/dlp/ docs/compute-risk-analysis to learn more. @param [String] parent

Required. Parent resource name. The format of this value varies depending on
whether you have [specified a processing location](https://cloud.google.com/
dlp/docs/specifying-location): + Projects scope, location specified: `projects/
`PROJECT_ID`/locations/`LOCATION_ID + Projects scope, no location specified (
defaults to global): `projects/`PROJECT_ID The following example `parent`
string specifies a parent project with the identifier `example-project`, and
specifies the `europe-west3` location for processing data: parent=projects/
example-project/locations/europe-west3

@param [String] filter

Allows filtering. Supported syntax: * Filter expressions are made up of one or
more restrictions. * Restrictions can be combined by `AND` or `OR` logical
operators. A sequence of restrictions implicitly uses `AND`. * A restriction
has the form of ``field` `operator` `value``. * Supported fields/values for
inspect jobs: - `state` - PENDING|RUNNING|CANCELED|FINISHED|FAILED - `
inspected_storage` - DATASTORE|CLOUD_STORAGE|BIGQUERY - `trigger_name` - The
resource name of the trigger that created job. - 'end_time` - Corresponds to
time the job finished. - 'start_time` - Corresponds to time the job finished. *
Supported fields for risk analysis jobs: - `state` - RUNNING|CANCELED|
FINISHED|FAILED - 'end_time` - Corresponds to time the job finished. - '
start_time` - Corresponds to time the job finished. * The operator must be `=`
or `!=`. Examples: * inspected_storage = cloud_storage AND state = done *
inspected_storage = cloud_storage OR inspected_storage = bigquery *
inspected_storage = cloud_storage AND (state = done OR state = canceled) *
end_time > \"2017-12-12T00:00:00+00:00\" The length of this field should be no
more than 500 characters.

@param [String] location_id

Deprecated. This field has no effect.

@param [String] order_by

Comma separated list of fields to order by, followed by `asc` or `desc`
postfix. This list is case-insensitive, default sorting order is ascending,
redundant space characters are insignificant. Example: `name asc, end_time asc,
create_time desc` Supported fields are: - `create_time`: corresponds to time
the job was created. - `end_time`: corresponds to time the job ended. - `name`:
corresponds to job's name. - `state`: corresponds to `state`

@param [Fixnum] page_size

The standard list page size.

@param [String] page_token

The standard list page token.

@param [String] type

The type of job. Defaults to `DlpJobType.INSPECT`

@param [String] fields

Selector specifying which fields to include in a partial response.

@param [String] quota_user

Available to use for quota purposes for server-side applications. Can be any
arbitrary string assigned to a user, but should not exceed 40 characters.

@param [Google::Apis::RequestOptions] options

Request-specific options

@yield [result, err] Result & error if block supplied @yieldparam result [Google::Apis::DlpV2::GooglePrivacyDlpV2ListDlpJobsResponse] parsed result object @yieldparam err [StandardError] error object if request failed

@return [Google::Apis::DlpV2::GooglePrivacyDlpV2ListDlpJobsResponse]

@raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification @raise [Google::Apis::AuthorizationError] Authorization is required

# File lib/google/apis/dlp_v2/service.rb, line 3370
def list_project_location_dlp_jobs(parent, filter: nil, location_id: nil, order_by: nil, page_size: nil, page_token: nil, type: nil, fields: nil, quota_user: nil, options: nil, &block)
  command = make_simple_command(:get, 'v2/{+parent}/dlpJobs', options)
  command.response_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2ListDlpJobsResponse::Representation
  command.response_class = Google::Apis::DlpV2::GooglePrivacyDlpV2ListDlpJobsResponse
  command.params['parent'] = parent unless parent.nil?
  command.query['filter'] = filter unless filter.nil?
  command.query['locationId'] = location_id unless location_id.nil?
  command.query['orderBy'] = order_by unless order_by.nil?
  command.query['pageSize'] = page_size unless page_size.nil?
  command.query['pageToken'] = page_token unless page_token.nil?
  command.query['type'] = type unless type.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  execute_or_queue_command(command, &block)
end
list_project_location_inspect_templates(parent, location_id: nil, order_by: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block) click to toggle source

Lists InspectTemplates. See cloud.google.com/dlp/docs/creating- templates to learn more. @param [String] parent

Required. Parent resource name. The format of this value varies depending on
the scope of the request (project or organization) and whether you have [
specified a processing location](https://cloud.google.com/dlp/docs/specifying-
location): + Projects scope, location specified: `projects/`PROJECT_ID`/
locations/`LOCATION_ID + Projects scope, no location specified (defaults to
global): `projects/`PROJECT_ID + Organizations scope, location specified: `
organizations/`ORG_ID`/locations/`LOCATION_ID + Organizations scope, no
location specified (defaults to global): `organizations/`ORG_ID The following
example `parent` string specifies a parent project with the identifier `
example-project`, and specifies the `europe-west3` location for processing
data: parent=projects/example-project/locations/europe-west3

@param [String] location_id

Deprecated. This field has no effect.

@param [String] order_by

Comma separated list of fields to order by, followed by `asc` or `desc`
postfix. This list is case-insensitive, default sorting order is ascending,
redundant space characters are insignificant. Example: `name asc,update_time,
create_time desc` Supported fields are: - `create_time`: corresponds to time
the template was created. - `update_time`: corresponds to time the template
was last updated. - `name`: corresponds to template's name. - `display_name`:
corresponds to template's display name.

@param [Fixnum] page_size

Size of the page, can be limited by server. If zero server returns a page of
max size 100.

@param [String] page_token

Page token to continue retrieval. Comes from previous call to `
ListInspectTemplates`.

@param [String] fields

Selector specifying which fields to include in a partial response.

@param [String] quota_user

Available to use for quota purposes for server-side applications. Can be any
arbitrary string assigned to a user, but should not exceed 40 characters.

@param [Google::Apis::RequestOptions] options

Request-specific options

@yield [result, err] Result & error if block supplied @yieldparam result [Google::Apis::DlpV2::GooglePrivacyDlpV2ListInspectTemplatesResponse] parsed result object @yieldparam err [StandardError] error object if request failed

@return [Google::Apis::DlpV2::GooglePrivacyDlpV2ListInspectTemplatesResponse]

@raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification @raise [Google::Apis::AuthorizationError] Authorization is required

# File lib/google/apis/dlp_v2/service.rb, line 3589
def list_project_location_inspect_templates(parent, location_id: nil, order_by: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
  command = make_simple_command(:get, 'v2/{+parent}/inspectTemplates', options)
  command.response_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2ListInspectTemplatesResponse::Representation
  command.response_class = Google::Apis::DlpV2::GooglePrivacyDlpV2ListInspectTemplatesResponse
  command.params['parent'] = parent unless parent.nil?
  command.query['locationId'] = location_id unless location_id.nil?
  command.query['orderBy'] = order_by unless order_by.nil?
  command.query['pageSize'] = page_size unless page_size.nil?
  command.query['pageToken'] = page_token unless page_token.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  execute_or_queue_command(command, &block)
end
list_project_location_job_triggers(parent, filter: nil, location_id: nil, order_by: nil, page_size: nil, page_token: nil, type: nil, fields: nil, quota_user: nil, options: nil, &block) click to toggle source

Lists job triggers. See cloud.google.com/dlp/docs/creating-job- triggers to learn more. @param [String] parent

Required. Parent resource name. The format of this value varies depending on
whether you have [specified a processing location](https://cloud.google.com/
dlp/docs/specifying-location): + Projects scope, location specified: `projects/
`PROJECT_ID`/locations/`LOCATION_ID + Projects scope, no location specified (
defaults to global): `projects/`PROJECT_ID The following example `parent`
string specifies a parent project with the identifier `example-project`, and
specifies the `europe-west3` location for processing data: parent=projects/
example-project/locations/europe-west3

@param [String] filter

Allows filtering. Supported syntax: * Filter expressions are made up of one or
more restrictions. * Restrictions can be combined by `AND` or `OR` logical
operators. A sequence of restrictions implicitly uses `AND`. * A restriction
has the form of ``field` `operator` `value``. * Supported fields/values for
inspect triggers: - `status` - HEALTHY|PAUSED|CANCELLED - `inspected_storage` -
DATASTORE|CLOUD_STORAGE|BIGQUERY - 'last_run_time` - RFC 3339 formatted
timestamp, surrounded by quotation marks. Nanoseconds are ignored. - '
error_count' - Number of errors that have occurred while running. * The
operator must be `=` or `!=` for status and inspected_storage. Examples: *
inspected_storage = cloud_storage AND status = HEALTHY * inspected_storage =
cloud_storage OR inspected_storage = bigquery * inspected_storage =
cloud_storage AND (state = PAUSED OR state = HEALTHY) * last_run_time > \"2017-
12-12T00:00:00+00:00\" The length of this field should be no more than 500
characters.

@param [String] location_id

Deprecated. This field has no effect.

@param [String] order_by

Comma separated list of triggeredJob fields to order by, followed by `asc` or `
desc` postfix. This list is case-insensitive, default sorting order is
ascending, redundant space characters are insignificant. Example: `name asc,
update_time, create_time desc` Supported fields are: - `create_time`:
corresponds to time the JobTrigger was created. - `update_time`: corresponds
to time the JobTrigger was last updated. - `last_run_time`: corresponds to the
last time the JobTrigger ran. - `name`: corresponds to JobTrigger's name. - `
display_name`: corresponds to JobTrigger's display name. - `status`:
corresponds to JobTrigger's status.

@param [Fixnum] page_size

Size of the page, can be limited by a server.

@param [String] page_token

Page token to continue retrieval. Comes from previous call to ListJobTriggers.
`order_by` field must not change for subsequent calls.

@param [String] type

The type of jobs. Will use `DlpJobType.INSPECT` if not set.

@param [String] fields

Selector specifying which fields to include in a partial response.

@param [String] quota_user

Available to use for quota purposes for server-side applications. Can be any
arbitrary string assigned to a user, but should not exceed 40 characters.

@param [Google::Apis::RequestOptions] options

Request-specific options

@yield [result, err] Result & error if block supplied @yieldparam result [Google::Apis::DlpV2::GooglePrivacyDlpV2ListJobTriggersResponse] parsed result object @yieldparam err [StandardError] error object if request failed

@return [Google::Apis::DlpV2::GooglePrivacyDlpV2ListJobTriggersResponse]

@raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification @raise [Google::Apis::AuthorizationError] Authorization is required

# File lib/google/apis/dlp_v2/service.rb, line 3878
def list_project_location_job_triggers(parent, filter: nil, location_id: nil, order_by: nil, page_size: nil, page_token: nil, type: nil, fields: nil, quota_user: nil, options: nil, &block)
  command = make_simple_command(:get, 'v2/{+parent}/jobTriggers', options)
  command.response_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2ListJobTriggersResponse::Representation
  command.response_class = Google::Apis::DlpV2::GooglePrivacyDlpV2ListJobTriggersResponse
  command.params['parent'] = parent unless parent.nil?
  command.query['filter'] = filter unless filter.nil?
  command.query['locationId'] = location_id unless location_id.nil?
  command.query['orderBy'] = order_by unless order_by.nil?
  command.query['pageSize'] = page_size unless page_size.nil?
  command.query['pageToken'] = page_token unless page_token.nil?
  command.query['type'] = type unless type.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  execute_or_queue_command(command, &block)
end
list_project_location_stored_info_types(parent, location_id: nil, order_by: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block) click to toggle source

Lists stored infoTypes. See cloud.google.com/dlp/docs/creating-stored- infotypes to learn more. @param [String] parent

Required. Parent resource name. The format of this value varies depending on
the scope of the request (project or organization) and whether you have [
specified a processing location](https://cloud.google.com/dlp/docs/specifying-
location): + Projects scope, location specified: `projects/`PROJECT_ID`/
locations/`LOCATION_ID + Projects scope, no location specified (defaults to
global): `projects/`PROJECT_ID + Organizations scope, location specified: `
organizations/`ORG_ID`/locations/`LOCATION_ID + Organizations scope, no
location specified (defaults to global): `organizations/`ORG_ID The following
example `parent` string specifies a parent project with the identifier `
example-project`, and specifies the `europe-west3` location for processing
data: parent=projects/example-project/locations/europe-west3

@param [String] location_id

Deprecated. This field has no effect.

@param [String] order_by

Comma separated list of fields to order by, followed by `asc` or `desc`
postfix. This list is case-insensitive, default sorting order is ascending,
redundant space characters are insignificant. Example: `name asc, display_name,
create_time desc` Supported fields are: - `create_time`: corresponds to time
the most recent version of the resource was created. - `state`: corresponds to
the state of the resource. - `name`: corresponds to resource name. - `
display_name`: corresponds to info type's display name.

@param [Fixnum] page_size

Size of the page, can be limited by server. If zero server returns a page of
max size 100.

@param [String] page_token

Page token to continue retrieval. Comes from previous call to `
ListStoredInfoTypes`.

@param [String] fields

Selector specifying which fields to include in a partial response.

@param [String] quota_user

Available to use for quota purposes for server-side applications. Can be any
arbitrary string assigned to a user, but should not exceed 40 characters.

@param [Google::Apis::RequestOptions] options

Request-specific options

@yield [result, err] Result & error if block supplied @yieldparam result [Google::Apis::DlpV2::GooglePrivacyDlpV2ListStoredInfoTypesResponse] parsed result object @yieldparam err [StandardError] error object if request failed

@return [Google::Apis::DlpV2::GooglePrivacyDlpV2ListStoredInfoTypesResponse]

@raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification @raise [Google::Apis::AuthorizationError] Authorization is required

# File lib/google/apis/dlp_v2/service.rb, line 4086
def list_project_location_stored_info_types(parent, location_id: nil, order_by: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
  command = make_simple_command(:get, 'v2/{+parent}/storedInfoTypes', options)
  command.response_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2ListStoredInfoTypesResponse::Representation
  command.response_class = Google::Apis::DlpV2::GooglePrivacyDlpV2ListStoredInfoTypesResponse
  command.params['parent'] = parent unless parent.nil?
  command.query['locationId'] = location_id unless location_id.nil?
  command.query['orderBy'] = order_by unless order_by.nil?
  command.query['pageSize'] = page_size unless page_size.nil?
  command.query['pageToken'] = page_token unless page_token.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  execute_or_queue_command(command, &block)
end
list_project_stored_info_types(parent, location_id: nil, order_by: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block) click to toggle source

Lists stored infoTypes. See cloud.google.com/dlp/docs/creating-stored- infotypes to learn more. @param [String] parent

Required. Parent resource name. The format of this value varies depending on
the scope of the request (project or organization) and whether you have [
specified a processing location](https://cloud.google.com/dlp/docs/specifying-
location): + Projects scope, location specified: `projects/`PROJECT_ID`/
locations/`LOCATION_ID + Projects scope, no location specified (defaults to
global): `projects/`PROJECT_ID + Organizations scope, location specified: `
organizations/`ORG_ID`/locations/`LOCATION_ID + Organizations scope, no
location specified (defaults to global): `organizations/`ORG_ID The following
example `parent` string specifies a parent project with the identifier `
example-project`, and specifies the `europe-west3` location for processing
data: parent=projects/example-project/locations/europe-west3

@param [String] location_id

Deprecated. This field has no effect.

@param [String] order_by

Comma separated list of fields to order by, followed by `asc` or `desc`
postfix. This list is case-insensitive, default sorting order is ascending,
redundant space characters are insignificant. Example: `name asc, display_name,
create_time desc` Supported fields are: - `create_time`: corresponds to time
the most recent version of the resource was created. - `state`: corresponds to
the state of the resource. - `name`: corresponds to resource name. - `
display_name`: corresponds to info type's display name.

@param [Fixnum] page_size

Size of the page, can be limited by server. If zero server returns a page of
max size 100.

@param [String] page_token

Page token to continue retrieval. Comes from previous call to `
ListStoredInfoTypes`.

@param [String] fields

Selector specifying which fields to include in a partial response.

@param [String] quota_user

Available to use for quota purposes for server-side applications. Can be any
arbitrary string assigned to a user, but should not exceed 40 characters.

@param [Google::Apis::RequestOptions] options

Request-specific options

@yield [result, err] Result & error if block supplied @yieldparam result [Google::Apis::DlpV2::GooglePrivacyDlpV2ListStoredInfoTypesResponse] parsed result object @yieldparam err [StandardError] error object if request failed

@return [Google::Apis::DlpV2::GooglePrivacyDlpV2ListStoredInfoTypesResponse]

@raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification @raise [Google::Apis::AuthorizationError] Authorization is required

# File lib/google/apis/dlp_v2/service.rb, line 4294
def list_project_stored_info_types(parent, location_id: nil, order_by: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
  command = make_simple_command(:get, 'v2/{+parent}/storedInfoTypes', options)
  command.response_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2ListStoredInfoTypesResponse::Representation
  command.response_class = Google::Apis::DlpV2::GooglePrivacyDlpV2ListStoredInfoTypesResponse
  command.params['parent'] = parent unless parent.nil?
  command.query['locationId'] = location_id unless location_id.nil?
  command.query['orderBy'] = order_by unless order_by.nil?
  command.query['pageSize'] = page_size unless page_size.nil?
  command.query['pageToken'] = page_token unless page_token.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  execute_or_queue_command(command, &block)
end
patch_organization_deidentify_template(name, google_privacy_dlp_v2_update_deidentify_template_request_object = nil, fields: nil, quota_user: nil, options: nil, &block) click to toggle source

Updates the DeidentifyTemplate. See cloud.google.com/dlp/docs/creating- templates-deid to learn more. @param [String] name

Required. Resource name of organization and deidentify template to be updated,
for example `organizations/433245324/deidentifyTemplates/432452342` or
projects/project-id/deidentifyTemplates/432452342.

@param [Google::Apis::DlpV2::GooglePrivacyDlpV2UpdateDeidentifyTemplateRequest] google_privacy_dlp_v2_update_deidentify_template_request_object @param [String] fields

Selector specifying which fields to include in a partial response.

@param [String] quota_user

Available to use for quota purposes for server-side applications. Can be any
arbitrary string assigned to a user, but should not exceed 40 characters.

@param [Google::Apis::RequestOptions] options

Request-specific options

@yield [result, err] Result & error if block supplied @yieldparam result [Google::Apis::DlpV2::GooglePrivacyDlpV2DeidentifyTemplate] parsed result object @yieldparam err [StandardError] error object if request failed

@return [Google::Apis::DlpV2::GooglePrivacyDlpV2DeidentifyTemplate]

@raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification @raise [Google::Apis::AuthorizationError] Authorization is required

# File lib/google/apis/dlp_v2/service.rb, line 336
def patch_organization_deidentify_template(name, google_privacy_dlp_v2_update_deidentify_template_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
  command = make_simple_command(:patch, 'v2/{+name}', options)
  command.request_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2UpdateDeidentifyTemplateRequest::Representation
  command.request_object = google_privacy_dlp_v2_update_deidentify_template_request_object
  command.response_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2DeidentifyTemplate::Representation
  command.response_class = Google::Apis::DlpV2::GooglePrivacyDlpV2DeidentifyTemplate
  command.params['name'] = name unless name.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  execute_or_queue_command(command, &block)
end
patch_organization_inspect_template(name, google_privacy_dlp_v2_update_inspect_template_request_object = nil, fields: nil, quota_user: nil, options: nil, &block) click to toggle source

Updates the InspectTemplate. See cloud.google.com/dlp/docs/creating- templates to learn more. @param [String] name

Required. Resource name of organization and inspectTemplate to be updated, for
example `organizations/433245324/inspectTemplates/432452342` or projects/
project-id/inspectTemplates/432452342.

@param [Google::Apis::DlpV2::GooglePrivacyDlpV2UpdateInspectTemplateRequest] google_privacy_dlp_v2_update_inspect_template_request_object @param [String] fields

Selector specifying which fields to include in a partial response.

@param [String] quota_user

Available to use for quota purposes for server-side applications. Can be any
arbitrary string assigned to a user, but should not exceed 40 characters.

@param [Google::Apis::RequestOptions] options

Request-specific options

@yield [result, err] Result & error if block supplied @yieldparam result [Google::Apis::DlpV2::GooglePrivacyDlpV2InspectTemplate] parsed result object @yieldparam err [StandardError] error object if request failed

@return [Google::Apis::DlpV2::GooglePrivacyDlpV2InspectTemplate]

@raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification @raise [Google::Apis::AuthorizationError] Authorization is required

# File lib/google/apis/dlp_v2/service.rb, line 544
def patch_organization_inspect_template(name, google_privacy_dlp_v2_update_inspect_template_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
  command = make_simple_command(:patch, 'v2/{+name}', options)
  command.request_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2UpdateInspectTemplateRequest::Representation
  command.request_object = google_privacy_dlp_v2_update_inspect_template_request_object
  command.response_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2InspectTemplate::Representation
  command.response_class = Google::Apis::DlpV2::GooglePrivacyDlpV2InspectTemplate
  command.params['name'] = name unless name.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  execute_or_queue_command(command, &block)
end
patch_organization_location_deidentify_template(name, google_privacy_dlp_v2_update_deidentify_template_request_object = nil, fields: nil, quota_user: nil, options: nil, &block) click to toggle source

Updates the DeidentifyTemplate. See cloud.google.com/dlp/docs/creating- templates-deid to learn more. @param [String] name

Required. Resource name of organization and deidentify template to be updated,
for example `organizations/433245324/deidentifyTemplates/432452342` or
projects/project-id/deidentifyTemplates/432452342.

@param [Google::Apis::DlpV2::GooglePrivacyDlpV2UpdateDeidentifyTemplateRequest] google_privacy_dlp_v2_update_deidentify_template_request_object @param [String] fields

Selector specifying which fields to include in a partial response.

@param [String] quota_user

Available to use for quota purposes for server-side applications. Can be any
arbitrary string assigned to a user, but should not exceed 40 characters.

@param [Google::Apis::RequestOptions] options

Request-specific options

@yield [result, err] Result & error if block supplied @yieldparam result [Google::Apis::DlpV2::GooglePrivacyDlpV2DeidentifyTemplate] parsed result object @yieldparam err [StandardError] error object if request failed

@return [Google::Apis::DlpV2::GooglePrivacyDlpV2DeidentifyTemplate]

@raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification @raise [Google::Apis::AuthorizationError] Authorization is required

# File lib/google/apis/dlp_v2/service.rb, line 752
def patch_organization_location_deidentify_template(name, google_privacy_dlp_v2_update_deidentify_template_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
  command = make_simple_command(:patch, 'v2/{+name}', options)
  command.request_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2UpdateDeidentifyTemplateRequest::Representation
  command.request_object = google_privacy_dlp_v2_update_deidentify_template_request_object
  command.response_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2DeidentifyTemplate::Representation
  command.response_class = Google::Apis::DlpV2::GooglePrivacyDlpV2DeidentifyTemplate
  command.params['name'] = name unless name.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  execute_or_queue_command(command, &block)
end
patch_organization_location_inspect_template(name, google_privacy_dlp_v2_update_inspect_template_request_object = nil, fields: nil, quota_user: nil, options: nil, &block) click to toggle source

Updates the InspectTemplate. See cloud.google.com/dlp/docs/creating- templates to learn more. @param [String] name

Required. Resource name of organization and inspectTemplate to be updated, for
example `organizations/433245324/inspectTemplates/432452342` or projects/
project-id/inspectTemplates/432452342.

@param [Google::Apis::DlpV2::GooglePrivacyDlpV2UpdateInspectTemplateRequest] google_privacy_dlp_v2_update_inspect_template_request_object @param [String] fields

Selector specifying which fields to include in a partial response.

@param [String] quota_user

Available to use for quota purposes for server-side applications. Can be any
arbitrary string assigned to a user, but should not exceed 40 characters.

@param [Google::Apis::RequestOptions] options

Request-specific options

@yield [result, err] Result & error if block supplied @yieldparam result [Google::Apis::DlpV2::GooglePrivacyDlpV2InspectTemplate] parsed result object @yieldparam err [StandardError] error object if request failed

@return [Google::Apis::DlpV2::GooglePrivacyDlpV2InspectTemplate]

@raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification @raise [Google::Apis::AuthorizationError] Authorization is required

# File lib/google/apis/dlp_v2/service.rb, line 1037
def patch_organization_location_inspect_template(name, google_privacy_dlp_v2_update_inspect_template_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
  command = make_simple_command(:patch, 'v2/{+name}', options)
  command.request_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2UpdateInspectTemplateRequest::Representation
  command.request_object = google_privacy_dlp_v2_update_inspect_template_request_object
  command.response_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2InspectTemplate::Representation
  command.response_class = Google::Apis::DlpV2::GooglePrivacyDlpV2InspectTemplate
  command.params['name'] = name unless name.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  execute_or_queue_command(command, &block)
end
patch_organization_location_job_trigger(name, google_privacy_dlp_v2_update_job_trigger_request_object = nil, fields: nil, quota_user: nil, options: nil, &block) click to toggle source

Updates a job trigger. See cloud.google.com/dlp/docs/creating-job- triggers to learn more. @param [String] name

Required. Resource name of the project and the triggeredJob, for example `
projects/dlp-test-project/jobTriggers/53234423`.

@param [Google::Apis::DlpV2::GooglePrivacyDlpV2UpdateJobTriggerRequest] google_privacy_dlp_v2_update_job_trigger_request_object @param [String] fields

Selector specifying which fields to include in a partial response.

@param [String] quota_user

Available to use for quota purposes for server-side applications. Can be any
arbitrary string assigned to a user, but should not exceed 40 characters.

@param [Google::Apis::RequestOptions] options

Request-specific options

@yield [result, err] Result & error if block supplied @yieldparam result [Google::Apis::DlpV2::GooglePrivacyDlpV2JobTrigger] parsed result object @yieldparam err [StandardError] error object if request failed

@return [Google::Apis::DlpV2::GooglePrivacyDlpV2JobTrigger]

@raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification @raise [Google::Apis::AuthorizationError] Authorization is required

# File lib/google/apis/dlp_v2/service.rb, line 1256
def patch_organization_location_job_trigger(name, google_privacy_dlp_v2_update_job_trigger_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
  command = make_simple_command(:patch, 'v2/{+name}', options)
  command.request_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2UpdateJobTriggerRequest::Representation
  command.request_object = google_privacy_dlp_v2_update_job_trigger_request_object
  command.response_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2JobTrigger::Representation
  command.response_class = Google::Apis::DlpV2::GooglePrivacyDlpV2JobTrigger
  command.params['name'] = name unless name.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  execute_or_queue_command(command, &block)
end
patch_organization_location_stored_info_type(name, google_privacy_dlp_v2_update_stored_info_type_request_object = nil, fields: nil, quota_user: nil, options: nil, &block) click to toggle source

Updates the stored infoType by creating a new version. The existing version will continue to be used until the new version is ready. See cloud. google.com/dlp/docs/creating-stored-infotypes to learn more. @param [String] name

Required. Resource name of organization and storedInfoType to be updated, for
example `organizations/433245324/storedInfoTypes/432452342` or projects/
project-id/storedInfoTypes/432452342.

@param [Google::Apis::DlpV2::GooglePrivacyDlpV2UpdateStoredInfoTypeRequest] google_privacy_dlp_v2_update_stored_info_type_request_object @param [String] fields

Selector specifying which fields to include in a partial response.

@param [String] quota_user

Available to use for quota purposes for server-side applications. Can be any
arbitrary string assigned to a user, but should not exceed 40 characters.

@param [Google::Apis::RequestOptions] options

Request-specific options

@yield [result, err] Result & error if block supplied @yieldparam result [Google::Apis::DlpV2::GooglePrivacyDlpV2StoredInfoType] parsed result object @yieldparam err [StandardError] error object if request failed

@return [Google::Apis::DlpV2::GooglePrivacyDlpV2StoredInfoType]

@raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification @raise [Google::Apis::AuthorizationError] Authorization is required

# File lib/google/apis/dlp_v2/service.rb, line 1464
def patch_organization_location_stored_info_type(name, google_privacy_dlp_v2_update_stored_info_type_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
  command = make_simple_command(:patch, 'v2/{+name}', options)
  command.request_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2UpdateStoredInfoTypeRequest::Representation
  command.request_object = google_privacy_dlp_v2_update_stored_info_type_request_object
  command.response_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2StoredInfoType::Representation
  command.response_class = Google::Apis::DlpV2::GooglePrivacyDlpV2StoredInfoType
  command.params['name'] = name unless name.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  execute_or_queue_command(command, &block)
end
patch_organization_stored_info_type(name, google_privacy_dlp_v2_update_stored_info_type_request_object = nil, fields: nil, quota_user: nil, options: nil, &block) click to toggle source

Updates the stored infoType by creating a new version. The existing version will continue to be used until the new version is ready. See cloud. google.com/dlp/docs/creating-stored-infotypes to learn more. @param [String] name

Required. Resource name of organization and storedInfoType to be updated, for
example `organizations/433245324/storedInfoTypes/432452342` or projects/
project-id/storedInfoTypes/432452342.

@param [Google::Apis::DlpV2::GooglePrivacyDlpV2UpdateStoredInfoTypeRequest] google_privacy_dlp_v2_update_stored_info_type_request_object @param [String] fields

Selector specifying which fields to include in a partial response.

@param [String] quota_user

Available to use for quota purposes for server-side applications. Can be any
arbitrary string assigned to a user, but should not exceed 40 characters.

@param [Google::Apis::RequestOptions] options

Request-specific options

@yield [result, err] Result & error if block supplied @yieldparam result [Google::Apis::DlpV2::GooglePrivacyDlpV2StoredInfoType] parsed result object @yieldparam err [StandardError] error object if request failed

@return [Google::Apis::DlpV2::GooglePrivacyDlpV2StoredInfoType]

@raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification @raise [Google::Apis::AuthorizationError] Authorization is required

# File lib/google/apis/dlp_v2/service.rb, line 1672
def patch_organization_stored_info_type(name, google_privacy_dlp_v2_update_stored_info_type_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
  command = make_simple_command(:patch, 'v2/{+name}', options)
  command.request_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2UpdateStoredInfoTypeRequest::Representation
  command.request_object = google_privacy_dlp_v2_update_stored_info_type_request_object
  command.response_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2StoredInfoType::Representation
  command.response_class = Google::Apis::DlpV2::GooglePrivacyDlpV2StoredInfoType
  command.params['name'] = name unless name.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  execute_or_queue_command(command, &block)
end
patch_project_deidentify_template(name, google_privacy_dlp_v2_update_deidentify_template_request_object = nil, fields: nil, quota_user: nil, options: nil, &block) click to toggle source

Updates the DeidentifyTemplate. See cloud.google.com/dlp/docs/creating- templates-deid to learn more. @param [String] name

Required. Resource name of organization and deidentify template to be updated,
for example `organizations/433245324/deidentifyTemplates/432452342` or
projects/project-id/deidentifyTemplates/432452342.

@param [Google::Apis::DlpV2::GooglePrivacyDlpV2UpdateDeidentifyTemplateRequest] google_privacy_dlp_v2_update_deidentify_template_request_object @param [String] fields

Selector specifying which fields to include in a partial response.

@param [String] quota_user

Available to use for quota purposes for server-side applications. Can be any
arbitrary string assigned to a user, but should not exceed 40 characters.

@param [Google::Apis::RequestOptions] options

Request-specific options

@yield [result, err] Result & error if block supplied @yieldparam result [Google::Apis::DlpV2::GooglePrivacyDlpV2DeidentifyTemplate] parsed result object @yieldparam err [StandardError] error object if request failed

@return [Google::Apis::DlpV2::GooglePrivacyDlpV2DeidentifyTemplate]

@raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification @raise [Google::Apis::AuthorizationError] Authorization is required

# File lib/google/apis/dlp_v2/service.rb, line 2012
def patch_project_deidentify_template(name, google_privacy_dlp_v2_update_deidentify_template_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
  command = make_simple_command(:patch, 'v2/{+name}', options)
  command.request_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2UpdateDeidentifyTemplateRequest::Representation
  command.request_object = google_privacy_dlp_v2_update_deidentify_template_request_object
  command.response_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2DeidentifyTemplate::Representation
  command.response_class = Google::Apis::DlpV2::GooglePrivacyDlpV2DeidentifyTemplate
  command.params['name'] = name unless name.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  execute_or_queue_command(command, &block)
end
patch_project_inspect_template(name, google_privacy_dlp_v2_update_inspect_template_request_object = nil, fields: nil, quota_user: nil, options: nil, &block) click to toggle source

Updates the InspectTemplate. See cloud.google.com/dlp/docs/creating- templates to learn more. @param [String] name

Required. Resource name of organization and inspectTemplate to be updated, for
example `organizations/433245324/inspectTemplates/432452342` or projects/
project-id/inspectTemplates/432452342.

@param [Google::Apis::DlpV2::GooglePrivacyDlpV2UpdateInspectTemplateRequest] google_privacy_dlp_v2_update_inspect_template_request_object @param [String] fields

Selector specifying which fields to include in a partial response.

@param [String] quota_user

Available to use for quota purposes for server-side applications. Can be any
arbitrary string assigned to a user, but should not exceed 40 characters.

@param [Google::Apis::RequestOptions] options

Request-specific options

@yield [result, err] Result & error if block supplied @yieldparam result [Google::Apis::DlpV2::GooglePrivacyDlpV2InspectTemplate] parsed result object @yieldparam err [StandardError] error object if request failed

@return [Google::Apis::DlpV2::GooglePrivacyDlpV2InspectTemplate]

@raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification @raise [Google::Apis::AuthorizationError] Authorization is required

# File lib/google/apis/dlp_v2/service.rb, line 2488
def patch_project_inspect_template(name, google_privacy_dlp_v2_update_inspect_template_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
  command = make_simple_command(:patch, 'v2/{+name}', options)
  command.request_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2UpdateInspectTemplateRequest::Representation
  command.request_object = google_privacy_dlp_v2_update_inspect_template_request_object
  command.response_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2InspectTemplate::Representation
  command.response_class = Google::Apis::DlpV2::GooglePrivacyDlpV2InspectTemplate
  command.params['name'] = name unless name.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  execute_or_queue_command(command, &block)
end
patch_project_job_trigger(name, google_privacy_dlp_v2_update_job_trigger_request_object = nil, fields: nil, quota_user: nil, options: nil, &block) click to toggle source

Updates a job trigger. See cloud.google.com/dlp/docs/creating-job- triggers to learn more. @param [String] name

Required. Resource name of the project and the triggeredJob, for example `
projects/dlp-test-project/jobTriggers/53234423`.

@param [Google::Apis::DlpV2::GooglePrivacyDlpV2UpdateJobTriggerRequest] google_privacy_dlp_v2_update_job_trigger_request_object @param [String] fields

Selector specifying which fields to include in a partial response.

@param [String] quota_user

Available to use for quota purposes for server-side applications. Can be any
arbitrary string assigned to a user, but should not exceed 40 characters.

@param [Google::Apis::RequestOptions] options

Request-specific options

@yield [result, err] Result & error if block supplied @yieldparam result [Google::Apis::DlpV2::GooglePrivacyDlpV2JobTrigger] parsed result object @yieldparam err [StandardError] error object if request failed

@return [Google::Apis::DlpV2::GooglePrivacyDlpV2JobTrigger]

@raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification @raise [Google::Apis::AuthorizationError] Authorization is required

# File lib/google/apis/dlp_v2/service.rb, line 2742
def patch_project_job_trigger(name, google_privacy_dlp_v2_update_job_trigger_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
  command = make_simple_command(:patch, 'v2/{+name}', options)
  command.request_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2UpdateJobTriggerRequest::Representation
  command.request_object = google_privacy_dlp_v2_update_job_trigger_request_object
  command.response_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2JobTrigger::Representation
  command.response_class = Google::Apis::DlpV2::GooglePrivacyDlpV2JobTrigger
  command.params['name'] = name unless name.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  execute_or_queue_command(command, &block)
end
patch_project_location_deidentify_template(name, google_privacy_dlp_v2_update_deidentify_template_request_object = nil, fields: nil, quota_user: nil, options: nil, &block) click to toggle source

Updates the DeidentifyTemplate. See cloud.google.com/dlp/docs/creating- templates-deid to learn more. @param [String] name

Required. Resource name of organization and deidentify template to be updated,
for example `organizations/433245324/deidentifyTemplates/432452342` or
projects/project-id/deidentifyTemplates/432452342.

@param [Google::Apis::DlpV2::GooglePrivacyDlpV2UpdateDeidentifyTemplateRequest] google_privacy_dlp_v2_update_deidentify_template_request_object @param [String] fields

Selector specifying which fields to include in a partial response.

@param [String] quota_user

Available to use for quota purposes for server-side applications. Can be any
arbitrary string assigned to a user, but should not exceed 40 characters.

@param [Google::Apis::RequestOptions] options

Request-specific options

@yield [result, err] Result & error if block supplied @yieldparam result [Google::Apis::DlpV2::GooglePrivacyDlpV2DeidentifyTemplate] parsed result object @yieldparam err [StandardError] error object if request failed

@return [Google::Apis::DlpV2::GooglePrivacyDlpV2DeidentifyTemplate]

@raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification @raise [Google::Apis::AuthorizationError] Authorization is required

# File lib/google/apis/dlp_v2/service.rb, line 3082
def patch_project_location_deidentify_template(name, google_privacy_dlp_v2_update_deidentify_template_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
  command = make_simple_command(:patch, 'v2/{+name}', options)
  command.request_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2UpdateDeidentifyTemplateRequest::Representation
  command.request_object = google_privacy_dlp_v2_update_deidentify_template_request_object
  command.response_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2DeidentifyTemplate::Representation
  command.response_class = Google::Apis::DlpV2::GooglePrivacyDlpV2DeidentifyTemplate
  command.params['name'] = name unless name.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  execute_or_queue_command(command, &block)
end
patch_project_location_inspect_template(name, google_privacy_dlp_v2_update_inspect_template_request_object = nil, fields: nil, quota_user: nil, options: nil, &block) click to toggle source

Updates the InspectTemplate. See cloud.google.com/dlp/docs/creating- templates to learn more. @param [String] name

Required. Resource name of organization and inspectTemplate to be updated, for
example `organizations/433245324/inspectTemplates/432452342` or projects/
project-id/inspectTemplates/432452342.

@param [Google::Apis::DlpV2::GooglePrivacyDlpV2UpdateInspectTemplateRequest] google_privacy_dlp_v2_update_inspect_template_request_object @param [String] fields

Selector specifying which fields to include in a partial response.

@param [String] quota_user

Available to use for quota purposes for server-side applications. Can be any
arbitrary string assigned to a user, but should not exceed 40 characters.

@param [Google::Apis::RequestOptions] options

Request-specific options

@yield [result, err] Result & error if block supplied @yieldparam result [Google::Apis::DlpV2::GooglePrivacyDlpV2InspectTemplate] parsed result object @yieldparam err [StandardError] error object if request failed

@return [Google::Apis::DlpV2::GooglePrivacyDlpV2InspectTemplate]

@raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification @raise [Google::Apis::AuthorizationError] Authorization is required

# File lib/google/apis/dlp_v2/service.rb, line 3627
def patch_project_location_inspect_template(name, google_privacy_dlp_v2_update_inspect_template_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
  command = make_simple_command(:patch, 'v2/{+name}', options)
  command.request_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2UpdateInspectTemplateRequest::Representation
  command.request_object = google_privacy_dlp_v2_update_inspect_template_request_object
  command.response_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2InspectTemplate::Representation
  command.response_class = Google::Apis::DlpV2::GooglePrivacyDlpV2InspectTemplate
  command.params['name'] = name unless name.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  execute_or_queue_command(command, &block)
end
patch_project_location_job_trigger(name, google_privacy_dlp_v2_update_job_trigger_request_object = nil, fields: nil, quota_user: nil, options: nil, &block) click to toggle source

Updates a job trigger. See cloud.google.com/dlp/docs/creating-job- triggers to learn more. @param [String] name

Required. Resource name of the project and the triggeredJob, for example `
projects/dlp-test-project/jobTriggers/53234423`.

@param [Google::Apis::DlpV2::GooglePrivacyDlpV2UpdateJobTriggerRequest] google_privacy_dlp_v2_update_job_trigger_request_object @param [String] fields

Selector specifying which fields to include in a partial response.

@param [String] quota_user

Available to use for quota purposes for server-side applications. Can be any
arbitrary string assigned to a user, but should not exceed 40 characters.

@param [Google::Apis::RequestOptions] options

Request-specific options

@yield [result, err] Result & error if block supplied @yieldparam result [Google::Apis::DlpV2::GooglePrivacyDlpV2JobTrigger] parsed result object @yieldparam err [StandardError] error object if request failed

@return [Google::Apis::DlpV2::GooglePrivacyDlpV2JobTrigger]

@raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification @raise [Google::Apis::AuthorizationError] Authorization is required

# File lib/google/apis/dlp_v2/service.rb, line 3917
def patch_project_location_job_trigger(name, google_privacy_dlp_v2_update_job_trigger_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
  command = make_simple_command(:patch, 'v2/{+name}', options)
  command.request_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2UpdateJobTriggerRequest::Representation
  command.request_object = google_privacy_dlp_v2_update_job_trigger_request_object
  command.response_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2JobTrigger::Representation
  command.response_class = Google::Apis::DlpV2::GooglePrivacyDlpV2JobTrigger
  command.params['name'] = name unless name.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  execute_or_queue_command(command, &block)
end
patch_project_location_stored_info_type(name, google_privacy_dlp_v2_update_stored_info_type_request_object = nil, fields: nil, quota_user: nil, options: nil, &block) click to toggle source

Updates the stored infoType by creating a new version. The existing version will continue to be used until the new version is ready. See cloud. google.com/dlp/docs/creating-stored-infotypes to learn more. @param [String] name

Required. Resource name of organization and storedInfoType to be updated, for
example `organizations/433245324/storedInfoTypes/432452342` or projects/
project-id/storedInfoTypes/432452342.

@param [Google::Apis::DlpV2::GooglePrivacyDlpV2UpdateStoredInfoTypeRequest] google_privacy_dlp_v2_update_stored_info_type_request_object @param [String] fields

Selector specifying which fields to include in a partial response.

@param [String] quota_user

Available to use for quota purposes for server-side applications. Can be any
arbitrary string assigned to a user, but should not exceed 40 characters.

@param [Google::Apis::RequestOptions] options

Request-specific options

@yield [result, err] Result & error if block supplied @yieldparam result [Google::Apis::DlpV2::GooglePrivacyDlpV2StoredInfoType] parsed result object @yieldparam err [StandardError] error object if request failed

@return [Google::Apis::DlpV2::GooglePrivacyDlpV2StoredInfoType]

@raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification @raise [Google::Apis::AuthorizationError] Authorization is required

# File lib/google/apis/dlp_v2/service.rb, line 4125
def patch_project_location_stored_info_type(name, google_privacy_dlp_v2_update_stored_info_type_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
  command = make_simple_command(:patch, 'v2/{+name}', options)
  command.request_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2UpdateStoredInfoTypeRequest::Representation
  command.request_object = google_privacy_dlp_v2_update_stored_info_type_request_object
  command.response_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2StoredInfoType::Representation
  command.response_class = Google::Apis::DlpV2::GooglePrivacyDlpV2StoredInfoType
  command.params['name'] = name unless name.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  execute_or_queue_command(command, &block)
end
patch_project_stored_info_type(name, google_privacy_dlp_v2_update_stored_info_type_request_object = nil, fields: nil, quota_user: nil, options: nil, &block) click to toggle source

Updates the stored infoType by creating a new version. The existing version will continue to be used until the new version is ready. See cloud. google.com/dlp/docs/creating-stored-infotypes to learn more. @param [String] name

Required. Resource name of organization and storedInfoType to be updated, for
example `organizations/433245324/storedInfoTypes/432452342` or projects/
project-id/storedInfoTypes/432452342.

@param [Google::Apis::DlpV2::GooglePrivacyDlpV2UpdateStoredInfoTypeRequest] google_privacy_dlp_v2_update_stored_info_type_request_object @param [String] fields

Selector specifying which fields to include in a partial response.

@param [String] quota_user

Available to use for quota purposes for server-side applications. Can be any
arbitrary string assigned to a user, but should not exceed 40 characters.

@param [Google::Apis::RequestOptions] options

Request-specific options

@yield [result, err] Result & error if block supplied @yieldparam result [Google::Apis::DlpV2::GooglePrivacyDlpV2StoredInfoType] parsed result object @yieldparam err [StandardError] error object if request failed

@return [Google::Apis::DlpV2::GooglePrivacyDlpV2StoredInfoType]

@raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification @raise [Google::Apis::AuthorizationError] Authorization is required

# File lib/google/apis/dlp_v2/service.rb, line 4333
def patch_project_stored_info_type(name, google_privacy_dlp_v2_update_stored_info_type_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
  command = make_simple_command(:patch, 'v2/{+name}', options)
  command.request_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2UpdateStoredInfoTypeRequest::Representation
  command.request_object = google_privacy_dlp_v2_update_stored_info_type_request_object
  command.response_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2StoredInfoType::Representation
  command.response_class = Google::Apis::DlpV2::GooglePrivacyDlpV2StoredInfoType
  command.params['name'] = name unless name.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  execute_or_queue_command(command, &block)
end
redact_project_image(parent, google_privacy_dlp_v2_redact_image_request_object = nil, fields: nil, quota_user: nil, options: nil, &block) click to toggle source

Redacts potentially sensitive info from an image. This method has limits on input size, processing time, and output size. See cloud.google.com/dlp/ docs/redacting-sensitive-data-images to learn more. When no InfoTypes or CustomInfoTypes are specified in this request, the system will automatically choose what detectors to run. By default this may be all types, but may change over time as detectors are updated. @param [String] parent

Parent resource name. The format of this value varies depending on whether you
have [specified a processing location](https://cloud.google.com/dlp/docs/
specifying-location): + Projects scope, location specified: `projects/`
PROJECT_ID`/locations/`LOCATION_ID + Projects scope, no location specified (
defaults to global): `projects/`PROJECT_ID The following example `parent`
string specifies a parent project with the identifier `example-project`, and
specifies the `europe-west3` location for processing data: parent=projects/
example-project/locations/europe-west3

@param [Google::Apis::DlpV2::GooglePrivacyDlpV2RedactImageRequest] google_privacy_dlp_v2_redact_image_request_object @param [String] fields

Selector specifying which fields to include in a partial response.

@param [String] quota_user

Available to use for quota purposes for server-side applications. Can be any
arbitrary string assigned to a user, but should not exceed 40 characters.

@param [Google::Apis::RequestOptions] options

Request-specific options

@yield [result, err] Result & error if block supplied @yieldparam result [Google::Apis::DlpV2::GooglePrivacyDlpV2RedactImageResponse] parsed result object @yieldparam err [StandardError] error object if request failed

@return [Google::Apis::DlpV2::GooglePrivacyDlpV2RedactImageResponse]

@raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification @raise [Google::Apis::AuthorizationError] Authorization is required

# File lib/google/apis/dlp_v2/service.rb, line 2280
def redact_project_image(parent, google_privacy_dlp_v2_redact_image_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
  command = make_simple_command(:post, 'v2/{+parent}/image:redact', options)
  command.request_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2RedactImageRequest::Representation
  command.request_object = google_privacy_dlp_v2_redact_image_request_object
  command.response_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2RedactImageResponse::Representation
  command.response_class = Google::Apis::DlpV2::GooglePrivacyDlpV2RedactImageResponse
  command.params['parent'] = parent unless parent.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  execute_or_queue_command(command, &block)
end
redact_project_location_image(parent, google_privacy_dlp_v2_redact_image_request_object = nil, fields: nil, quota_user: nil, options: nil, &block) click to toggle source

Redacts potentially sensitive info from an image. This method has limits on input size, processing time, and output size. See cloud.google.com/dlp/ docs/redacting-sensitive-data-images to learn more. When no InfoTypes or CustomInfoTypes are specified in this request, the system will automatically choose what detectors to run. By default this may be all types, but may change over time as detectors are updated. @param [String] parent

Parent resource name. The format of this value varies depending on whether you
have [specified a processing location](https://cloud.google.com/dlp/docs/
specifying-location): + Projects scope, location specified: `projects/`
PROJECT_ID`/locations/`LOCATION_ID + Projects scope, no location specified (
defaults to global): `projects/`PROJECT_ID The following example `parent`
string specifies a parent project with the identifier `example-project`, and
specifies the `europe-west3` location for processing data: parent=projects/
example-project/locations/europe-west3

@param [Google::Apis::DlpV2::GooglePrivacyDlpV2RedactImageRequest] google_privacy_dlp_v2_redact_image_request_object @param [String] fields

Selector specifying which fields to include in a partial response.

@param [String] quota_user

Available to use for quota purposes for server-side applications. Can be any
arbitrary string assigned to a user, but should not exceed 40 characters.

@param [Google::Apis::RequestOptions] options

Request-specific options

@yield [result, err] Result & error if block supplied @yieldparam result [Google::Apis::DlpV2::GooglePrivacyDlpV2RedactImageResponse] parsed result object @yieldparam err [StandardError] error object if request failed

@return [Google::Apis::DlpV2::GooglePrivacyDlpV2RedactImageResponse]

@raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification @raise [Google::Apis::AuthorizationError] Authorization is required

# File lib/google/apis/dlp_v2/service.rb, line 3419
def redact_project_location_image(parent, google_privacy_dlp_v2_redact_image_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
  command = make_simple_command(:post, 'v2/{+parent}/image:redact', options)
  command.request_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2RedactImageRequest::Representation
  command.request_object = google_privacy_dlp_v2_redact_image_request_object
  command.response_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2RedactImageResponse::Representation
  command.response_class = Google::Apis::DlpV2::GooglePrivacyDlpV2RedactImageResponse
  command.params['parent'] = parent unless parent.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  execute_or_queue_command(command, &block)
end
reidentify_project_content(parent, google_privacy_dlp_v2_reidentify_content_request_object = nil, fields: nil, quota_user: nil, options: nil, &block) click to toggle source

Re-identifies content that has been de-identified. See cloud.google. com/dlp/docs/pseudonymization#re-identification_in_free_text_code_example to learn more. @param [String] parent

Required. Parent resource name. The format of this value varies depending on
whether you have [specified a processing location](https://cloud.google.com/
dlp/docs/specifying-location): + Projects scope, location specified: `projects/
`PROJECT_ID`/locations/`LOCATION_ID + Projects scope, no location specified (
defaults to global): `projects/`PROJECT_ID The following example `parent`
string specifies a parent project with the identifier `example-project`, and
specifies the `europe-west3` location for processing data: parent=projects/
example-project/locations/europe-west3

@param [Google::Apis::DlpV2::GooglePrivacyDlpV2ReidentifyContentRequest] google_privacy_dlp_v2_reidentify_content_request_object @param [String] fields

Selector specifying which fields to include in a partial response.

@param [String] quota_user

Available to use for quota purposes for server-side applications. Can be any
arbitrary string assigned to a user, but should not exceed 40 characters.

@param [Google::Apis::RequestOptions] options

Request-specific options

@yield [result, err] Result & error if block supplied @yieldparam result [Google::Apis::DlpV2::GooglePrivacyDlpV2ReidentifyContentResponse] parsed result object @yieldparam err [StandardError] error object if request failed

@return [Google::Apis::DlpV2::GooglePrivacyDlpV2ReidentifyContentResponse]

@raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification @raise [Google::Apis::AuthorizationError] Authorization is required

# File lib/google/apis/dlp_v2/service.rb, line 1804
def reidentify_project_content(parent, google_privacy_dlp_v2_reidentify_content_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
  command = make_simple_command(:post, 'v2/{+parent}/content:reidentify', options)
  command.request_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2ReidentifyContentRequest::Representation
  command.request_object = google_privacy_dlp_v2_reidentify_content_request_object
  command.response_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2ReidentifyContentResponse::Representation
  command.response_class = Google::Apis::DlpV2::GooglePrivacyDlpV2ReidentifyContentResponse
  command.params['parent'] = parent unless parent.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  execute_or_queue_command(command, &block)
end
reidentify_project_location_content(parent, google_privacy_dlp_v2_reidentify_content_request_object = nil, fields: nil, quota_user: nil, options: nil, &block) click to toggle source

Re-identifies content that has been de-identified. See cloud.google. com/dlp/docs/pseudonymization#re-identification_in_free_text_code_example to learn more. @param [String] parent

Required. Parent resource name. The format of this value varies depending on
whether you have [specified a processing location](https://cloud.google.com/
dlp/docs/specifying-location): + Projects scope, location specified: `projects/
`PROJECT_ID`/locations/`LOCATION_ID + Projects scope, no location specified (
defaults to global): `projects/`PROJECT_ID The following example `parent`
string specifies a parent project with the identifier `example-project`, and
specifies the `europe-west3` location for processing data: parent=projects/
example-project/locations/europe-west3

@param [Google::Apis::DlpV2::GooglePrivacyDlpV2ReidentifyContentRequest] google_privacy_dlp_v2_reidentify_content_request_object @param [String] fields

Selector specifying which fields to include in a partial response.

@param [String] quota_user

Available to use for quota purposes for server-side applications. Can be any
arbitrary string assigned to a user, but should not exceed 40 characters.

@param [Google::Apis::RequestOptions] options

Request-specific options

@yield [result, err] Result & error if block supplied @yieldparam result [Google::Apis::DlpV2::GooglePrivacyDlpV2ReidentifyContentResponse] parsed result object @yieldparam err [StandardError] error object if request failed

@return [Google::Apis::DlpV2::GooglePrivacyDlpV2ReidentifyContentResponse]

@raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification @raise [Google::Apis::AuthorizationError] Authorization is required

# File lib/google/apis/dlp_v2/service.rb, line 2874
def reidentify_project_location_content(parent, google_privacy_dlp_v2_reidentify_content_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
  command = make_simple_command(:post, 'v2/{+parent}/content:reidentify', options)
  command.request_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2ReidentifyContentRequest::Representation
  command.request_object = google_privacy_dlp_v2_reidentify_content_request_object
  command.response_representation = Google::Apis::DlpV2::GooglePrivacyDlpV2ReidentifyContentResponse::Representation
  command.response_class = Google::Apis::DlpV2::GooglePrivacyDlpV2ReidentifyContentResponse
  command.params['parent'] = parent unless parent.nil?
  command.query['fields'] = fields unless fields.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
  execute_or_queue_command(command, &block)
end

Protected Instance Methods

apply_command_defaults(command) click to toggle source
# File lib/google/apis/dlp_v2/service.rb, line 4347
def apply_command_defaults(command)
  command.query['key'] = key unless key.nil?
  command.query['quotaUser'] = quota_user unless quota_user.nil?
end