Class: Google::Apis::DlpV2beta2::GooglePrivacyDlpV2beta2RiskAnalysisJobConfig
- Inherits:
-
Object
- Object
- Google::Apis::DlpV2beta2::GooglePrivacyDlpV2beta2RiskAnalysisJobConfig
- 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
Overview
Configuration for a risk analysis job.
Instance Attribute Summary collapse
-
#privacy_metric ⇒ Google::Apis::DlpV2beta2::GooglePrivacyDlpV2beta2PrivacyMetric
Privacy metric to compute for reidentification risk analysis.
-
#source_table ⇒ Google::Apis::DlpV2beta2::GooglePrivacyDlpV2beta2BigQueryTable
Message defining the location of a BigQuery table.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GooglePrivacyDlpV2beta2RiskAnalysisJobConfig
constructor
A new instance of GooglePrivacyDlpV2beta2RiskAnalysisJobConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ GooglePrivacyDlpV2beta2RiskAnalysisJobConfig
Returns a new instance of GooglePrivacyDlpV2beta2RiskAnalysisJobConfig
4874 4875 4876 |
# File 'generated/google/apis/dlp_v2beta2/classes.rb', line 4874 def initialize(**args) update!(**args) end |
Instance Attribute Details
#privacy_metric ⇒ Google::Apis::DlpV2beta2::GooglePrivacyDlpV2beta2PrivacyMetric
Privacy metric to compute for reidentification risk analysis.
Corresponds to the JSON property privacyMetric
4863 4864 4865 |
# File 'generated/google/apis/dlp_v2beta2/classes.rb', line 4863 def privacy_metric @privacy_metric end |
#source_table ⇒ Google::Apis::DlpV2beta2::GooglePrivacyDlpV2beta2BigQueryTable
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
4872 4873 4874 |
# File 'generated/google/apis/dlp_v2beta2/classes.rb', line 4872 def source_table @source_table end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4879 4880 4881 4882 |
# File 'generated/google/apis/dlp_v2beta2/classes.rb', line 4879 def update!(**args) @privacy_metric = args[:privacy_metric] if args.key?(:privacy_metric) @source_table = args[:source_table] if args.key?(:source_table) end |