Class: Google::Apis::DlpV2::GooglePrivacyDlpV2CreateDeidentifyTemplateRequest
- Inherits:
-
Object
- Object
- Google::Apis::DlpV2::GooglePrivacyDlpV2CreateDeidentifyTemplateRequest
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/dlp_v2/classes.rb,
generated/google/apis/dlp_v2/representations.rb,
generated/google/apis/dlp_v2/representations.rb
Overview
Request message for CreateDeidentifyTemplate.
Instance Attribute Summary collapse
-
#deidentify_template ⇒ Google::Apis::DlpV2::GooglePrivacyDlpV2DeidentifyTemplate
DeidentifyTemplates contains instructions on how to de-identify content.
-
#location_id ⇒ String
The geographic location to store the deidentification template.
-
#template_id ⇒ String
The template id can contain uppercase and lowercase letters, numbers, and hyphens; that is, it must match the regular expression:
[a-zA-Z\\d-_]+
.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GooglePrivacyDlpV2CreateDeidentifyTemplateRequest
constructor
A new instance of GooglePrivacyDlpV2CreateDeidentifyTemplateRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ GooglePrivacyDlpV2CreateDeidentifyTemplateRequest
Returns a new instance of GooglePrivacyDlpV2CreateDeidentifyTemplateRequest.
1172 1173 1174 |
# File 'generated/google/apis/dlp_v2/classes.rb', line 1172 def initialize(**args) update!(**args) end |
Instance Attribute Details
#deidentify_template ⇒ Google::Apis::DlpV2::GooglePrivacyDlpV2DeidentifyTemplate
DeidentifyTemplates contains instructions on how to de-identify content.
See https://cloud.google.com/dlp/docs/concepts-templates to learn more.
Corresponds to the JSON property deidentifyTemplate
1156 1157 1158 |
# File 'generated/google/apis/dlp_v2/classes.rb', line 1156 def deidentify_template @deidentify_template end |
#location_id ⇒ String
The geographic location to store the deidentification template. Reserved
for future extensions.
Corresponds to the JSON property locationId
1162 1163 1164 |
# File 'generated/google/apis/dlp_v2/classes.rb', line 1162 def location_id @location_id end |
#template_id ⇒ String
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
1170 1171 1172 |
# File 'generated/google/apis/dlp_v2/classes.rb', line 1170 def template_id @template_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1177 1178 1179 1180 1181 |
# File 'generated/google/apis/dlp_v2/classes.rb', line 1177 def update!(**args) @deidentify_template = args[:deidentify_template] if args.key?(:deidentify_template) @location_id = args[:location_id] if args.key?(:location_id) @template_id = args[:template_id] if args.key?(:template_id) end |