Class: Google::Apis::DlpV2beta2::GooglePrivacyDlpV2beta2AnalyzeDataSourceRiskDetails
- Inherits:
-
Object
- Object
- Google::Apis::DlpV2beta2::GooglePrivacyDlpV2beta2AnalyzeDataSourceRiskDetails
- 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
Result of a risk analysis operation request.
Instance Attribute Summary collapse
-
#categorical_stats_result ⇒ Google::Apis::DlpV2beta2::GooglePrivacyDlpV2beta2CategoricalStatsResult
Result of the categorical stats computation.
-
#k_anonymity_result ⇒ Google::Apis::DlpV2beta2::GooglePrivacyDlpV2beta2KAnonymityResult
Result of the k-anonymity computation.
-
#k_map_estimation_result ⇒ Google::Apis::DlpV2beta2::GooglePrivacyDlpV2beta2KMapEstimationResult
Result of the reidentifiability analysis.
-
#l_diversity_result ⇒ Google::Apis::DlpV2beta2::GooglePrivacyDlpV2beta2LDiversityResult
Result of the l-diversity computation.
-
#numerical_stats_result ⇒ Google::Apis::DlpV2beta2::GooglePrivacyDlpV2beta2NumericalStatsResult
Result of the numerical stats computation.
-
#requested_privacy_metric ⇒ Google::Apis::DlpV2beta2::GooglePrivacyDlpV2beta2PrivacyMetric
Privacy metric to compute for reidentification risk analysis.
-
#requested_source_table ⇒ Google::Apis::DlpV2beta2::GooglePrivacyDlpV2beta2BigQueryTable
Message defining the location of a BigQuery table.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GooglePrivacyDlpV2beta2AnalyzeDataSourceRiskDetails
constructor
A new instance of GooglePrivacyDlpV2beta2AnalyzeDataSourceRiskDetails.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ GooglePrivacyDlpV2beta2AnalyzeDataSourceRiskDetails
Returns a new instance of GooglePrivacyDlpV2beta2AnalyzeDataSourceRiskDetails
1656 1657 1658 |
# File 'generated/google/apis/dlp_v2beta2/classes.rb', line 1656 def initialize(**args) update!(**args) end |
Instance Attribute Details
#categorical_stats_result ⇒ Google::Apis::DlpV2beta2::GooglePrivacyDlpV2beta2CategoricalStatsResult
Result of the categorical stats computation.
Corresponds to the JSON property categoricalStatsResult
1619 1620 1621 |
# File 'generated/google/apis/dlp_v2beta2/classes.rb', line 1619 def categorical_stats_result @categorical_stats_result end |
#k_anonymity_result ⇒ Google::Apis::DlpV2beta2::GooglePrivacyDlpV2beta2KAnonymityResult
Result of the k-anonymity computation.
Corresponds to the JSON property kAnonymityResult
1624 1625 1626 |
# File 'generated/google/apis/dlp_v2beta2/classes.rb', line 1624 def k_anonymity_result @k_anonymity_result end |
#k_map_estimation_result ⇒ Google::Apis::DlpV2beta2::GooglePrivacyDlpV2beta2KMapEstimationResult
Result of the reidentifiability analysis. Note that these results are an
estimation, not exact values.
Corresponds to the JSON property kMapEstimationResult
1630 1631 1632 |
# File 'generated/google/apis/dlp_v2beta2/classes.rb', line 1630 def k_map_estimation_result @k_map_estimation_result end |
#l_diversity_result ⇒ Google::Apis::DlpV2beta2::GooglePrivacyDlpV2beta2LDiversityResult
Result of the l-diversity computation.
Corresponds to the JSON property lDiversityResult
1635 1636 1637 |
# File 'generated/google/apis/dlp_v2beta2/classes.rb', line 1635 def l_diversity_result @l_diversity_result end |
#numerical_stats_result ⇒ Google::Apis::DlpV2beta2::GooglePrivacyDlpV2beta2NumericalStatsResult
Result of the numerical stats computation.
Corresponds to the JSON property numericalStatsResult
1640 1641 1642 |
# File 'generated/google/apis/dlp_v2beta2/classes.rb', line 1640 def numerical_stats_result @numerical_stats_result end |
#requested_privacy_metric ⇒ Google::Apis::DlpV2beta2::GooglePrivacyDlpV2beta2PrivacyMetric
Privacy metric to compute for reidentification risk analysis.
Corresponds to the JSON property requestedPrivacyMetric
1645 1646 1647 |
# File 'generated/google/apis/dlp_v2beta2/classes.rb', line 1645 def requested_privacy_metric @requested_privacy_metric end |
#requested_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 requestedSourceTable
1654 1655 1656 |
# File 'generated/google/apis/dlp_v2beta2/classes.rb', line 1654 def requested_source_table @requested_source_table end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1661 1662 1663 1664 1665 1666 1667 1668 1669 |
# File 'generated/google/apis/dlp_v2beta2/classes.rb', line 1661 def update!(**args) @categorical_stats_result = args[:categorical_stats_result] if args.key?(:categorical_stats_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_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 |