class Google::Apis::DlpV2::GooglePrivacyDlpV2RiskAnalysisJobConfig
Configuration for a risk analysis job. See cloud.google.com/dlp/docs/ concepts-risk-analysis to learn more.
Attributes
Actions to execute at the completion of the job. Are executed in the order provided. Corresponds to the JSON property `actions` @return [Array<Google::Apis::DlpV2::GooglePrivacyDlpV2Action>]
Privacy metric to compute for reidentification risk analysis. Corresponds to the JSON property `privacyMetric` @return [Google::Apis::DlpV2::GooglePrivacyDlpV2PrivacyMetric]
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: `:.` or `..`. Corresponds to the JSON property `sourceTable` @return [Google::Apis::DlpV2::GooglePrivacyDlpV2BigQueryTable]
Public Class Methods
# File lib/google/apis/dlp_v2/classes.rb, line 5403 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/dlp_v2/classes.rb, line 5408 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