Class: Google::Apis::DlpV2::GooglePrivacyDlpV2RedactImageResponse

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

Results of redacting an image.

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

Returns a new instance of GooglePrivacyDlpV2RedactImageResponse



4182
4183
4184
# File 'generated/google/apis/dlp_v2/classes.rb', line 4182

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

Instance Attribute Details

#extracted_textString

If an image was being inspected and the InspectConfig's include_quote was set to true, then this field will include all text, if any, that was found in the image. Corresponds to the JSON property extractedText

Returns:

  • (String)


4169
4170
4171
# File 'generated/google/apis/dlp_v2/classes.rb', line 4169

def extracted_text
  @extracted_text
end

#inspect_resultGoogle::Apis::DlpV2::GooglePrivacyDlpV2InspectResult

All the findings for a single scanned item. Corresponds to the JSON property inspectResult



4174
4175
4176
# File 'generated/google/apis/dlp_v2/classes.rb', line 4174

def inspect_result
  @inspect_result
end

#redacted_imageString

The redacted image. The type will be the same as the original image. Corresponds to the JSON property redactedImage NOTE: Values are automatically base64 encoded/decoded in the client library.

Returns:

  • (String)


4180
4181
4182
# File 'generated/google/apis/dlp_v2/classes.rb', line 4180

def redacted_image
  @redacted_image
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4187
4188
4189
4190
4191
# File 'generated/google/apis/dlp_v2/classes.rb', line 4187

def update!(**args)
  @extracted_text = args[:extracted_text] if args.key?(:extracted_text)
  @inspect_result = args[:inspect_result] if args.key?(:inspect_result)
  @redacted_image = args[:redacted_image] if args.key?(:redacted_image)
end