IHDInsightAsyncClient Interface

 

Note

This version of the HDInsight .NET SDK is deprecated and will be removed by January 1, 2017. You are encouraged to use the newer ARM-based version of HDInsight .NET SDK going forward. For instructions on how to use the new HDInsight .NET SDK to create a cluster, see Create HDInsight Linux clusters using .NET SDK. For instructions on how to submit jobs using the new .NET SDK and other approaches, see Submit jobs to an HDInsight cluster. The HDInsight SDK reference for the newer version is available at HDInsight .NET SDK Reference.

Client Library that allows interacting with the Azure HDInsight Deployment Service.

Namespace:   Microsoft.WindowsAzure.Management.HDInsight
Assembly:  Microsoft.WindowsAzure.Management.HDInsight (in Microsoft.WindowsAzure.Management.HDInsight.dll)

Syntax

public interface IHDInsightAsyncClient : IHDInsightClientBase, 
    IJobSubmissionClientBase, IHadoopClientBase, IDisposable, ILogProvider
public interface class IHDInsightAsyncClient : IHDInsightClientBase, 
    IJobSubmissionClientBase, IHadoopClientBase, IDisposable, ILogProvider
type IHDInsightAsyncClient = 
    interface
        interface IHDInsightClientBase
        interface IJobSubmissionClientBase
        interface IHadoopClientBase
        interface IDisposable
        interface ILogProvider
    end
Public Interface IHDInsightAsyncClient
    Inherits IHDInsightClientBase, IJobSubmissionClientBase, IHadoopClientBase,
    IDisposable, ILogProvider

Properties

Name Description
System_CAPS_pubproperty CancellationToken

Gets the Cancellation Token for this client.(Inherited from IHDInsightClientBase.)

System_CAPS_pubproperty Credentials

Gets the cluster credentials.(Inherited from IHDInsightClientBase.)

System_CAPS_pubproperty IgnoreSslErrors

Gets or sets a value indicating whether or not servicer side SSL errors should be ignored.(Inherited from IHadoopClientBase.)

System_CAPS_pubproperty Logger

(Inherited from ILogProvider.)

System_CAPS_pubproperty PollingInterval

Gets or sets the polling interval for the CreateCluster\DeleteCluster and user change operations.(Inherited from IHDInsightClientBase.)

Methods

Name Description
System_CAPS_pubmethod AddLogWriter(ILogWriter)

Adds a log writer to the client.(Inherited from IHadoopClientBase.)

System_CAPS_pubmethod Cancel()

Cancel's a pending operation.(Inherited from IHadoopClientBase.)

System_CAPS_pubmethod ChangeClusterSizeAsync(String, String, Int32)

Submits a request to change the data node size of a cluster.

System_CAPS_pubmethod CreateClusterAsync(ClusterCreateParameters)

Obsolete.Submits a request asychronously to create an HDInsight cluster and waits for it to complete.

System_CAPS_pubmethod CreateClusterAsync(ClusterCreateParametersV2)

Submits a request to create an HDInsight cluster and waits for it to complete.

System_CAPS_pubmethod DeleteClusterAsync(String)

Submits a request to delete an HDInsight cluster asychronously.

System_CAPS_pubmethod DeleteClusterAsync(String, String)

Submits a request to delete an HDInsight cluster.

System_CAPS_pubmethod DisableHttpAsync(String, String)

Disables Http Connectivity on the HDInsight cluster.

System_CAPS_pubmethod DisableRdpAsync(String, String)

Disables the Rdp access on the HDInsight cluster

System_CAPS_pubmethod Dispose()

(Inherited from IDisposable.)

System_CAPS_pubmethod EnableHttpAsync(String, String, String, String)

Enables Http Connectivity on the HDInsight cluster.

System_CAPS_pubmethod EnableRdpAsync(String, String, String, String, DateTime)

Enables Rdp access on the HDInsight cluster.

System_CAPS_pubmethod GetClusterAsync(String)

Queries for a specific HDInsight Cluster registered.

System_CAPS_pubmethod GetClusterAsync(String, String)

Queries for a specific HDInsight Cluster registered.

System_CAPS_pubmethod ListAvailableLocationsAsync()

Queries the locations where HDInsight deployments for the specified OS type have been enabled for the subscription.

System_CAPS_pubmethod ListAvailableLocationsAsync(OSType)

Queries the locations where HDInsight deployments for the specified OS type have been enabled for the subscription.

System_CAPS_pubmethod ListAvailableVersionsAsync()

Queries the versions of HDInsight that have been enabled for the subscription.

System_CAPS_pubmethod ListClustersAsync()

Queries the HDInsight Clusters registered.

System_CAPS_pubmethod ListResourceProviderPropertiesAsync()

Queries the properties of a given subscription for the HDInsight resource type.

System_CAPS_pubmethod RaiseClusterProvisioningEvent(Object, ClusterProvisioningStatusEventArgs)

Raises the cluster provisioning event.

System_CAPS_pubmethod RemoveLogWriter(ILogWriter)

Removes a log writer.(Inherited from IHadoopClientBase.)

System_CAPS_pubmethod SetCancellationSource(CancellationTokenSource)

Allows a user to set a custom cancellation source.(Inherited from IHadoopClientBase.)

Events

Name Description
System_CAPS_pubevent ClusterProvisioning

Event that occurs when the client provisions a cluster.

See Also

Microsoft.WindowsAzure.Management.HDInsight Namespace

Return to top