Class: Google::Apis::DlpV2beta2::GooglePrivacyDlpV2beta2TransformationOverview
- Inherits:
-
Object
- Object
- Google::Apis::DlpV2beta2::GooglePrivacyDlpV2beta2TransformationOverview
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/dlp_v2beta2/classes.rb,
generated/google/apis/dlp_v2beta2/representations.rb,
generated/google/apis/dlp_v2beta2/representations.rb
Overview
Overview of the modifications that occurred.
Instance Attribute Summary collapse
-
#transformation_summaries ⇒ Array<Google::Apis::DlpV2beta2::GooglePrivacyDlpV2beta2TransformationSummary>
Transformations applied to the dataset.
-
#transformed_bytes ⇒ Fixnum
Total size in bytes that were transformed in some way.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GooglePrivacyDlpV2beta2TransformationOverview
constructor
A new instance of GooglePrivacyDlpV2beta2TransformationOverview.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ GooglePrivacyDlpV2beta2TransformationOverview
Returns a new instance of GooglePrivacyDlpV2beta2TransformationOverview
5874 5875 5876 |
# File 'generated/google/apis/dlp_v2beta2/classes.rb', line 5874 def initialize(**args) update!(**args) end |
Instance Attribute Details
#transformation_summaries ⇒ Array<Google::Apis::DlpV2beta2::GooglePrivacyDlpV2beta2TransformationSummary>
Transformations applied to the dataset.
Corresponds to the JSON property transformationSummaries
5867 5868 5869 |
# File 'generated/google/apis/dlp_v2beta2/classes.rb', line 5867 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
5872 5873 5874 |
# File 'generated/google/apis/dlp_v2beta2/classes.rb', line 5872 def transformed_bytes @transformed_bytes end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5879 5880 5881 5882 |
# File 'generated/google/apis/dlp_v2beta2/classes.rb', line 5879 def update!(**args) @transformation_summaries = args[:transformation_summaries] if args.key?(:transformation_summaries) @transformed_bytes = args[:transformed_bytes] if args.key?(:transformed_bytes) end |