Class: Google::Apis::DlpV2::GooglePrivacyDlpV2TransformationSummary

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/dlp_v2/classes.rb,
generated/google/apis/dlp_v2/representations.rb,
generated/google/apis/dlp_v2/representations.rb

Overview

Summary of a single transformation. Only one of 'transformation', 'field_transformation', or 'record_suppress' will be set.

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) ⇒ GooglePrivacyDlpV2TransformationSummary

Returns a new instance of GooglePrivacyDlpV2TransformationSummary.



6256
6257
6258
# File 'generated/google/apis/dlp_v2/classes.rb', line 6256

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

Instance Attribute Details

#fieldGoogle::Apis::DlpV2::GooglePrivacyDlpV2FieldId

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



6221
6222
6223
# File 'generated/google/apis/dlp_v2/classes.rb', line 6221

def field
  @field
end

#field_transformationsArray<Google::Apis::DlpV2::GooglePrivacyDlpV2FieldTransformation>

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



6228
6229
6230
# File 'generated/google/apis/dlp_v2/classes.rb', line 6228

def field_transformations
  @field_transformations
end

#info_typeGoogle::Apis::DlpV2::GooglePrivacyDlpV2InfoType

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



6233
6234
6235
# File 'generated/google/apis/dlp_v2/classes.rb', line 6233

def info_type
  @info_type
end

#record_suppressGoogle::Apis::DlpV2::GooglePrivacyDlpV2RecordSuppression

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



6239
6240
6241
# File 'generated/google/apis/dlp_v2/classes.rb', line 6239

def record_suppress
  @record_suppress
end

#resultsArray<Google::Apis::DlpV2::GooglePrivacyDlpV2SummaryResult>

Collection of all transformations that took place or had an error. Corresponds to the JSON property results



6244
6245
6246
# File 'generated/google/apis/dlp_v2/classes.rb', line 6244

def results
  @results
end

#transformationGoogle::Apis::DlpV2::GooglePrivacyDlpV2PrimitiveTransformation

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



6249
6250
6251
# File 'generated/google/apis/dlp_v2/classes.rb', line 6249

def transformation
  @transformation
end

#transformed_bytesFixnum

Total size in bytes that were transformed in some way. Corresponds to the JSON property transformedBytes

Returns:

  • (Fixnum)


6254
6255
6256
# File 'generated/google/apis/dlp_v2/classes.rb', line 6254

def transformed_bytes
  @transformed_bytes
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



6261
6262
6263
6264
6265
6266
6267
6268
6269
# File 'generated/google/apis/dlp_v2/classes.rb', line 6261

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