AddressResponseInner Constructors

Definition

Overloads

AddressResponseInner()

Initializes a new instance of the AddressResponseInner class.

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

Initializes a new instance of the AddressResponseInner class.

AddressResponseInner()

Initializes a new instance of the AddressResponseInner class.

public AddressResponseInner ();
Public Sub New ()

Applies to

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

Initializes a new instance of the AddressResponseInner class.

public AddressResponseInner (string id = default, string name = default, string type = default, string kind = default, string serviceIpAddress = default, string internalIpAddress = default, System.Collections.Generic.IList<string> outboundIpAddresses = default, System.Collections.Generic.IList<Microsoft.Azure.Management.AppService.Fluent.Models.VirtualIPMapping> vipMappings = default);
new Microsoft.Azure.Management.AppService.Fluent.Models.AddressResponseInner : string * string * string * string * string * string * System.Collections.Generic.IList<string> * System.Collections.Generic.IList<Microsoft.Azure.Management.AppService.Fluent.Models.VirtualIPMapping> -> Microsoft.Azure.Management.AppService.Fluent.Models.AddressResponseInner
Public Sub New (Optional id As String = Nothing, Optional name As String = Nothing, Optional type As String = Nothing, Optional kind 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
name
String
type
String
kind
String

Kind of resource.

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