Show / Hide Table of Contents

Class CreatePathRouteSetDetails

A named set of path route rules to add to the load balancer.
Warning: Oracle recommends that you avoid using any confidential information when you supply string values using the API.

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

Properties

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 path route rules. It must be unique and it cannot be changed. Avoid entering confidential information.
Example: example_path_route_set

Remarks

Required

PathRoutes

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

The set of path route rules.

Remarks

Required

In this article
Back to top