public sealed class CustomInfoType.Types.DetectionRule.Types.LikelihoodAdjustment : IMessage<CustomInfoType.Types.DetectionRule.Types.LikelihoodAdjustment>, IEquatable<CustomInfoType.Types.DetectionRule.Types.LikelihoodAdjustment>, IDeepCloneable<CustomInfoType.Types.DetectionRule.Types.LikelihoodAdjustment>, IBufferMessage, IMessage
Reference documentation and code samples for the Google Cloud Data Loss Prevention v2 API class CustomInfoType.Types.DetectionRule.Types.LikelihoodAdjustment.
Message for specifying an adjustment to the likelihood of a finding as part of a detection rule.
Implements
IMessageCustomInfoTypeTypesDetectionRuleTypesLikelihoodAdjustment, IEquatableCustomInfoTypeTypesDetectionRuleTypesLikelihoodAdjustment, IDeepCloneableCustomInfoTypeTypesDetectionRuleTypesLikelihoodAdjustment, IBufferMessage, IMessageNamespace
Google.Cloud.Dlp.V2Assembly
Google.Cloud.Dlp.V2.dll
Constructors
LikelihoodAdjustment()
public LikelihoodAdjustment()
LikelihoodAdjustment(LikelihoodAdjustment)
public LikelihoodAdjustment(CustomInfoType.Types.DetectionRule.Types.LikelihoodAdjustment other)
Parameter | |
---|---|
Name | Description |
other | CustomInfoTypeTypesDetectionRuleTypesLikelihoodAdjustment |
Properties
AdjustmentCase
public CustomInfoType.Types.DetectionRule.Types.LikelihoodAdjustment.AdjustmentOneofCase AdjustmentCase { get; }
Property Value | |
---|---|
Type | Description |
CustomInfoTypeTypesDetectionRuleTypesLikelihoodAdjustmentAdjustmentOneofCase |
FixedLikelihood
public Likelihood FixedLikelihood { get; set; }
Set the likelihood of a finding to a fixed value.
Property Value | |
---|---|
Type | Description |
Likelihood |
HasFixedLikelihood
public bool HasFixedLikelihood { get; }
Gets whether the "fixed_likelihood" field is set
Property Value | |
---|---|
Type | Description |
bool |
HasRelativeLikelihood
public bool HasRelativeLikelihood { get; }
Gets whether the "relative_likelihood" field is set
Property Value | |
---|---|
Type | Description |
bool |
RelativeLikelihood
public int RelativeLikelihood { get; set; }
Increase or decrease the likelihood by the specified number of
levels. For example, if a finding would be POSSIBLE
without the
detection rule and relative_likelihood
is 1, then it is upgraded to
LIKELY
, while a value of -1 would downgrade it to UNLIKELY
.
Likelihood may never drop below VERY_UNLIKELY
or exceed
VERY_LIKELY
, so applying an adjustment of 1 followed by an
adjustment of -1 when base likelihood is VERY_LIKELY
will result in
a final likelihood of LIKELY
.
Property Value | |
---|---|
Type | Description |
int |