@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 1.49 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* Lists all of the streaming jobs in the given cluster.
*
* Uses Azure REST API version 2020-03-01.
*/
export declare function listClusterStreamingJobs(args: ListClusterStreamingJobsArgs, opts?: pulumi.InvokeOptions): Promise<ListClusterStreamingJobsResult>;
export interface ListClusterStreamingJobsArgs {
/**
* The name of the cluster.
*/
clusterName: string;
/**
* The name of the resource group. The name is case insensitive.
*/
resourceGroupName: string;
}
/**
* A list of streaming jobs. Populated by a List operation.
*/
export interface ListClusterStreamingJobsResult {
/**
* The URL to fetch the next set of streaming jobs.
*/
readonly nextLink: string;
/**
* A list of streaming jobs.
*/
readonly value: outputs.streamanalytics.ClusterJobResponse[];
}
/**
* Lists all of the streaming jobs in the given cluster.
*
* Uses Azure REST API version 2020-03-01.
*/
export declare function listClusterStreamingJobsOutput(args: ListClusterStreamingJobsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<ListClusterStreamingJobsResult>;
export interface ListClusterStreamingJobsOutputArgs {
/**
* The name of the cluster.
*/
clusterName: pulumi.Input<string>;
/**
* The name of the resource group. The name is case insensitive.
*/
resourceGroupName: pulumi.Input<string>;
}