EndpointOriginArgs

data class EndpointOriginArgs(val hostName: Output<String>, val httpPort: Output<Int>? = null, val httpsPort: Output<Int>? = null, val name: Output<String>) : ConvertibleToJava<EndpointOriginArgs>

Constructors

Link copied to clipboard
constructor(hostName: Output<String>, httpPort: Output<Int>? = null, httpsPort: Output<Int>? = null, name: Output<String>)

Properties

Link copied to clipboard
val hostName: Output<String>

A string that determines the hostname/IP address of the origin server. This string can be a domain name, Storage Account endpoint, Web App endpoint, IPv4 address or IPv6 address. Changing this forces a new resource to be created.

Link copied to clipboard
val httpPort: Output<Int>? = null

The HTTP port of the origin. Defaults to 80. Changing this forces a new resource to be created.

Link copied to clipboard
val httpsPort: Output<Int>? = null

The HTTPS port of the origin. Defaults to 443. Changing this forces a new resource to be created.

Link copied to clipboard
val name: Output<String>

The name of the origin. This is an arbitrary value. However, this value needs to be unique under the endpoint. Changing this forces a new resource to be created.

Functions

Link copied to clipboard
open override fun toJava(): EndpointOriginArgs