class Google::Apis::DlpV2::GooglePrivacyDlpV2AnalyzeDataSourceRiskDetails
Result of a risk analysis operation request.
Attributes
Result of the categorical stats computation. Corresponds to the JSON property `categoricalStatsResult` @return [Google::Apis::DlpV2::GooglePrivacyDlpV2CategoricalStatsResult]
Result of the δ-presence computation. Note that these results are an estimation, not exact values. Corresponds to the JSON property `deltaPresenceEstimationResult` @return [Google::Apis::DlpV2::GooglePrivacyDlpV2DeltaPresenceEstimationResult]
Result of the k-anonymity computation. Corresponds to the JSON property `kAnonymityResult` @return [Google::Apis::DlpV2::GooglePrivacyDlpV2KAnonymityResult]
Result of the reidentifiability analysis. Note that these results are an estimation, not exact values. Corresponds to the JSON property `kMapEstimationResult` @return [Google::Apis::DlpV2::GooglePrivacyDlpV2KMapEstimationResult]
Result of the l-diversity computation. Corresponds to the JSON property `lDiversityResult` @return [Google::Apis::DlpV2::GooglePrivacyDlpV2LDiversityResult]
Result of the numerical stats computation. Corresponds to the JSON property `numericalStatsResult` @return [Google::Apis::DlpV2::GooglePrivacyDlpV2NumericalStatsResult]
Risk analysis options. Corresponds to the JSON property `requestedOptions` @return [Google::Apis::DlpV2::GooglePrivacyDlpV2RequestedRiskAnalysisOptions]
Privacy metric to compute for reidentification risk analysis. Corresponds to the JSON property `requestedPrivacyMetric` @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 `requestedSourceTable` @return [Google::Apis::DlpV2::GooglePrivacyDlpV2BigQueryTable]
Public Class Methods
# File lib/google/apis/dlp_v2/classes.rb, line 164 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/dlp_v2/classes.rb, line 169 def update!(**args) @categorical_stats_result = args[:categorical_stats_result] if args.key?(:categorical_stats_result) @delta_presence_estimation_result = args[:delta_presence_estimation_result] if args.key?(:delta_presence_estimation_result) @k_anonymity_result = args[:k_anonymity_result] if args.key?(:k_anonymity_result) @k_map_estimation_result = args[:k_map_estimation_result] if args.key?(:k_map_estimation_result) @l_diversity_result = args[:l_diversity_result] if args.key?(:l_diversity_result) @numerical_stats_result = args[:numerical_stats_result] if args.key?(:numerical_stats_result) @requested_options = args[:requested_options] if args.key?(:requested_options) @requested_privacy_metric = args[:requested_privacy_metric] if args.key?(:requested_privacy_metric) @requested_source_table = args[:requested_source_table] if args.key?(:requested_source_table) end