IHDInsightAsyncClient.GetClusterAsync Method

Definition

Overloads

GetClusterAsync(String)

Queries for a specific HDInsight Cluster registered.

GetClusterAsync(String, String)

Queries for a specific HDInsight Cluster registered.

GetClusterAsync(String)

Queries for a specific HDInsight Cluster registered.

public System.Threading.Tasks.Task<Microsoft.WindowsAzure.Management.HDInsight.ClusterDetails> GetClusterAsync (string name);
abstract member GetClusterAsync : string -> System.Threading.Tasks.Task<Microsoft.WindowsAzure.Management.HDInsight.ClusterDetails>
Public Function GetClusterAsync (name As String) As Task(Of ClusterDetails)

Parameters

name
String

Name of the HDInsight cluster.

Returns

Task that returns an HDInsight Cluster or NULL if not found.

Applies to

GetClusterAsync(String, String)

Queries for a specific HDInsight Cluster registered.

public System.Threading.Tasks.Task<Microsoft.WindowsAzure.Management.HDInsight.ClusterDetails> GetClusterAsync (string name, string location);
abstract member GetClusterAsync : string * string -> System.Threading.Tasks.Task<Microsoft.WindowsAzure.Management.HDInsight.ClusterDetails>
Public Function GetClusterAsync (name As String, location As String) As Task(Of ClusterDetails)

Parameters

name
String

Name of the HDInsight cluster.

location
String

Location of the HDInsight cluster.

Returns

Task that returns an HDInsight Cluster or NULL if not found.

Applies to