Show / Hide Table of Contents

Class DynamicRoutingBackend

Send the request to the backend dynamically selected based on the incoming request's context.

Inheritance
object
ApiSpecificationRouteBackend
DynamicRoutingBackend
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.ApigatewayService.Models
Assembly: OCI.DotNetSDK.Apigateway.dll
Syntax
public class DynamicRoutingBackend : ApiSpecificationRouteBackend

Properties

RoutingBackends

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

List of backends to chose from for Dynamic Routing.

Remarks

Required

SelectionSource

Declaration
[Required(ErrorMessage = "SelectionSource is required.")]
[JsonProperty(PropertyName = "selectionSource")]
public SelectionSourcePolicy SelectionSource { get; set; }
Property Value
Type Description
SelectionSourcePolicy
Remarks

Required

In this article
Back to top