Class: Google::Apis::DlpV2::GooglePrivacyDlpV2SummaryResult

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

Overview

A collection that informs the user the number of times a particular TransformationResultCode and error details occurred.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GooglePrivacyDlpV2SummaryResult

Returns a new instance of GooglePrivacyDlpV2SummaryResult.



8950
8951
8952
# File 'lib/google/apis/dlp_v2/classes.rb', line 8950

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

Instance Attribute Details

#codeString

Outcome of the transformation. Corresponds to the JSON property code

Returns:

  • (String)


8937
8938
8939
# File 'lib/google/apis/dlp_v2/classes.rb', line 8937

def code
  @code
end

#countFixnum

Number of transformations counted by this result. Corresponds to the JSON property count

Returns:

  • (Fixnum)


8942
8943
8944
# File 'lib/google/apis/dlp_v2/classes.rb', line 8942

def count
  @count
end

#detailsString

A place for warnings or errors to show up if a transformation didn't work as expected. Corresponds to the JSON property details

Returns:

  • (String)


8948
8949
8950
# File 'lib/google/apis/dlp_v2/classes.rb', line 8948

def details
  @details
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



8955
8956
8957
8958
8959
# File 'lib/google/apis/dlp_v2/classes.rb', line 8955

def update!(**args)
  @code = args[:code] if args.key?(:code)
  @count = args[:count] if args.key?(:count)
  @details = args[:details] if args.key?(:details)
end