Class: Google::Apis::DlpV2beta1::GooglePrivacyDlpV2beta1RiskAnalysisOperationResult

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/dlp_v2beta1/classes.rb,
generated/google/apis/dlp_v2beta1/representations.rb,
generated/google/apis/dlp_v2beta1/representations.rb

Overview

Result of a risk analysis Operation request.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ GooglePrivacyDlpV2beta1RiskAnalysisOperationResult

Returns a new instance of GooglePrivacyDlpV2beta1RiskAnalysisOperationResult



3085
3086
3087
# File 'generated/google/apis/dlp_v2beta1/classes.rb', line 3085

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#categorical_stats_resultGoogle::Apis::DlpV2beta1::GooglePrivacyDlpV2beta1CategoricalStatsResult

Result of the categorical stats computation. Corresponds to the JSON property categoricalStatsResult



3062
3063
3064
# File 'generated/google/apis/dlp_v2beta1/classes.rb', line 3062

def categorical_stats_result
  @categorical_stats_result
end

#k_anonymity_resultGoogle::Apis::DlpV2beta1::GooglePrivacyDlpV2beta1KAnonymityResult

Result of the k-anonymity computation. Corresponds to the JSON property kAnonymityResult



3067
3068
3069
# File 'generated/google/apis/dlp_v2beta1/classes.rb', line 3067

def k_anonymity_result
  @k_anonymity_result
end

#k_map_estimation_resultGoogle::Apis::DlpV2beta1::GooglePrivacyDlpV2beta1KMapEstimationResult

Result of the reidentifiability analysis. Note that these results are an estimation, not exact values. Corresponds to the JSON property kMapEstimationResult



3073
3074
3075
# File 'generated/google/apis/dlp_v2beta1/classes.rb', line 3073

def k_map_estimation_result
  @k_map_estimation_result
end

#l_diversity_resultGoogle::Apis::DlpV2beta1::GooglePrivacyDlpV2beta1LDiversityResult

Result of the l-diversity computation. Corresponds to the JSON property lDiversityResult



3078
3079
3080
# File 'generated/google/apis/dlp_v2beta1/classes.rb', line 3078

def l_diversity_result
  @l_diversity_result
end

#numerical_stats_resultGoogle::Apis::DlpV2beta1::GooglePrivacyDlpV2beta1NumericalStatsResult

Result of the numerical stats computation. Corresponds to the JSON property numericalStatsResult



3083
3084
3085
# File 'generated/google/apis/dlp_v2beta1/classes.rb', line 3083

def numerical_stats_result
  @numerical_stats_result
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3090
3091
3092
3093
3094
3095
3096
# File 'generated/google/apis/dlp_v2beta1/classes.rb', line 3090

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)
end