Show / Hide Table of Contents

Class CreateRuleSetDetails

A named set of rules to add to the load balancer.

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

Properties

Items

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

An array of rules that compose the rule set.

Remarks

Required

Name

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

The name for this set of rules. It must be unique and it cannot be changed. Avoid entering confidential information.
Example: example_rule_set

Remarks

Required

In this article
Back to top