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

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

Overview

Overview of the modifications that occurred.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GooglePrivacyDlpV2TransformationOverview

Returns a new instance of GooglePrivacyDlpV2TransformationOverview.



9650
9651
9652
# File 'lib/google/apis/dlp_v2/classes.rb', line 9650

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



9643
9644
9645
# File 'lib/google/apis/dlp_v2/classes.rb', line 9643

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)


9648
9649
9650
# File 'lib/google/apis/dlp_v2/classes.rb', line 9648

def transformed_bytes
  @transformed_bytes
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



9655
9656
9657
9658
# File 'lib/google/apis/dlp_v2/classes.rb', line 9655

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