EndpointDependency Constructors

Definition

Overloads

EndpointDependency()

Initializes a new instance of the EndpointDependency class.

EndpointDependency(String, String, IList<EndpointDetail>)

Initializes a new instance of the EndpointDependency class.

EndpointDependency()

Initializes a new instance of the EndpointDependency class.

public EndpointDependency ();
Public Sub New ()

Applies to

EndpointDependency(String, String, IList<EndpointDetail>)

Initializes a new instance of the EndpointDependency class.

public EndpointDependency (string domainName = default, string description = default, System.Collections.Generic.IList<Microsoft.Azure.Management.Batch.Models.EndpointDetail> endpointDetails = default);
new Microsoft.Azure.Management.Batch.Models.EndpointDependency : string * string * System.Collections.Generic.IList<Microsoft.Azure.Management.Batch.Models.EndpointDetail> -> Microsoft.Azure.Management.Batch.Models.EndpointDependency
Public Sub New (Optional domainName As String = Nothing, Optional description As String = Nothing, Optional endpointDetails As IList(Of EndpointDetail) = Nothing)

Parameters

domainName
String

The domain name of the dependency. Domain names may be fully qualified or may contain a * wildcard.

description
String

Human-readable supplemental information about the dependency and when it is applicable.

endpointDetails
IList<EndpointDetail>

The list of connection details for this endpoint.

Applies to