Show / Hide Table of Contents

Class IngressGatewayHost

Host for the ingress listener.

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

Properties

Hostnames

Declaration
[JsonProperty(PropertyName = "hostnames")]
public List<string> Hostnames { get; set; }
Property Value
Type Description
List<string>

Hostnames of the host. Applicable only for HTTP and TLS_PASSTHROUGH listeners. Wildcard hostnames are supported in the prefix form. Examples of valid hostnames are "www.example.com", ".example.com", ".com".

Listeners

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

The listeners for the ingress gateway.

Remarks

Required

Name

Declaration
[Required(ErrorMessage = "Name is required.")]
[JsonProperty(PropertyName = "name")]
public string Name { get; set; }
Property Value
Type Description
string

A user-friendly name for the host. The name must be unique within the same ingress gateway. This name can be used in the ingress gateway route table resource to attach a route to this host.
Example: MyExampleHost

Remarks

Required

In this article
Back to top