Class: Google::Apis::DlpV2beta2::GooglePrivacyDlpV2beta2CreateInspectTemplateRequest
- Inherits:
-
Object
- Object
- Google::Apis::DlpV2beta2::GooglePrivacyDlpV2beta2CreateInspectTemplateRequest
- 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 CreateInspectTemplate.
Instance Attribute Summary collapse
-
#inspect_template ⇒ Google::Apis::DlpV2beta2::GooglePrivacyDlpV2beta2InspectTemplate
The inspectTemplate contains a configuration (set of types of sensitive data to be detected) to be used anywhere you otherwise would normally specify InspectConfig.
-
#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) ⇒ GooglePrivacyDlpV2beta2CreateInspectTemplateRequest
constructor
A new instance of GooglePrivacyDlpV2beta2CreateInspectTemplateRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ GooglePrivacyDlpV2beta2CreateInspectTemplateRequest
Returns a new instance of GooglePrivacyDlpV2beta2CreateInspectTemplateRequest
2324 2325 2326 |
# File 'generated/google/apis/dlp_v2beta2/classes.rb', line 2324 def initialize(**args) update!(**args) end |
Instance Attribute Details
#inspect_template ⇒ Google::Apis::DlpV2beta2::GooglePrivacyDlpV2beta2InspectTemplate
The inspectTemplate contains a configuration (set of types of sensitive data
to be detected) to be used anywhere you otherwise would normally specify
InspectConfig.
Corresponds to the JSON property inspectTemplate
2314 2315 2316 |
# File 'generated/google/apis/dlp_v2beta2/classes.rb', line 2314 def inspect_template @inspect_template 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
2322 2323 2324 |
# File 'generated/google/apis/dlp_v2beta2/classes.rb', line 2322 def template_id @template_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2329 2330 2331 2332 |
# File 'generated/google/apis/dlp_v2beta2/classes.rb', line 2329 def update!(**args) @inspect_template = args[:inspect_template] if args.key?(:inspect_template) @template_id = args[:template_id] if args.key?(:template_id) end |