IHDInsightSyncClient 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 IHDInsightSyncClient : IHDInsightClientBase, 
    IJobSubmissionClientBase, IHadoopClientBase, IDisposable, ILogProvider
public interface class IHDInsightSyncClient : IHDInsightClientBase, 
    IJobSubmissionClientBase, IHadoopClientBase, IDisposable, ILogProvider
type IHDInsightSyncClient = 
    interface
        interface IHDInsightClientBase
        interface IJobSubmissionClientBase
        interface IHadoopClientBase
        interface IDisposable
        interface ILogProvider
    end
Public Interface IHDInsightSyncClient
    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 ChangeClusterSize(String, String, Int32)

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

System_CAPS_pubmethod CreateCluster(ClusterCreateParameters)

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

System_CAPS_pubmethod CreateCluster(ClusterCreateParameters, TimeSpan)

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

System_CAPS_pubmethod CreateCluster(ClusterCreateParametersV2)

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

System_CAPS_pubmethod CreateCluster(ClusterCreateParametersV2, TimeSpan)

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

System_CAPS_pubmethod DeleteCluster(String)

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

System_CAPS_pubmethod DeleteCluster(String, String)

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

System_CAPS_pubmethod DeleteCluster(String, String, TimeSpan)

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

System_CAPS_pubmethod DeleteCluster(String, TimeSpan)

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

System_CAPS_pubmethod DisableHttp(String, String)

Disables Http Connectivity on the HDInsight cluster.

System_CAPS_pubmethod DisableRdp(String, String)

Disables the Rdp access on the HDInsight cluster

System_CAPS_pubmethod Dispose()

(Inherited from IDisposable.)

System_CAPS_pubmethod EnableHttp(String, String, String, String)

Enables Http Connectivity on the HDInsight cluster synchronously.

System_CAPS_pubmethod EnableRdp(String, String, String, String, DateTime)

Enables Rdp access on the HDInsight cluster.

System_CAPS_pubmethod GetCluster(String)

Queries for a specific HDInsight Cluster registered.

System_CAPS_pubmethod GetCluster(String, String)

Queries for a specific HDInsight Cluster registered.

System_CAPS_pubmethod ListAvailableLocations()

Queries the locations where HDInsight has been enabled for the subscription.

System_CAPS_pubmethod ListAvailableLocations(OSType)

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

System_CAPS_pubmethod ListAvailableVersions()

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

System_CAPS_pubmethod ListClusters()

Queries the HDInsight Clusters registered.

System_CAPS_pubmethod ListResourceProviderProperties()

Queries the locations where HDInsight has been enabled for the subscription.

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.)

See Also

Microsoft.WindowsAzure.Management.HDInsight Namespace

Return to top