UNPKG

@pulumi/azure-native

Version:

[![Slack](http://www.pulumi.com/images/docs/badges/slack.svg)](https://slack.pulumi.com) [![NPM version](https://badge.fury.io/js/%40pulumi%2Fazure-native.svg)](https://npmjs.com/package/@pulumi/azure-native) [![Python version](https://badge.fury.io/py/pu

48 lines (47 loc) 1.49 kB
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>; }