Class: Google::Apis::DlpV2beta2::GooglePrivacyDlpV2beta2TransformationSummary
- Inherits:
-
Object
- Object
- Google::Apis::DlpV2beta2::GooglePrivacyDlpV2beta2TransformationSummary
- 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
Summary of a single tranformation. Only one of 'transformation', 'field_transformation', or 'record_suppress' will be set.
Instance Attribute Summary collapse
-
#field ⇒ Google::Apis::DlpV2beta2::GooglePrivacyDlpV2beta2FieldId
General identifier of a data field in a storage service.
-
#field_transformations ⇒ Array<Google::Apis::DlpV2beta2::GooglePrivacyDlpV2beta2FieldTransformation>
The field transformation that was applied.
-
#info_type ⇒ Google::Apis::DlpV2beta2::GooglePrivacyDlpV2beta2InfoType
Type of information detected by the API.
-
#record_suppress ⇒ Google::Apis::DlpV2beta2::GooglePrivacyDlpV2beta2RecordSuppression
Configuration to suppress records whose suppression conditions evaluate to true.
-
#results ⇒ Array<Google::Apis::DlpV2beta2::GooglePrivacyDlpV2beta2SummaryResult>
Corresponds to the JSON property
results. -
#transformation ⇒ Google::Apis::DlpV2beta2::GooglePrivacyDlpV2beta2PrimitiveTransformation
A rule for transforming a value.
-
#transformed_bytes ⇒ Fixnum
Total size in bytes that were transformed in some way.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GooglePrivacyDlpV2beta2TransformationSummary
constructor
A new instance of GooglePrivacyDlpV2beta2TransformationSummary.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ GooglePrivacyDlpV2beta2TransformationSummary
Returns a new instance of GooglePrivacyDlpV2beta2TransformationSummary
5168 5169 5170 |
# File 'generated/google/apis/dlp_v2beta2/classes.rb', line 5168 def initialize(**args) update!(**args) end |
Instance Attribute Details
#field ⇒ Google::Apis::DlpV2beta2::GooglePrivacyDlpV2beta2FieldId
General identifier of a data field in a storage service.
Corresponds to the JSON property field
5133 5134 5135 |
# File 'generated/google/apis/dlp_v2beta2/classes.rb', line 5133 def field @field end |
#field_transformations ⇒ Array<Google::Apis::DlpV2beta2::GooglePrivacyDlpV2beta2FieldTransformation>
The field transformation that was applied.
If multiple field transformations are requested for a single field,
this list will contain all of them; otherwise, only one is supplied.
Corresponds to the JSON property fieldTransformations
5140 5141 5142 |
# File 'generated/google/apis/dlp_v2beta2/classes.rb', line 5140 def field_transformations @field_transformations end |
#info_type ⇒ Google::Apis::DlpV2beta2::GooglePrivacyDlpV2beta2InfoType
Type of information detected by the API.
Corresponds to the JSON property infoType
5145 5146 5147 |
# File 'generated/google/apis/dlp_v2beta2/classes.rb', line 5145 def info_type @info_type end |
#record_suppress ⇒ Google::Apis::DlpV2beta2::GooglePrivacyDlpV2beta2RecordSuppression
Configuration to suppress records whose suppression conditions evaluate to
true.
Corresponds to the JSON property recordSuppress
5151 5152 5153 |
# File 'generated/google/apis/dlp_v2beta2/classes.rb', line 5151 def record_suppress @record_suppress end |
#results ⇒ Array<Google::Apis::DlpV2beta2::GooglePrivacyDlpV2beta2SummaryResult>
Corresponds to the JSON property results
5156 5157 5158 |
# File 'generated/google/apis/dlp_v2beta2/classes.rb', line 5156 def results @results end |
#transformation ⇒ Google::Apis::DlpV2beta2::GooglePrivacyDlpV2beta2PrimitiveTransformation
A rule for transforming a value.
Corresponds to the JSON property transformation
5161 5162 5163 |
# File 'generated/google/apis/dlp_v2beta2/classes.rb', line 5161 def transformation @transformation end |
#transformed_bytes ⇒ Fixnum
Total size in bytes that were transformed in some way.
Corresponds to the JSON property transformedBytes
5166 5167 5168 |
# File 'generated/google/apis/dlp_v2beta2/classes.rb', line 5166 def transformed_bytes @transformed_bytes end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5173 5174 5175 5176 5177 5178 5179 5180 5181 |
# File 'generated/google/apis/dlp_v2beta2/classes.rb', line 5173 def update!(**args) @field = args[:field] if args.key?(:field) @field_transformations = args[:field_transformations] if args.key?(:field_transformations) @info_type = args[:info_type] if args.key?(:info_type) @record_suppress = args[:record_suppress] if args.key?(:record_suppress) @results = args[:results] if args.key?(:results) @transformation = args[:transformation] if args.key?(:transformation) @transformed_bytes = args[:transformed_bytes] if args.key?(:transformed_bytes) end |