Class: Google::Apis::DlpV2beta1::GooglePrivacyDlpV2beta1TransformationSummary

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ GooglePrivacyDlpV2beta1TransformationSummary

Returns a new instance of GooglePrivacyDlpV2beta1TransformationSummary



3367
3368
3369
# File 'generated/google/apis/dlp_v2beta1/classes.rb', line 3367

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#fieldGoogle::Apis::DlpV2beta1::GooglePrivacyDlpV2beta1FieldId

General identifier of a data field in a storage service. Corresponds to the JSON property field



3338
3339
3340
# File 'generated/google/apis/dlp_v2beta1/classes.rb', line 3338

def field
  @field
end

#field_transformationsArray<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



3344
3345
3346
# File 'generated/google/apis/dlp_v2beta1/classes.rb', line 3344

def field_transformations
  @field_transformations
end

#info_typeGoogle::Apis::DlpV2beta1::GooglePrivacyDlpV2beta1InfoType

Type of information detected by the API. Corresponds to the JSON property infoType



3349
3350
3351
# File 'generated/google/apis/dlp_v2beta1/classes.rb', line 3349

def info_type
  @info_type
end

#record_suppressGoogle::Apis::DlpV2beta1::GooglePrivacyDlpV2beta1RecordSuppression

Configuration to suppress records whose suppression conditions evaluate to true. Corresponds to the JSON property recordSuppress



3355
3356
3357
# File 'generated/google/apis/dlp_v2beta1/classes.rb', line 3355

def record_suppress
  @record_suppress
end

#resultsArray<Google::Apis::DlpV2beta1::GooglePrivacyDlpV2beta1SummaryResult>

Corresponds to the JSON property results



3360
3361
3362
# File 'generated/google/apis/dlp_v2beta1/classes.rb', line 3360

def results
  @results
end

#transformationGoogle::Apis::DlpV2beta1::GooglePrivacyDlpV2beta1PrimitiveTransformation

A rule for transforming a value. Corresponds to the JSON property transformation



3365
3366
3367
# File 'generated/google/apis/dlp_v2beta1/classes.rb', line 3365

def transformation
  @transformation
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3372
3373
3374
3375
3376
3377
3378
3379
# File 'generated/google/apis/dlp_v2beta1/classes.rb', line 3372

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