Show / Hide Table of Contents

Class IngressGatewayTrafficRouteRuleDetails

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

Inheritance
object
IngressGatewayTrafficRouteRuleDetails
HttpIngressGatewayTrafficRouteRuleDetails
TcpIngressGatewayTrafficRouteRuleDetails
TlsPassthroughIngressGatewayTrafficRouteRuleDetails
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(IngressGatewayTrafficRouteRuleDetailsModelConverter))]
public class IngressGatewayTrafficRouteRuleDetails

Properties

Destinations

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

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