Class: Google::Apis::DlpV2::GooglePrivacyDlpV2TransformationOverview

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

Overview

Overview of the modifications that occurred.

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

Returns a new instance of GooglePrivacyDlpV2TransformationOverview



4464
4465
4466
# File 'generated/google/apis/dlp_v2/classes.rb', line 4464

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

Instance Attribute Details

#transformation_summariesArray<Google::Apis::DlpV2::GooglePrivacyDlpV2TransformationSummary>

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



4457
4458
4459
# File 'generated/google/apis/dlp_v2/classes.rb', line 4457

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)


4462
4463
4464
# File 'generated/google/apis/dlp_v2/classes.rb', line 4462

def transformed_bytes
  @transformed_bytes
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4469
4470
4471
4472
# File 'generated/google/apis/dlp_v2/classes.rb', line 4469

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