Show / Hide Table of Contents

Class UpdateRoutingPolicyDetails

An updated list of routing rules that overwrites the existing list of routing rules.

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

Properties

ConditionLanguageVersion

Declaration
[JsonProperty(PropertyName = "conditionLanguageVersion")]
[JsonConverter(typeof(StringEnumConverter))]
public UpdateRoutingPolicyDetails.ConditionLanguageVersionEnum? ConditionLanguageVersion { get; set; }
Property Value
Type Description
UpdateRoutingPolicyDetails.ConditionLanguageVersionEnum?

The version of the language in which condition of rules are composed.

Rules

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

The list of routing rules.

Remarks

Required

In this article
Back to top