Show / Hide Table of Contents

Class DynamicRoutingTypeRoutingBackend

Policy for the details regarding each routing backend under dynamic routing. We specify the value of selectors for which this routing backend must be selected for a request under keys. We specify the configuration details of routing backend under backend.

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

Properties

Backend

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

Required

Key

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

Required

In this article
Back to top