Class: Google::Apis::DlpV2beta1::GooglePrivacyDlpV2beta1CreateInspectOperationRequest
- Inherits:
-
Object
- Object
- Google::Apis::DlpV2beta1::GooglePrivacyDlpV2beta1CreateInspectOperationRequest
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/dlp_v2beta1/classes.rb,
generated/google/apis/dlp_v2beta1/representations.rb,
generated/google/apis/dlp_v2beta1/representations.rb
Overview
Request for scheduling a scan of a data subset from a Google Platform data repository.
Instance Attribute Summary collapse
-
#inspect_config ⇒ Google::Apis::DlpV2beta1::GooglePrivacyDlpV2beta1InspectConfig
Configuration description of the scanning process.
-
#operation_config ⇒ Google::Apis::DlpV2beta1::GooglePrivacyDlpV2beta1OperationConfig
Additional configuration for inspect long running operations.
-
#output_config ⇒ Google::Apis::DlpV2beta1::GooglePrivacyDlpV2beta1OutputStorageConfig
Cloud repository for storing output.
-
#storage_config ⇒ Google::Apis::DlpV2beta1::GooglePrivacyDlpV2beta1StorageConfig
Shared message indicating Cloud storage type.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GooglePrivacyDlpV2beta1CreateInspectOperationRequest
constructor
A new instance of GooglePrivacyDlpV2beta1CreateInspectOperationRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ GooglePrivacyDlpV2beta1CreateInspectOperationRequest
Returns a new instance of GooglePrivacyDlpV2beta1CreateInspectOperationRequest
805 806 807 |
# File 'generated/google/apis/dlp_v2beta1/classes.rb', line 805 def initialize(**args) update!(**args) end |
Instance Attribute Details
#inspect_config ⇒ Google::Apis::DlpV2beta1::GooglePrivacyDlpV2beta1InspectConfig
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
788 789 790 |
# File 'generated/google/apis/dlp_v2beta1/classes.rb', line 788 def inspect_config @inspect_config end |
#operation_config ⇒ Google::Apis::DlpV2beta1::GooglePrivacyDlpV2beta1OperationConfig
Additional configuration for inspect long running operations.
Corresponds to the JSON property operationConfig
793 794 795 |
# File 'generated/google/apis/dlp_v2beta1/classes.rb', line 793 def operation_config @operation_config end |
#output_config ⇒ Google::Apis::DlpV2beta1::GooglePrivacyDlpV2beta1OutputStorageConfig
Cloud repository for storing output.
Corresponds to the JSON property outputConfig
798 799 800 |
# File 'generated/google/apis/dlp_v2beta1/classes.rb', line 798 def output_config @output_config end |
#storage_config ⇒ Google::Apis::DlpV2beta1::GooglePrivacyDlpV2beta1StorageConfig
Shared message indicating Cloud storage type.
Corresponds to the JSON property storageConfig
803 804 805 |
# File 'generated/google/apis/dlp_v2beta1/classes.rb', line 803 def storage_config @storage_config end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
810 811 812 813 814 815 |
# File 'generated/google/apis/dlp_v2beta1/classes.rb', line 810 def update!(**args) @inspect_config = args[:inspect_config] if args.key?(:inspect_config) @operation_config = args[:operation_config] if args.key?(:operation_config) @output_config = args[:output_config] if args.key?(:output_config) @storage_config = args[:storage_config] if args.key?(:storage_config) end |