Package version:

Interface representing a ClusterJobs.

interface ClusterJobs {
    beginRunJob(resourceGroupName: string, clusterPoolName: string, clusterName: string, clusterJob: ClusterJob, options?: ClusterJobsRunJobOptionalParams): Promise<SimplePollerLike<OperationState<ClusterJob>, ClusterJob>>;
    beginRunJobAndWait(resourceGroupName: string, clusterPoolName: string, clusterName: string, clusterJob: ClusterJob, options?: ClusterJobsRunJobOptionalParams): Promise<ClusterJob>;
    list(resourceGroupName: string, clusterPoolName: string, clusterName: string, options?: ClusterJobsListOptionalParams): PagedAsyncIterableIterator<ClusterJob>;
}

Methods

  • Operations on jobs of HDInsight on AKS cluster.

    Parameters

    • resourceGroupName: string

      The name of the resource group. The name is case insensitive.

    • clusterPoolName: string

      The name of the cluster pool.

    • clusterName: string

      The name of the HDInsight cluster.

    • clusterJob: ClusterJob

      The Cluster job.

    • Optionaloptions: ClusterJobsRunJobOptionalParams

      The options parameters.

    Returns Promise<SimplePollerLike<OperationState<ClusterJob>, ClusterJob>>

  • Operations on jobs of HDInsight on AKS cluster.

    Parameters

    • resourceGroupName: string

      The name of the resource group. The name is case insensitive.

    • clusterPoolName: string

      The name of the cluster pool.

    • clusterName: string

      The name of the HDInsight cluster.

    • clusterJob: ClusterJob

      The Cluster job.

    • Optionaloptions: ClusterJobsRunJobOptionalParams

      The options parameters.

    Returns Promise<ClusterJob>

  • Get jobs of HDInsight on AKS cluster.

    Parameters

    • resourceGroupName: string

      The name of the resource group. The name is case insensitive.

    • clusterPoolName: string

      The name of the cluster pool.

    • clusterName: string

      The name of the HDInsight cluster.

    • Optionaloptions: ClusterJobsListOptionalParams

      The options parameters.

    Returns PagedAsyncIterableIterator<ClusterJob>