Show / Hide Table of Contents

Class Condition

Rule condition

Inheritance
object
Condition
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 Condition

Properties

AttrGroup

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

Attribute Group. Provide a Tag namespace if the rule is based on a tag. Provide resource type if the rule is based on a resource property.

Remarks

Required

AttrKey

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

Attribute Key.Provide Tag key if the rule is based on a tag. Provide resource property name if the rule is based on a resource property.

Remarks

Required

AttrValue

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

Attribute Value.Provide Tag value if the rule is based on a tag. Provide resource property value if the rule is based on a resource property.

Remarks

Required

In this article
Back to top