class Google::Apis::DlpV2::GooglePrivacyDlpV2InfoTypeLimit

Max findings configuration per infoType, per content item or long running DlpJob.

Attributes

info_type[RW]

Type of information detected by the API. Corresponds to the JSON property `infoType` @return [Google::Apis::DlpV2::GooglePrivacyDlpV2InfoType]

max_findings[RW]

Max findings limit for the given infoType. Corresponds to the JSON property `maxFindings` @return [Fixnum]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/dlp_v2/classes.rb, line 3012
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 3017
def update!(**args)
  @info_type = args[:info_type] if args.key?(:info_type)
  @max_findings = args[:max_findings] if args.key?(:max_findings)
end