Show / Hide Table of Contents

Class CompositeCondition

Composite condition resource with nested condition.

Inheritance
object
Condition
CompositeCondition
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.CloudguardService.Models
Assembly: OCI.DotNetSDK.Cloudguard.dll
Syntax
public class CompositeCondition : Condition

Properties

CompositeOperator

Declaration
[JsonProperty(PropertyName = "compositeOperator")]
[JsonConverter(typeof(ResponseEnumConverter))]
public CompositeCondition.CompositeOperatorEnum? CompositeOperator { get; set; }
Property Value
Type Description
CompositeCondition.CompositeOperatorEnum?

Composite condition operator

LeftOperand

Declaration
[JsonProperty(PropertyName = "leftOperand")]
public Condition LeftOperand { get; set; }
Property Value
Type Description
Condition

RightOperand

Declaration
[JsonProperty(PropertyName = "rightOperand")]
public Condition RightOperand { get; set; }
Property Value
Type Description
Condition
In this article
Back to top