Class InspectConfig (3.4.0)

public sealed class InspectConfig : IMessage<InspectConfig>, IEquatable<InspectConfig>, IDeepCloneable<InspectConfig>, IBufferMessage, IMessage

Configuration description of the scanning process. When used with redactContent only info_types and min_likelihood are currently used.

Inheritance

Object > InspectConfig

Namespace

Google.Cloud.Dlp.V2

Assembly

Google.Cloud.Dlp.V2.dll

Constructors

InspectConfig()

public InspectConfig()

InspectConfig(InspectConfig)

public InspectConfig(InspectConfig other)
Parameter
NameDescription
otherInspectConfig

Properties

ContentOptions

public RepeatedField<ContentOption> ContentOptions { get; }

List of options defining data content to scan. If empty, text, images, and other content will be included.

Property Value
TypeDescription
RepeatedField<ContentOption>

CustomInfoTypes

public RepeatedField<CustomInfoType> CustomInfoTypes { get; }

CustomInfoTypes provided by the user. See https://cloud.google.com/dlp/docs/creating-custom-infotypes to learn more.

Property Value
TypeDescription
RepeatedField<CustomInfoType>

ExcludeInfoTypes

public bool ExcludeInfoTypes { get; set; }

When true, excludes type information of the findings.

Property Value
TypeDescription
Boolean

IncludeQuote

public bool IncludeQuote { get; set; }

When true, a contextual quote from the data that triggered a finding is included in the response; see Finding.quote.

Property Value
TypeDescription
Boolean

InfoTypes

public RepeatedField<InfoType> InfoTypes { get; }

Restricts what info_types to look for. The values must correspond to InfoType values returned by ListInfoTypes or listed at https://cloud.google.com/dlp/docs/infotypes-reference.

When no InfoTypes or CustomInfoTypes are specified in a request, the system may automatically choose what detectors to run. By default this may be all types, but may change over time as detectors are updated.

If you need precise control and predictability as to what detectors are run you should specify specific InfoTypes listed in the reference, otherwise a default list will be used, which may change over time.

Property Value
TypeDescription
RepeatedField<InfoType>

Limits

public InspectConfig.Types.FindingLimits Limits { get; set; }

Configuration to control the number of findings returned.

Property Value
TypeDescription
InspectConfig.Types.FindingLimits

MinLikelihood

public Likelihood MinLikelihood { get; set; }

Only returns findings equal or above this threshold. The default is POSSIBLE. See https://cloud.google.com/dlp/docs/likelihood to learn more.

Property Value
TypeDescription
Likelihood

RuleSet

public RepeatedField<InspectionRuleSet> RuleSet { get; }

Set of rules to apply to the findings for this InspectConfig. Exclusion rules, contained in the set are executed in the end, other rules are executed in the order they are specified for each info type.

Property Value
TypeDescription
RepeatedField<InspectionRuleSet>