Show / Hide Table of Contents

Class IngressGatewayTrafficRouteRule

Rule for routing incoming ingress gateway traffic to a virtual service.

Inheritance
object
IngressGatewayTrafficRouteRule
HttpIngressGatewayTrafficRouteRule
TcpIngressGatewayTrafficRouteRule
TlsPassthroughIngressGatewayTrafficRouteRule
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.ServicemeshService.Models
Assembly: OCI.DotNetSDK.Servicemesh.dll
Syntax
[JsonConverter(typeof(IngressGatewayTrafficRouteRuleModelConverter))]
public class IngressGatewayTrafficRouteRule

Properties

Destinations

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

The destination of the request.

Remarks

Required

IngressGatewayHost

Declaration
[JsonProperty(PropertyName = "ingressGatewayHost")]
public IngressGatewayHostRef IngressGatewayHost { get; set; }
Property Value
Type Description
IngressGatewayHostRef
In this article
Back to top