Class: Google::Apis::DlpV2beta1::GooglePrivacyDlpV2beta1DeidentificationSummary

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

High level summary of deidentification.

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) ⇒ GooglePrivacyDlpV2beta1DeidentificationSummary

Returns a new instance of GooglePrivacyDlpV2beta1DeidentificationSummary



1079
1080
1081
# File 'generated/google/apis/dlp_v2beta1/classes.rb', line 1079

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

Instance Attribute Details

#transformation_summariesArray<Google::Apis::DlpV2beta1::GooglePrivacyDlpV2beta1TransformationSummary>

Transformations applied to the dataset. Corresponds to the JSON property transformationSummaries



1072
1073
1074
# File 'generated/google/apis/dlp_v2beta1/classes.rb', line 1072

def transformation_summaries
  @transformation_summaries
end

#transformed_bytesFixnum

Total size in bytes that were transformed in some way. Corresponds to the JSON property transformedBytes

Returns:

  • (Fixnum)


1077
1078
1079
# File 'generated/google/apis/dlp_v2beta1/classes.rb', line 1077

def transformed_bytes
  @transformed_bytes
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1084
1085
1086
1087
# File 'generated/google/apis/dlp_v2beta1/classes.rb', line 1084

def update!(**args)
  @transformation_summaries = args[:transformation_summaries] if args.key?(:transformation_summaries)
  @transformed_bytes = args[:transformed_bytes] if args.key?(:transformed_bytes)
end