Show / Hide Table of Contents

Class MatchingCriteria

Criteria to either include or exclude target databases from the target database group. These criteria can be based on compartments or tags or a list of target databases. See examples below for more details. Include: Target databases will be added to the target database group if they match at least one of the include criteria. Exclude: Target databases that will be excluded from the target database group (even if they match any of the include criteria).

Inheritance
object
MatchingCriteria
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DatasafeService.Models
Assembly: OCI.DotNetSDK.Datasafe.dll
Syntax
public class MatchingCriteria

Properties

Exclude

Declaration
[JsonProperty(PropertyName = "exclude")]
public Exclude Exclude { get; set; }
Property Value
Type Description
Exclude

Include

Declaration
[Required(ErrorMessage = "Include is required.")]
[JsonProperty(PropertyName = "include")]
public Include Include { get; set; }
Property Value
Type Description
Include
Remarks

Required

In this article
Back to top