import * as pulumi from "@pulumi/pulumi"; /** * Manages a Stream Analytics Cluster. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = new azure.core.ResourceGroup("example", { * name: "example-resources", * location: "West Europe", * }); * const exampleCluster = new azure.streamanalytics.Cluster("example", { * name: "examplestreamanalyticscluster", * resourceGroupName: example.name, * location: example.location, * streamingCapacity: 36, * }); * ``` * * ## API Providers * * * This resource uses the following Azure API Providers: * * * `Microsoft.StreamAnalytics` - 2020-03-01 * * ## Import * * Stream Analytics Clusters can be imported using the `resource id`, e.g. * * ```sh * $ pulumi import azure:streamanalytics/cluster:Cluster example /subscriptions/12345678-1234-9876-4563-123456789012/resourceGroups/resGroup1/providers/Microsoft.StreamAnalytics/clusters/cluster1 * ``` */ export declare class Cluster extends pulumi.CustomResource { /** * Get an existing Cluster resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: ClusterState, opts?: pulumi.CustomResourceOptions): Cluster; /** * Returns true if the given object is an instance of Cluster. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is Cluster; /** * The Azure Region where the Stream Analytics Cluster should exist. Changing this forces a new resource to be created. */ readonly location: pulumi.Output; /** * The name which should be used for this Stream Analytics Cluster. Changing this forces a new resource to be created. */ readonly name: pulumi.Output; /** * The name of the Resource Group where the Stream Analytics Cluster should exist. Changing this forces a new resource to be created. */ readonly resourceGroupName: pulumi.Output; /** * The number of streaming units supported by the Cluster. Accepted values are multiples of `36` in the range of `36` to `216`. */ readonly streamingCapacity: pulumi.Output; /** * A mapping of tags which should be assigned to the Stream Analytics. */ readonly tags: pulumi.Output<{ [key: string]: string; } | undefined>; /** * Create a Cluster resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: ClusterArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering Cluster resources. */ export interface ClusterState { /** * The Azure Region where the Stream Analytics Cluster should exist. Changing this forces a new resource to be created. */ location?: pulumi.Input; /** * The name which should be used for this Stream Analytics Cluster. Changing this forces a new resource to be created. */ name?: pulumi.Input; /** * The name of the Resource Group where the Stream Analytics Cluster should exist. Changing this forces a new resource to be created. */ resourceGroupName?: pulumi.Input; /** * The number of streaming units supported by the Cluster. Accepted values are multiples of `36` in the range of `36` to `216`. */ streamingCapacity?: pulumi.Input; /** * A mapping of tags which should be assigned to the Stream Analytics. */ tags?: pulumi.Input<{ [key: string]: pulumi.Input; }>; } /** * The set of arguments for constructing a Cluster resource. */ export interface ClusterArgs { /** * The Azure Region where the Stream Analytics Cluster should exist. Changing this forces a new resource to be created. */ location?: pulumi.Input; /** * The name which should be used for this Stream Analytics Cluster. Changing this forces a new resource to be created. */ name?: pulumi.Input; /** * The name of the Resource Group where the Stream Analytics Cluster should exist. Changing this forces a new resource to be created. */ resourceGroupName: pulumi.Input; /** * The number of streaming units supported by the Cluster. Accepted values are multiples of `36` in the range of `36` to `216`. */ streamingCapacity: pulumi.Input; /** * A mapping of tags which should be assigned to the Stream Analytics. */ tags?: pulumi.Input<{ [key: string]: pulumi.Input; }>; }