Class: Google::Apis::DlpV2beta1::GooglePrivacyDlpV2beta1TransformationSummary
- Inherits:
-
Object
- Object
- Google::Apis::DlpV2beta1::GooglePrivacyDlpV2beta1TransformationSummary
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/dlp_v2beta1/classes.rb,
generated/google/apis/dlp_v2beta1/representations.rb,
generated/google/apis/dlp_v2beta1/representations.rb
Overview
Summary of a single tranformation.
Instance Attribute Summary collapse
-
#field ⇒ Google::Apis::DlpV2beta1::GooglePrivacyDlpV2beta1FieldId
General identifier of a data field in a storage service.
-
#field_transformations ⇒ Array<Google::Apis::DlpV2beta1::GooglePrivacyDlpV2beta1FieldTransformation>
The field transformation that was applied.
-
#info_type ⇒ Google::Apis::DlpV2beta1::GooglePrivacyDlpV2beta1InfoType
Type of information detected by the API.
-
#record_suppress ⇒ Google::Apis::DlpV2beta1::GooglePrivacyDlpV2beta1RecordSuppression
Configuration to suppress records whose suppression conditions evaluate to true.
-
#results ⇒ Array<Google::Apis::DlpV2beta1::GooglePrivacyDlpV2beta1SummaryResult>
Corresponds to the JSON property
results
. -
#transformation ⇒ Google::Apis::DlpV2beta1::GooglePrivacyDlpV2beta1PrimitiveTransformation
A rule for transforming a value.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GooglePrivacyDlpV2beta1TransformationSummary
constructor
A new instance of GooglePrivacyDlpV2beta1TransformationSummary.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ GooglePrivacyDlpV2beta1TransformationSummary
Returns a new instance of GooglePrivacyDlpV2beta1TransformationSummary
2969 2970 2971 |
# File 'generated/google/apis/dlp_v2beta1/classes.rb', line 2969 def initialize(**args) update!(**args) end |
Instance Attribute Details
#field ⇒ Google::Apis::DlpV2beta1::GooglePrivacyDlpV2beta1FieldId
General identifier of a data field in a storage service.
Corresponds to the JSON property field
2940 2941 2942 |
# File 'generated/google/apis/dlp_v2beta1/classes.rb', line 2940 def field @field end |
#field_transformations ⇒ Array<Google::Apis::DlpV2beta1::GooglePrivacyDlpV2beta1FieldTransformation>
The field transformation that was applied. This list will contain
multiple only in the case of errors.
Corresponds to the JSON property fieldTransformations
2946 2947 2948 |
# File 'generated/google/apis/dlp_v2beta1/classes.rb', line 2946 def field_transformations @field_transformations end |
#info_type ⇒ Google::Apis::DlpV2beta1::GooglePrivacyDlpV2beta1InfoType
Type of information detected by the API.
Corresponds to the JSON property infoType
2951 2952 2953 |
# File 'generated/google/apis/dlp_v2beta1/classes.rb', line 2951 def info_type @info_type end |
#record_suppress ⇒ Google::Apis::DlpV2beta1::GooglePrivacyDlpV2beta1RecordSuppression
Configuration to suppress records whose suppression conditions evaluate to
true.
Corresponds to the JSON property recordSuppress
2957 2958 2959 |
# File 'generated/google/apis/dlp_v2beta1/classes.rb', line 2957 def record_suppress @record_suppress end |
#results ⇒ Array<Google::Apis::DlpV2beta1::GooglePrivacyDlpV2beta1SummaryResult>
Corresponds to the JSON property results
2962 2963 2964 |
# File 'generated/google/apis/dlp_v2beta1/classes.rb', line 2962 def results @results end |
#transformation ⇒ Google::Apis::DlpV2beta1::GooglePrivacyDlpV2beta1PrimitiveTransformation
A rule for transforming a value.
Corresponds to the JSON property transformation
2967 2968 2969 |
# File 'generated/google/apis/dlp_v2beta1/classes.rb', line 2967 def transformation @transformation end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2974 2975 2976 2977 2978 2979 2980 2981 |
# File 'generated/google/apis/dlp_v2beta1/classes.rb', line 2974 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) end |