class Google::Apis::DlpV2::GooglePrivacyDlpV2InspectResult

All the findings for a single scanned item.

Attributes

findings[RW]

List of findings for an item. Corresponds to the JSON property `findings` @return [Array<Google::Apis::DlpV2::GooglePrivacyDlpV2Finding>]

findings_truncated[RW]

If true, then this item might have more findings than were returned, and the findings returned are an arbitrary subset of all findings. The findings list might be truncated because the input items were too large, or because the server reached the maximum amount of resources allowed for a single API call. For best results, divide the input into smaller batches. Corresponds to the JSON property `findingsTruncated` @return [Boolean]

findings_truncated?[RW]

If true, then this item might have more findings than were returned, and the findings returned are an arbitrary subset of all findings. The findings list might be truncated because the input items were too large, or because the server reached the maximum amount of resources allowed for a single API call. For best results, divide the input into smaller batches. Corresponds to the JSON property `findingsTruncated` @return [Boolean]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/dlp_v2/classes.rb, line 3319
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/dlp_v2/classes.rb, line 3324
def update!(**args)
  @findings = args[:findings] if args.key?(:findings)
  @findings_truncated = args[:findings_truncated] if args.key?(:findings_truncated)
end