Class: Google::Apis::DlpV2::GooglePrivacyDlpV2TransformationOverview
- Inherits:
-
Object
- Object
- Google::Apis::DlpV2::GooglePrivacyDlpV2TransformationOverview
- 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
-
#transformation_summaries ⇒ Array<Google::Apis::DlpV2::GooglePrivacyDlpV2TransformationSummary>
Transformations applied to the dataset.
-
#transformed_bytes ⇒ Fixnum
Total size in bytes that were transformed in some way.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GooglePrivacyDlpV2TransformationOverview
constructor
A new instance of GooglePrivacyDlpV2TransformationOverview.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GooglePrivacyDlpV2TransformationOverview
Returns a new instance of GooglePrivacyDlpV2TransformationOverview.
9810 9811 9812 |
# File 'lib/google/apis/dlp_v2/classes.rb', line 9810 def initialize(**args) update!(**args) end |
Instance Attribute Details
#transformation_summaries ⇒ Array<Google::Apis::DlpV2::GooglePrivacyDlpV2TransformationSummary>
Transformations applied to the dataset.
Corresponds to the JSON property transformationSummaries
9803 9804 9805 |
# File 'lib/google/apis/dlp_v2/classes.rb', line 9803 def transformation_summaries @transformation_summaries end |
#transformed_bytes ⇒ Fixnum
Total size in bytes that were transformed in some way.
Corresponds to the JSON property transformedBytes
9808 9809 9810 |
# File 'lib/google/apis/dlp_v2/classes.rb', line 9808 def transformed_bytes @transformed_bytes end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
9815 9816 9817 9818 |
# File 'lib/google/apis/dlp_v2/classes.rb', line 9815 def update!(**args) @transformation_summaries = args[:transformation_summaries] if args.key?(:transformation_summaries) @transformed_bytes = args[:transformed_bytes] if args.key?(:transformed_bytes) end |