Show / Hide Table of Contents

Class IngressGatewayListener

Listener configuration.

Inheritance
object
IngressGatewayListener
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
public class IngressGatewayListener

Properties

Port

Declaration
[Required(ErrorMessage = "Port is required.")]
[JsonProperty(PropertyName = "port")]
public int? Port { get; set; }
Property Value
Type Description
int?

Port on which ingress gateway is listening.

Remarks

Required

Protocol

Declaration
[Required(ErrorMessage = "Protocol is required.")]
[JsonProperty(PropertyName = "protocol")]
[JsonConverter(typeof(ResponseEnumConverter))]
public IngressGatewayListener.ProtocolEnum? Protocol { get; set; }
Property Value
Type Description
IngressGatewayListener.ProtocolEnum?

Type of protocol used.

Remarks

Required

Tls

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