Show / Hide Table of Contents

Class SelectionCriteria

Rule Selection Criteria for DYNAMIC resource selection for a GENERIC fleet. Rules define what resources are members of this fleet. All resources that meet the criteria are added automatically.

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

Properties

MatchCondition

Declaration
[Required(ErrorMessage = "MatchCondition is required.")]
[JsonProperty(PropertyName = "matchCondition")]
[JsonConverter(typeof(ResponseEnumConverter))]
public SelectionCriteria.MatchConditionEnum? MatchCondition { get; set; }
Property Value
Type Description
SelectionCriteria.MatchConditionEnum?

Match condition for the rule selection. Include resources that match all rules or any of the rules.

Remarks

Required

Rules

Declaration
[Required(ErrorMessage = "Rules is required.")]
[JsonProperty(PropertyName = "rules")]
public List<Rule> Rules { get; set; }
Property Value
Type Description
List<Rule>

Rules.

Remarks

Required

In this article
Back to top