Show / Hide Table of Contents

Class PathRouteSet

A named set of path route rules. For more information, see Managing Request Routing.
Warning: Oracle recommends that you avoid using any confidential information when you supply string values using the API.

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

Properties

Name

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

The unique name for this set of path route rules. 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