Share via


AddressResponse Constructors

Definition

Overloads

AddressResponse()

Initializes a new instance of the AddressResponse class.

AddressResponse(String, String, String, String, String, String, IList<String>, IList<VirtualIPMapping>)

Initializes a new instance of the AddressResponse class.

AddressResponse()

Initializes a new instance of the AddressResponse class.

public AddressResponse ();
Public Sub New ()

Applies to

AddressResponse(String, String, String, String, String, String, IList<String>, IList<VirtualIPMapping>)

Initializes a new instance of the AddressResponse class.

public AddressResponse (string id = default, string name = default, string kind = default, string type = default, string serviceIpAddress = default, string internalIpAddress = default, System.Collections.Generic.IList<string> outboundIpAddresses = default, System.Collections.Generic.IList<Microsoft.Azure.Management.WebSites.Models.VirtualIPMapping> vipMappings = default);
new Microsoft.Azure.Management.WebSites.Models.AddressResponse : string * string * string * string * string * string * System.Collections.Generic.IList<string> * System.Collections.Generic.IList<Microsoft.Azure.Management.WebSites.Models.VirtualIPMapping> -> Microsoft.Azure.Management.WebSites.Models.AddressResponse
Public Sub New (Optional id As String = Nothing, Optional name As String = Nothing, Optional kind As String = Nothing, Optional type As String = Nothing, Optional serviceIpAddress As String = Nothing, Optional internalIpAddress As String = Nothing, Optional outboundIpAddresses As IList(Of String) = Nothing, Optional vipMappings As IList(Of VirtualIPMapping) = Nothing)

Parameters

id
String

Resource Id.

name
String

Resource Name.

kind
String

Kind of resource.

type
String

Resource type.

serviceIpAddress
String

Main public virtual IP.

internalIpAddress
String

Virtual Network internal IP address of the App Service Environment if it is in internal load-balancing mode.

outboundIpAddresses
IList<String>

IP addresses appearing on outbound connections.

vipMappings
IList<VirtualIPMapping>

Additional virtual IPs.

Applies to