public sealed class HotwordRule : IMessage<CustomInfoType.Types.DetectionRule.Types.HotwordRule>, IEquatable<CustomInfoType.Types.DetectionRule.Types.HotwordRule>, IDeepCloneable<CustomInfoType.Types.DetectionRule.Types.HotwordRule>, IBufferMessage, IMessage
The rule that adjusts the likelihood of findings within a certain proximity of hotwords.
Implements
IMessage<CustomInfoType.Types.DetectionRule.Types.HotwordRule>, IEquatable<CustomInfoType.Types.DetectionRule.Types.HotwordRule>, IDeepCloneable<CustomInfoType.Types.DetectionRule.Types.HotwordRule>, IBufferMessage, IMessageNamespace
Google.Cloud.Dlp.V2Assembly
Google.Cloud.Dlp.V2.dll
Constructors
HotwordRule()
public HotwordRule()
HotwordRule(CustomInfoType.Types.DetectionRule.Types.HotwordRule)
public HotwordRule(CustomInfoType.Types.DetectionRule.Types.HotwordRule other)
Parameter | |
---|---|
Name | Description |
other | CustomInfoType.Types.DetectionRule.Types.HotwordRule |
Properties
HotwordRegex
public CustomInfoType.Types.Regex HotwordRegex { get; set; }
Regular expression pattern defining what qualifies as a hotword.
Property Value | |
---|---|
Type | Description |
CustomInfoType.Types.Regex |
LikelihoodAdjustment
public CustomInfoType.Types.DetectionRule.Types.LikelihoodAdjustment LikelihoodAdjustment { get; set; }
Likelihood adjustment to apply to all matching findings.
Property Value | |
---|---|
Type | Description |
CustomInfoType.Types.DetectionRule.Types.LikelihoodAdjustment |
Proximity
public CustomInfoType.Types.DetectionRule.Types.Proximity Proximity { get; set; }
Proximity of the finding within which the entire hotword must reside. The total length of the window cannot exceed 1000 characters. Note that the finding itself will be included in the window, so that hotwords may be used to match substrings of the finding itself. For example, the certainty of a phone number regex "(\d{3}) \d{3}-\d{4}" could be adjusted upwards if the area code is known to be the local area code of a company office using the hotword regex "(xxx)", where "xxx" is the area code in question.
Property Value | |
---|---|
Type | Description |
CustomInfoType.Types.DetectionRule.Types.Proximity |