import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * Manages a Stream Analytics Output to a ServiceBus Topic. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const exampleResourceGroup = new azure.core.ResourceGroup("example", { * name: "rg-example", * location: "West Europe", * }); * const example = azure.streamanalytics.getJobOutput({ * name: "example-job", * resourceGroupName: exampleResourceGroup.name, * }); * const exampleNamespace = new azure.servicebus.Namespace("example", { * name: "example-namespace", * location: exampleResourceGroup.location, * resourceGroupName: exampleResourceGroup.name, * sku: "Standard", * }); * const exampleTopic = new azure.servicebus.Topic("example", { * name: "example-topic", * namespaceId: exampleNamespace.id, * enablePartitioning: true, * }); * const exampleOutputServicebusTopic = new azure.streamanalytics.OutputServicebusTopic("example", { * name: "service-bus-topic-output", * streamAnalyticsJobName: example.apply(example => example.name), * resourceGroupName: example.apply(example => example.resourceGroupName), * topicName: exampleTopic.name, * servicebusNamespace: exampleNamespace.name, * sharedAccessPolicyKey: exampleNamespace.defaultPrimaryKey, * sharedAccessPolicyName: "RootManageSharedAccessKey", * propertyColumns: [ * "col1", * "col2", * ], * serialization: { * type: "Csv", * format: "Array", * }, * }); * ``` * * ## API Providers * * * This resource uses the following Azure API Providers: * * * `Microsoft.StreamAnalytics` - 2021-10-01-preview * * ## Import * * Stream Analytics Output ServiceBus Topic's can be imported using the `resource id`, e.g. * * ```sh * $ pulumi import azure:streamanalytics/outputServicebusTopic:OutputServicebusTopic example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.StreamAnalytics/streamingJobs/job1/outputs/output1 * ``` */ export declare class OutputServicebusTopic extends pulumi.CustomResource { /** * Get an existing OutputServicebusTopic 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?: OutputServicebusTopicState, opts?: pulumi.CustomResourceOptions): OutputServicebusTopic; /** * Returns true if the given object is an instance of OutputServicebusTopic. 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 OutputServicebusTopic; /** * The authentication mode for the Stream Output. Possible values are `Msi` and `ConnectionString`. Defaults to `ConnectionString`. */ readonly authenticationMode: pulumi.Output; /** * The name of the Stream Output. Changing this forces a new resource to be created. */ readonly name: pulumi.Output; /** * A list of property columns to add to the Service Bus Topic output. */ readonly propertyColumns: pulumi.Output; /** * The name of the Resource Group where the Stream Analytics Job exists. Changing this forces a new resource to be created. */ readonly resourceGroupName: pulumi.Output; /** * A `serialization` block as defined below. */ readonly serialization: pulumi.Output; /** * The namespace that is associated with the desired Event Hub, Service Bus Topic, Service Bus Topic, etc. */ readonly servicebusNamespace: pulumi.Output; /** * The shared access policy key for the specified shared access policy. Required if `authenticationMode` is `ConnectionString`. */ readonly sharedAccessPolicyKey: pulumi.Output; /** * The shared access policy name for the Event Hub, Service Bus Queue, Service Bus Topic, etc. Required if `authenticationMode` is `ConnectionString`. */ readonly sharedAccessPolicyName: pulumi.Output; /** * The name of the Stream Analytics Job. Changing this forces a new resource to be created. */ readonly streamAnalyticsJobName: pulumi.Output; /** * A key-value pair of system property columns that will be attached to the outgoing messages for the Service Bus Topic Output. * * > **Note:** The acceptable keys are `ContentType`, `CorrelationId`, `Label`, `MessageId`, `PartitionKey`, `ReplyTo`, `ReplyToSessionId`, `ScheduledEnqueueTimeUtc`, `SessionId`, `TimeToLive` and `To`. */ readonly systemPropertyColumns: pulumi.Output<{ [key: string]: string; } | undefined>; /** * The name of the Service Bus Topic. */ readonly topicName: pulumi.Output; /** * Create a OutputServicebusTopic 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: OutputServicebusTopicArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering OutputServicebusTopic resources. */ export interface OutputServicebusTopicState { /** * The authentication mode for the Stream Output. Possible values are `Msi` and `ConnectionString`. Defaults to `ConnectionString`. */ authenticationMode?: pulumi.Input; /** * The name of the Stream Output. Changing this forces a new resource to be created. */ name?: pulumi.Input; /** * A list of property columns to add to the Service Bus Topic output. */ propertyColumns?: pulumi.Input[]>; /** * The name of the Resource Group where the Stream Analytics Job exists. Changing this forces a new resource to be created. */ resourceGroupName?: pulumi.Input; /** * A `serialization` block as defined below. */ serialization?: pulumi.Input; /** * The namespace that is associated with the desired Event Hub, Service Bus Topic, Service Bus Topic, etc. */ servicebusNamespace?: pulumi.Input; /** * The shared access policy key for the specified shared access policy. Required if `authenticationMode` is `ConnectionString`. */ sharedAccessPolicyKey?: pulumi.Input; /** * The shared access policy name for the Event Hub, Service Bus Queue, Service Bus Topic, etc. Required if `authenticationMode` is `ConnectionString`. */ sharedAccessPolicyName?: pulumi.Input; /** * The name of the Stream Analytics Job. Changing this forces a new resource to be created. */ streamAnalyticsJobName?: pulumi.Input; /** * A key-value pair of system property columns that will be attached to the outgoing messages for the Service Bus Topic Output. * * > **Note:** The acceptable keys are `ContentType`, `CorrelationId`, `Label`, `MessageId`, `PartitionKey`, `ReplyTo`, `ReplyToSessionId`, `ScheduledEnqueueTimeUtc`, `SessionId`, `TimeToLive` and `To`. */ systemPropertyColumns?: pulumi.Input<{ [key: string]: pulumi.Input; }>; /** * The name of the Service Bus Topic. */ topicName?: pulumi.Input; } /** * The set of arguments for constructing a OutputServicebusTopic resource. */ export interface OutputServicebusTopicArgs { /** * The authentication mode for the Stream Output. Possible values are `Msi` and `ConnectionString`. Defaults to `ConnectionString`. */ authenticationMode?: pulumi.Input; /** * The name of the Stream Output. Changing this forces a new resource to be created. */ name?: pulumi.Input; /** * A list of property columns to add to the Service Bus Topic output. */ propertyColumns?: pulumi.Input[]>; /** * The name of the Resource Group where the Stream Analytics Job exists. Changing this forces a new resource to be created. */ resourceGroupName: pulumi.Input; /** * A `serialization` block as defined below. */ serialization: pulumi.Input; /** * The namespace that is associated with the desired Event Hub, Service Bus Topic, Service Bus Topic, etc. */ servicebusNamespace: pulumi.Input; /** * The shared access policy key for the specified shared access policy. Required if `authenticationMode` is `ConnectionString`. */ sharedAccessPolicyKey?: pulumi.Input; /** * The shared access policy name for the Event Hub, Service Bus Queue, Service Bus Topic, etc. Required if `authenticationMode` is `ConnectionString`. */ sharedAccessPolicyName?: pulumi.Input; /** * The name of the Stream Analytics Job. Changing this forces a new resource to be created. */ streamAnalyticsJobName: pulumi.Input; /** * A key-value pair of system property columns that will be attached to the outgoing messages for the Service Bus Topic Output. * * > **Note:** The acceptable keys are `ContentType`, `CorrelationId`, `Label`, `MessageId`, `PartitionKey`, `ReplyTo`, `ReplyToSessionId`, `ScheduledEnqueueTimeUtc`, `SessionId`, `TimeToLive` and `To`. */ systemPropertyColumns?: pulumi.Input<{ [key: string]: pulumi.Input; }>; /** * The name of the Service Bus Topic. */ topicName: pulumi.Input; }