class Google::Apis::DlpV2::GooglePrivacyDlpV2TransformationOverview
Overview of the modifications that occurred.
Attributes
transformation_summaries[RW]
Transformations applied to the dataset. Corresponds to the JSON property `transformationSummaries` @return [Array<Google::Apis::DlpV2::GooglePrivacyDlpV2TransformationSummary>]
transformed_bytes[RW]
Total size in bytes that were transformed in some way. Corresponds to the JSON property `transformedBytes` @return [Fixnum]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/dlp_v2/classes.rb, line 6094 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/dlp_v2/classes.rb, line 6099 def update!(**args) @transformation_summaries = args[:transformation_summaries] if args.key?(:transformation_summaries) @transformed_bytes = args[:transformed_bytes] if args.key?(:transformed_bytes) end