Class: Google::Apis::DlpV2::GooglePrivacyDlpV2RiskAnalysisJobConfig
- Inherits:
-
Object
- Object
- Google::Apis::DlpV2::GooglePrivacyDlpV2RiskAnalysisJobConfig
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/dlp_v2/classes.rb,
generated/google/apis/dlp_v2/representations.rb,
generated/google/apis/dlp_v2/representations.rb
Overview
Configuration for a risk analysis job.
Instance Attribute Summary collapse
-
#actions ⇒ Array<Google::Apis::DlpV2::GooglePrivacyDlpV2Action>
Actions to execute at the completion of the job.
-
#privacy_metric ⇒ Google::Apis::DlpV2::GooglePrivacyDlpV2PrivacyMetric
Privacy metric to compute for reidentification risk analysis.
-
#source_table ⇒ Google::Apis::DlpV2::GooglePrivacyDlpV2BigQueryTable
Message defining the location of a BigQuery table.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GooglePrivacyDlpV2RiskAnalysisJobConfig
constructor
A new instance of GooglePrivacyDlpV2RiskAnalysisJobConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ GooglePrivacyDlpV2RiskAnalysisJobConfig
Returns a new instance of GooglePrivacyDlpV2RiskAnalysisJobConfig
4006 4007 4008 |
# File 'generated/google/apis/dlp_v2/classes.rb', line 4006 def initialize(**args) update!(**args) end |
Instance Attribute Details
#actions ⇒ Array<Google::Apis::DlpV2::GooglePrivacyDlpV2Action>
Actions to execute at the completion of the job. Are executed in the order
provided.
Corresponds to the JSON property actions
3990 3991 3992 |
# File 'generated/google/apis/dlp_v2/classes.rb', line 3990 def actions @actions end |
#privacy_metric ⇒ Google::Apis::DlpV2::GooglePrivacyDlpV2PrivacyMetric
Privacy metric to compute for reidentification risk analysis.
Corresponds to the JSON property privacyMetric
3995 3996 3997 |
# File 'generated/google/apis/dlp_v2/classes.rb', line 3995 def privacy_metric @privacy_metric end |
#source_table ⇒ Google::Apis::DlpV2::GooglePrivacyDlpV2BigQueryTable
Message defining the location of a BigQuery table. A table is uniquely
identified by its project_id, dataset_id, and table_name. Within a query
a table is often referenced with a string in the format of:
<project_id>:<dataset_id>.<table_id>
or
<project_id>.<dataset_id>.<table_id>
.
Corresponds to the JSON property sourceTable
4004 4005 4006 |
# File 'generated/google/apis/dlp_v2/classes.rb', line 4004 def source_table @source_table end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4011 4012 4013 4014 4015 |
# File 'generated/google/apis/dlp_v2/classes.rb', line 4011 def update!(**args) @actions = args[:actions] if args.key?(:actions) @privacy_metric = args[:privacy_metric] if args.key?(:privacy_metric) @source_table = args[:source_table] if args.key?(:source_table) end |