Class: Google::Apis::DlpV2beta2::GooglePrivacyDlpV2beta2InspectJobConfig
- Inherits:
-
Object
- Object
- Google::Apis::DlpV2beta2::GooglePrivacyDlpV2beta2InspectJobConfig
- 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
Instance Attribute Summary collapse
-
#actions ⇒ Array<Google::Apis::DlpV2beta2::GooglePrivacyDlpV2beta2Action>
Actions to execute at the completion of the job.
-
#inspect_config ⇒ Google::Apis::DlpV2beta2::GooglePrivacyDlpV2beta2InspectConfig
Configuration description of the scanning process.
-
#inspect_template_name ⇒ String
If provided, will be used as the default for all values in InspectConfig.
-
#output_config ⇒ Google::Apis::DlpV2beta2::GooglePrivacyDlpV2beta2OutputStorageConfig
Cloud repository for storing output.
-
#storage_config ⇒ Google::Apis::DlpV2beta2::GooglePrivacyDlpV2beta2StorageConfig
Shared message indicating Cloud storage type.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GooglePrivacyDlpV2beta2InspectJobConfig
constructor
A new instance of GooglePrivacyDlpV2beta2InspectJobConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ GooglePrivacyDlpV2beta2InspectJobConfig
Returns a new instance of GooglePrivacyDlpV2beta2InspectJobConfig
3664 3665 3666 |
# File 'generated/google/apis/dlp_v2beta2/classes.rb', line 3664 def initialize(**args) update!(**args) end |
Instance Attribute Details
#actions ⇒ Array<Google::Apis::DlpV2beta2::GooglePrivacyDlpV2beta2Action>
Actions to execute at the completion of the job. Are executed in the order
provided.
Corresponds to the JSON property actions
3638 3639 3640 |
# File 'generated/google/apis/dlp_v2beta2/classes.rb', line 3638 def actions @actions end |
#inspect_config ⇒ Google::Apis::DlpV2beta2::GooglePrivacyDlpV2beta2InspectConfig
Configuration description of the scanning process.
When used with redactContent only info_types and min_likelihood are currently
used.
Corresponds to the JSON property inspectConfig
3645 3646 3647 |
# File 'generated/google/apis/dlp_v2beta2/classes.rb', line 3645 def inspect_config @inspect_config end |
#inspect_template_name ⇒ String
If provided, will be used as the default for all values in InspectConfig.
inspect_config will be merged into the values persisted as part of the
template.
Corresponds to the JSON property inspectTemplateName
3652 3653 3654 |
# File 'generated/google/apis/dlp_v2beta2/classes.rb', line 3652 def inspect_template_name @inspect_template_name end |
#output_config ⇒ Google::Apis::DlpV2beta2::GooglePrivacyDlpV2beta2OutputStorageConfig
Cloud repository for storing output.
Corresponds to the JSON property outputConfig
3657 3658 3659 |
# File 'generated/google/apis/dlp_v2beta2/classes.rb', line 3657 def output_config @output_config end |
#storage_config ⇒ Google::Apis::DlpV2beta2::GooglePrivacyDlpV2beta2StorageConfig
Shared message indicating Cloud storage type.
Corresponds to the JSON property storageConfig
3662 3663 3664 |
# File 'generated/google/apis/dlp_v2beta2/classes.rb', line 3662 def storage_config @storage_config end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3669 3670 3671 3672 3673 3674 3675 |
# File 'generated/google/apis/dlp_v2beta2/classes.rb', line 3669 def update!(**args) @actions = args[:actions] if args.key?(:actions) @inspect_config = args[:inspect_config] if args.key?(:inspect_config) @inspect_template_name = args[:inspect_template_name] if args.key?(:inspect_template_name) @output_config = args[:output_config] if args.key?(:output_config) @storage_config = args[:storage_config] if args.key?(:storage_config) end |