Class: Google::Apis::DlpV2beta2::GooglePrivacyDlpV2beta2CreateDeidentifyTemplateRequest

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/dlp_v2beta2/classes.rb,
generated/google/apis/dlp_v2beta2/representations.rb,
generated/google/apis/dlp_v2beta2/representations.rb

Overview

Request message for CreateDeidentifyTemplate.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ GooglePrivacyDlpV2beta2CreateDeidentifyTemplateRequest

Returns a new instance of GooglePrivacyDlpV2beta2CreateDeidentifyTemplateRequest



2294
2295
2296
# File 'generated/google/apis/dlp_v2beta2/classes.rb', line 2294

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#deidentify_templateGoogle::Apis::DlpV2beta2::GooglePrivacyDlpV2beta2DeidentifyTemplate

The DeidentifyTemplates contains instructions on how to deidentify content. Corresponds to the JSON property deidentifyTemplate



2284
2285
2286
# File 'generated/google/apis/dlp_v2beta2/classes.rb', line 2284

def deidentify_template
  @deidentify_template
end

#template_idString

The template id can contain uppercase and lowercase letters, numbers, and hyphens; that is, it must match the regular expression: [a-zA-Z\\d-]+. The maximum length is 100 characters. Can be empty to allow the system to generate one. Corresponds to the JSON property templateId

Returns:

  • (String)


2292
2293
2294
# File 'generated/google/apis/dlp_v2beta2/classes.rb', line 2292

def template_id
  @template_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2299
2300
2301
2302
# File 'generated/google/apis/dlp_v2beta2/classes.rb', line 2299

def update!(**args)
  @deidentify_template = args[:deidentify_template] if args.key?(:deidentify_template)
  @template_id = args[:template_id] if args.key?(:template_id)
end