ConnectableResource Constructors

Definition

Overloads

ConnectableResource()

Initializes a new instance of the ConnectableResource class.

ConnectableResource(String, IList<ConnectedResource>, IList<ConnectedResource>)

Initializes a new instance of the ConnectableResource class.

ConnectableResource()

Initializes a new instance of the ConnectableResource class.

public ConnectableResource ();
Public Sub New ()

Applies to

ConnectableResource(String, IList<ConnectedResource>, IList<ConnectedResource>)

Initializes a new instance of the ConnectableResource class.

public ConnectableResource (string id = default, System.Collections.Generic.IList<Microsoft.Azure.Management.Security.Models.ConnectedResource> inboundConnectedResources = default, System.Collections.Generic.IList<Microsoft.Azure.Management.Security.Models.ConnectedResource> outboundConnectedResources = default);
new Microsoft.Azure.Management.Security.Models.ConnectableResource : string * System.Collections.Generic.IList<Microsoft.Azure.Management.Security.Models.ConnectedResource> * System.Collections.Generic.IList<Microsoft.Azure.Management.Security.Models.ConnectedResource> -> Microsoft.Azure.Management.Security.Models.ConnectableResource
Public Sub New (Optional id As String = Nothing, Optional inboundConnectedResources As IList(Of ConnectedResource) = Nothing, Optional outboundConnectedResources As IList(Of ConnectedResource) = Nothing)

Parameters

id
String

The Azure resource id

inboundConnectedResources
IList<ConnectedResource>

The list of Azure resources that the resource has inbound allowed connection from

outboundConnectedResources
IList<ConnectedResource>

The list of Azure resources that the resource has outbound allowed connection to

Applies to