Class: Google::Cloud::Dlp::V2::AnalyzeDataSourceRiskDetails::KAnonymityResult

Inherits:
Object
  • Object
show all
Extended by:
Protobuf::MessageExts::ClassMethods
Includes:
Protobuf::MessageExts
Defined in:
proto_docs/google/privacy/dlp/v2/dlp.rb

Overview

Result of the k-anonymity computation.

Defined Under Namespace

Classes: KAnonymityEquivalenceClass, KAnonymityHistogramBucket

Instance Attribute Summary collapse

Instance Attribute Details

#equivalence_class_histogram_buckets::Array<::Google::Cloud::Dlp::V2::AnalyzeDataSourceRiskDetails::KAnonymityResult::KAnonymityHistogramBucket>

Returns Histogram of k-anonymity equivalence classes.

Returns:



1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
# File 'proto_docs/google/privacy/dlp/v2/dlp.rb', line 1926

class KAnonymityResult
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # The set of columns' values that share the same ldiversity value
  # @!attribute [rw] quasi_ids_values
  #   @return [::Array<::Google::Cloud::Dlp::V2::Value>]
  #     Set of values defining the equivalence class. One value per
  #     quasi-identifier column in the original KAnonymity metric message.
  #     The order is always the same as the original request.
  # @!attribute [rw] equivalence_class_size
  #   @return [::Integer]
  #     Size of the equivalence class, for example number of rows with the
  #     above set of values.
  class KAnonymityEquivalenceClass
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # Histogram of k-anonymity equivalence classes.
  # @!attribute [rw] equivalence_class_size_lower_bound
  #   @return [::Integer]
  #     Lower bound on the size of the equivalence classes in this bucket.
  # @!attribute [rw] equivalence_class_size_upper_bound
  #   @return [::Integer]
  #     Upper bound on the size of the equivalence classes in this bucket.
  # @!attribute [rw] bucket_size
  #   @return [::Integer]
  #     Total number of equivalence classes in this bucket.
  # @!attribute [rw] bucket_values
  #   @return [::Array<::Google::Cloud::Dlp::V2::AnalyzeDataSourceRiskDetails::KAnonymityResult::KAnonymityEquivalenceClass>]
  #     Sample of equivalence classes in this bucket. The total number of
  #     classes returned per bucket is capped at 20.
  # @!attribute [rw] bucket_value_count
  #   @return [::Integer]
  #     Total number of distinct equivalence classes in this bucket.
  class KAnonymityHistogramBucket
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end
end