Share via


PrivateLinkConfiguration Constructors

Definition

Overloads

PrivateLinkConfiguration()

Initializes a new instance of the PrivateLinkConfiguration class.

PrivateLinkConfiguration(String, String, IList<IPConfiguration>, String, String, String)

Initializes a new instance of the PrivateLinkConfiguration class.

PrivateLinkConfiguration()

Initializes a new instance of the PrivateLinkConfiguration class.

public PrivateLinkConfiguration ();
Public Sub New ()

Applies to

PrivateLinkConfiguration(String, String, IList<IPConfiguration>, String, String, String)

Initializes a new instance of the PrivateLinkConfiguration class.

public PrivateLinkConfiguration (string name, string groupId, System.Collections.Generic.IList<Microsoft.Azure.Management.HDInsight.Models.IPConfiguration> ipConfigurations, string id = default, string type = default, string provisioningState = default);
new Microsoft.Azure.Management.HDInsight.Models.PrivateLinkConfiguration : string * string * System.Collections.Generic.IList<Microsoft.Azure.Management.HDInsight.Models.IPConfiguration> * string * string * string -> Microsoft.Azure.Management.HDInsight.Models.PrivateLinkConfiguration
Public Sub New (name As String, groupId As String, ipConfigurations As IList(Of IPConfiguration), Optional id As String = Nothing, Optional type As String = Nothing, Optional provisioningState As String = Nothing)

Parameters

name
String

The name of private link configuration.

groupId
String

The HDInsight private linkable sub-resource name to apply the private link configuration to. For example, 'headnode', 'gateway', 'edgenode'.

ipConfigurations
IList<IPConfiguration>

The IP configurations for the private link service.

id
String

The private link configuration id.

type
String

The type of the private link configuration.

provisioningState
String

The private link configuration provisioning state, which only appears in the response. Possible values include: 'InProgress', 'Failed', 'Succeeded', 'Canceled', 'Deleting'

Applies to