Show / Hide Table of Contents

Class EndpointOriginArgs

Inheritance
System.Object
InputArgs
ResourceArgs
EndpointOriginArgs
Inherited Members
ResourceArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Azure.Cdn.Inputs
Assembly: Pulumi.Azure.dll
Syntax
public sealed class EndpointOriginArgs : ResourceArgs

Constructors

View Source

EndpointOriginArgs()

Declaration
public EndpointOriginArgs()

Properties

View Source

HostName

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.

Declaration
public Input<string> HostName { get; set; }
Property Value
Type Description
Input<System.String>
View Source

HttpPort

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

Declaration
public Input<int> HttpPort { get; set; }
Property Value
Type Description
Input<System.Int32>
View Source

HttpsPort

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

Declaration
public Input<int> HttpsPort { get; set; }
Property Value
Type Description
Input<System.Int32>
View Source

Name

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.

Declaration
public Input<string> Name { get; set; }
Property Value
Type Description
Input<System.String>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.