MatchingCriteria¶
-
class
oci.data_safe.models.
MatchingCriteria
(**kwargs)¶ Bases:
object
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).
Methods
__init__
(**kwargs)Initializes a new MatchingCriteria object with values from keyword arguments. Attributes
exclude
Gets the exclude of this MatchingCriteria. include
[Required] Gets the include of this MatchingCriteria. -
__init__
(**kwargs)¶ Initializes a new MatchingCriteria object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class):
Parameters: - include (oci.data_safe.models.Include) – The value to assign to the include property of this MatchingCriteria.
- exclude (oci.data_safe.models.Exclude) – The value to assign to the exclude property of this MatchingCriteria.
-
exclude
¶ Gets the exclude of this MatchingCriteria.
Returns: The exclude of this MatchingCriteria. Return type: oci.data_safe.models.Exclude
-
include
¶ [Required] Gets the include of this MatchingCriteria.
Returns: The include of this MatchingCriteria. Return type: oci.data_safe.models.Include
-