Class: Google::Apis::DlpV2::GooglePrivacyDlpV2CreateInspectTemplateRequest
- Inherits:
-
Object
- Object
- Google::Apis::DlpV2::GooglePrivacyDlpV2CreateInspectTemplateRequest
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dlp_v2/classes.rb,
lib/google/apis/dlp_v2/representations.rb,
lib/google/apis/dlp_v2/representations.rb
Overview
Request message for CreateInspectTemplate.
Instance Attribute Summary collapse
-
#inspect_template ⇒ Google::Apis::DlpV2::GooglePrivacyDlpV2InspectTemplate
The inspectTemplate contains a configuration (set of types of sensitive data to be detected) to be used anywhere you otherwise would normally specify InspectConfig.
-
#location_id ⇒ String
Deprecated.
-
#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) ⇒ GooglePrivacyDlpV2CreateInspectTemplateRequest
constructor
A new instance of GooglePrivacyDlpV2CreateInspectTemplateRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GooglePrivacyDlpV2CreateInspectTemplateRequest
Returns a new instance of GooglePrivacyDlpV2CreateInspectTemplateRequest.
2059 2060 2061 |
# File 'lib/google/apis/dlp_v2/classes.rb', line 2059 def initialize(**args) update!(**args) end |
Instance Attribute Details
#inspect_template ⇒ Google::Apis::DlpV2::GooglePrivacyDlpV2InspectTemplate
The inspectTemplate contains a configuration (set of types of sensitive data
to be detected) to be used anywhere you otherwise would normally specify
InspectConfig. See https://cloud.google.com/sensitive-data-protection/docs/
concepts-templates to learn more.
Corresponds to the JSON property inspectTemplate
2044 2045 2046 |
# File 'lib/google/apis/dlp_v2/classes.rb', line 2044 def inspect_template @inspect_template end |
#location_id ⇒ String
Deprecated. This field has no effect.
Corresponds to the JSON property locationId
2049 2050 2051 |
# File 'lib/google/apis/dlp_v2/classes.rb', line 2049 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
2057 2058 2059 |
# File 'lib/google/apis/dlp_v2/classes.rb', line 2057 def template_id @template_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2064 2065 2066 2067 2068 |
# File 'lib/google/apis/dlp_v2/classes.rb', line 2064 def update!(**args) @inspect_template = args[:inspect_template] if args.key?(:inspect_template) @location_id = args[:location_id] if args.key?(:location_id) @template_id = args[:template_id] if args.key?(:template_id) end |