Class: Google::Apis::DlpV2::GooglePrivacyDlpV2RequestedDeidentifyOptions
- Inherits:
-
Object
- Object
- Google::Apis::DlpV2::GooglePrivacyDlpV2RequestedDeidentifyOptions
- 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
De-id options.
Instance Attribute Summary collapse
-
#snapshot_deidentify_template ⇒ Google::Apis::DlpV2::GooglePrivacyDlpV2DeidentifyTemplate
DeidentifyTemplates contains instructions on how to de-identify content.
-
#snapshot_image_redact_template ⇒ Google::Apis::DlpV2::GooglePrivacyDlpV2DeidentifyTemplate
DeidentifyTemplates contains instructions on how to de-identify content.
-
#snapshot_structured_deidentify_template ⇒ Google::Apis::DlpV2::GooglePrivacyDlpV2DeidentifyTemplate
DeidentifyTemplates contains instructions on how to de-identify content.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GooglePrivacyDlpV2RequestedDeidentifyOptions
constructor
A new instance of GooglePrivacyDlpV2RequestedDeidentifyOptions.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GooglePrivacyDlpV2RequestedDeidentifyOptions
Returns a new instance of GooglePrivacyDlpV2RequestedDeidentifyOptions.
6384 6385 6386 |
# File 'lib/google/apis/dlp_v2/classes.rb', line 6384 def initialize(**args) update!(**args) end |
Instance Attribute Details
#snapshot_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 snapshotDeidentifyTemplate
6370 6371 6372 |
# File 'lib/google/apis/dlp_v2/classes.rb', line 6370 def snapshot_deidentify_template @snapshot_deidentify_template end |
#snapshot_image_redact_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 snapshotImageRedactTemplate
6376 6377 6378 |
# File 'lib/google/apis/dlp_v2/classes.rb', line 6376 def snapshot_image_redact_template @snapshot_image_redact_template end |
#snapshot_structured_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 snapshotStructuredDeidentifyTemplate
6382 6383 6384 |
# File 'lib/google/apis/dlp_v2/classes.rb', line 6382 def snapshot_structured_deidentify_template @snapshot_structured_deidentify_template end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6389 6390 6391 6392 6393 |
# File 'lib/google/apis/dlp_v2/classes.rb', line 6389 def update!(**args) @snapshot_deidentify_template = args[:snapshot_deidentify_template] if args.key?(:snapshot_deidentify_template) @snapshot_image_redact_template = args[:snapshot_image_redact_template] if args.key?(:snapshot_image_redact_template) @snapshot_structured_deidentify_template = args[:snapshot_structured_deidentify_template] if args.key?(:snapshot_structured_deidentify_template) end |