class Google::Apis::DlpV2::GooglePrivacyDlpV2AnalyzeDataSourceRiskDetails

Result of a risk analysis operation request.

Attributes

categorical_stats_result[RW]

Result of the categorical stats computation. Corresponds to the JSON property `categoricalStatsResult` @return [Google::Apis::DlpV2::GooglePrivacyDlpV2CategoricalStatsResult]

delta_presence_estimation_result[RW]

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]

k_anonymity_result[RW]

Result of the k-anonymity computation. Corresponds to the JSON property `kAnonymityResult` @return [Google::Apis::DlpV2::GooglePrivacyDlpV2KAnonymityResult]

k_map_estimation_result[RW]

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]

l_diversity_result[RW]

Result of the l-diversity computation. Corresponds to the JSON property `lDiversityResult` @return [Google::Apis::DlpV2::GooglePrivacyDlpV2LDiversityResult]

numerical_stats_result[RW]

Result of the numerical stats computation. Corresponds to the JSON property `numericalStatsResult` @return [Google::Apis::DlpV2::GooglePrivacyDlpV2NumericalStatsResult]

requested_options[RW]

Risk analysis options. Corresponds to the JSON property `requestedOptions` @return [Google::Apis::DlpV2::GooglePrivacyDlpV2RequestedRiskAnalysisOptions]

requested_privacy_metric[RW]

Privacy metric to compute for reidentification risk analysis. Corresponds to the JSON property `requestedPrivacyMetric` @return [Google::Apis::DlpV2::GooglePrivacyDlpV2PrivacyMetric]

requested_source_table[RW]

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

new(**args) click to toggle source
# File lib/google/apis/dlp_v2/classes.rb, line 164
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

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