Share via


PrivateLinkServiceConnection Constructors

Definition

Overloads

PrivateLinkServiceConnection()

Initializes a new instance of the PrivateLinkServiceConnection class.

PrivateLinkServiceConnection(String, IList<String>, String, PrivateLinkConnectionState)

Initializes a new instance of the PrivateLinkServiceConnection class.

PrivateLinkServiceConnection()

Initializes a new instance of the PrivateLinkServiceConnection class.

public PrivateLinkServiceConnection ();
Public Sub New ()

Applies to

PrivateLinkServiceConnection(String, IList<String>, String, PrivateLinkConnectionState)

Initializes a new instance of the PrivateLinkServiceConnection class.

public PrivateLinkServiceConnection (string privateLinkServiceId = default, System.Collections.Generic.IList<string> groupIds = default, string requestMessage = default, Microsoft.Azure.Management.StreamAnalytics.Models.PrivateLinkConnectionState privateLinkServiceConnectionState = default);
new Microsoft.Azure.Management.StreamAnalytics.Models.PrivateLinkServiceConnection : string * System.Collections.Generic.IList<string> * string * Microsoft.Azure.Management.StreamAnalytics.Models.PrivateLinkConnectionState -> Microsoft.Azure.Management.StreamAnalytics.Models.PrivateLinkServiceConnection
Public Sub New (Optional privateLinkServiceId As String = Nothing, Optional groupIds As IList(Of String) = Nothing, Optional requestMessage As String = Nothing, Optional privateLinkServiceConnectionState As PrivateLinkConnectionState = Nothing)

Parameters

privateLinkServiceId
String

The resource id of the private link service. Required on PUT (CreateOrUpdate) requests.

groupIds
IList<String>

The ID(s) of the group(s) obtained from the remote resource that this private endpoint should connect to. Required on PUT (CreateOrUpdate) requests.

requestMessage
String

A message passed to the owner of the remote resource with this connection request. Restricted to 140 chars.

privateLinkServiceConnectionState
PrivateLinkConnectionState

A collection of read-only information about the state of the connection to the private remote resource.

Applies to