We recommend using Azure Native.
azure.streamanalytics.OutputServiceBusQueue
Explore with Pulumi AI
Manages a Stream Analytics Output to a ServiceBus Queue.
Example Usage
Coming soon!
Coming soon!
Coming soon!
Coming soon!
Coming soon!
resources:
  exampleResourceGroup:
    type: azure:core:ResourceGroup
    name: example
    properties:
      name: rg-example
      location: West Europe
  exampleNamespace:
    type: azure:servicebus:Namespace
    name: example
    properties:
      name: example-namespace
      location: ${exampleResourceGroup.location}
      resourceGroupName: ${exampleResourceGroup.name}
      sku: Standard
  exampleQueue:
    type: azure:servicebus:Queue
    name: example
    properties:
      name: example-queue
      namespaceId: ${exampleNamespace.id}
      enablePartitioning: true
  exampleOutputServiceBusQueue:
    type: azure:streamanalytics:OutputServiceBusQueue
    name: example
    properties:
      name: blob-storage-output
      streamAnalyticsJobName: ${example.name}
      resourceGroupName: ${example.resourceGroupName}
      queueName: ${exampleQueue.name}
      servicebusNamespace: ${exampleNamespace.name}
      sharedAccessPolicyKey: ${exampleNamespace.defaultPrimaryKey}
      sharedAccessPolicyName: RootManageSharedAccessKey
      serialization:
        type: Csv
        format: Array
variables:
  example:
    fn::invoke:
      function: azure:streamanalytics:getJob
      arguments:
        name: example-job
        resourceGroupName: ${exampleResourceGroup.name}
Create OutputServiceBusQueue Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new OutputServiceBusQueue(name: string, args: OutputServiceBusQueueArgs, opts?: CustomResourceOptions);@overload
def OutputServiceBusQueue(resource_name: str,
                          args: OutputServiceBusQueueArgs,
                          opts: Optional[ResourceOptions] = None)
@overload
def OutputServiceBusQueue(resource_name: str,
                          opts: Optional[ResourceOptions] = None,
                          queue_name: Optional[str] = None,
                          resource_group_name: Optional[str] = None,
                          serialization: Optional[OutputServiceBusQueueSerializationArgs] = None,
                          servicebus_namespace: Optional[str] = None,
                          stream_analytics_job_name: Optional[str] = None,
                          authentication_mode: Optional[str] = None,
                          name: Optional[str] = None,
                          property_columns: Optional[Sequence[str]] = None,
                          shared_access_policy_key: Optional[str] = None,
                          shared_access_policy_name: Optional[str] = None,
                          system_property_columns: Optional[Mapping[str, str]] = None)func NewOutputServiceBusQueue(ctx *Context, name string, args OutputServiceBusQueueArgs, opts ...ResourceOption) (*OutputServiceBusQueue, error)public OutputServiceBusQueue(string name, OutputServiceBusQueueArgs args, CustomResourceOptions? opts = null)
public OutputServiceBusQueue(String name, OutputServiceBusQueueArgs args)
public OutputServiceBusQueue(String name, OutputServiceBusQueueArgs args, CustomResourceOptions options)
type: azure:streamanalytics:OutputServiceBusQueue
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args OutputServiceBusQueueArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args OutputServiceBusQueueArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args OutputServiceBusQueueArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args OutputServiceBusQueueArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args OutputServiceBusQueueArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var outputServiceBusQueueResource = new Azure.StreamAnalytics.OutputServiceBusQueue("outputServiceBusQueueResource", new()
{
    QueueName = "string",
    ResourceGroupName = "string",
    Serialization = new Azure.StreamAnalytics.Inputs.OutputServiceBusQueueSerializationArgs
    {
        Type = "string",
        Encoding = "string",
        FieldDelimiter = "string",
        Format = "string",
    },
    ServicebusNamespace = "string",
    StreamAnalyticsJobName = "string",
    AuthenticationMode = "string",
    Name = "string",
    PropertyColumns = new[]
    {
        "string",
    },
    SharedAccessPolicyKey = "string",
    SharedAccessPolicyName = "string",
    SystemPropertyColumns = 
    {
        { "string", "string" },
    },
});
example, err := streamanalytics.NewOutputServiceBusQueue(ctx, "outputServiceBusQueueResource", &streamanalytics.OutputServiceBusQueueArgs{
	QueueName:         pulumi.String("string"),
	ResourceGroupName: pulumi.String("string"),
	Serialization: &streamanalytics.OutputServiceBusQueueSerializationArgs{
		Type:           pulumi.String("string"),
		Encoding:       pulumi.String("string"),
		FieldDelimiter: pulumi.String("string"),
		Format:         pulumi.String("string"),
	},
	ServicebusNamespace:    pulumi.String("string"),
	StreamAnalyticsJobName: pulumi.String("string"),
	AuthenticationMode:     pulumi.String("string"),
	Name:                   pulumi.String("string"),
	PropertyColumns: pulumi.StringArray{
		pulumi.String("string"),
	},
	SharedAccessPolicyKey:  pulumi.String("string"),
	SharedAccessPolicyName: pulumi.String("string"),
	SystemPropertyColumns: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
})
var outputServiceBusQueueResource = new OutputServiceBusQueue("outputServiceBusQueueResource", OutputServiceBusQueueArgs.builder()
    .queueName("string")
    .resourceGroupName("string")
    .serialization(OutputServiceBusQueueSerializationArgs.builder()
        .type("string")
        .encoding("string")
        .fieldDelimiter("string")
        .format("string")
        .build())
    .servicebusNamespace("string")
    .streamAnalyticsJobName("string")
    .authenticationMode("string")
    .name("string")
    .propertyColumns("string")
    .sharedAccessPolicyKey("string")
    .sharedAccessPolicyName("string")
    .systemPropertyColumns(Map.of("string", "string"))
    .build());
output_service_bus_queue_resource = azure.streamanalytics.OutputServiceBusQueue("outputServiceBusQueueResource",
    queue_name="string",
    resource_group_name="string",
    serialization={
        "type": "string",
        "encoding": "string",
        "field_delimiter": "string",
        "format": "string",
    },
    servicebus_namespace="string",
    stream_analytics_job_name="string",
    authentication_mode="string",
    name="string",
    property_columns=["string"],
    shared_access_policy_key="string",
    shared_access_policy_name="string",
    system_property_columns={
        "string": "string",
    })
const outputServiceBusQueueResource = new azure.streamanalytics.OutputServiceBusQueue("outputServiceBusQueueResource", {
    queueName: "string",
    resourceGroupName: "string",
    serialization: {
        type: "string",
        encoding: "string",
        fieldDelimiter: "string",
        format: "string",
    },
    servicebusNamespace: "string",
    streamAnalyticsJobName: "string",
    authenticationMode: "string",
    name: "string",
    propertyColumns: ["string"],
    sharedAccessPolicyKey: "string",
    sharedAccessPolicyName: "string",
    systemPropertyColumns: {
        string: "string",
    },
});
type: azure:streamanalytics:OutputServiceBusQueue
properties:
    authenticationMode: string
    name: string
    propertyColumns:
        - string
    queueName: string
    resourceGroupName: string
    serialization:
        encoding: string
        fieldDelimiter: string
        format: string
        type: string
    servicebusNamespace: string
    sharedAccessPolicyKey: string
    sharedAccessPolicyName: string
    streamAnalyticsJobName: string
    systemPropertyColumns:
        string: string
OutputServiceBusQueue Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The OutputServiceBusQueue resource accepts the following input properties:
- QueueName string
- The name of the Service Bus Queue.
- ResourceGroup stringName 
- The name of the Resource Group where the Stream Analytics Job exists. Changing this forces a new resource to be created.
- Serialization
OutputService Bus Queue Serialization 
- A serializationblock as defined below.
- ServicebusNamespace string
- The namespace that is associated with the desired Event Hub, Service Bus Queue, Service Bus Topic, etc.
- StreamAnalytics stringJob Name 
- The name of the Stream Analytics Job. Changing this forces a new resource to be created.
- AuthenticationMode string
- The authentication mode for the Stream Output. Possible values are MsiandConnectionString. Defaults toConnectionString.
- Name string
- The name of the Stream Output. Changing this forces a new resource to be created.
- PropertyColumns List<string>
- A list of property columns to add to the Service Bus Queue output.
- string
- The shared access policy key for the specified shared access policy. Required if authentication_modeisConnectionString.
- string
- The shared access policy name for the Event Hub, Service Bus Queue, Service Bus Topic, etc. Required if authentication_modeisConnectionString.
- SystemProperty Dictionary<string, string>Columns 
- A key-value pair of system property columns that will be attached to the outgoing messages for the Service Bus Queue Output. - NOTE: The acceptable keys are - ContentType,- CorrelationId,- Label,- MessageId,- PartitionKey,- ReplyTo,- ReplyToSessionId,- ScheduledEnqueueTimeUtc,- SessionId,- TimeToLiveand- To.
- QueueName string
- The name of the Service Bus Queue.
- ResourceGroup stringName 
- The name of the Resource Group where the Stream Analytics Job exists. Changing this forces a new resource to be created.
- Serialization
OutputService Bus Queue Serialization Args 
- A serializationblock as defined below.
- ServicebusNamespace string
- The namespace that is associated with the desired Event Hub, Service Bus Queue, Service Bus Topic, etc.
- StreamAnalytics stringJob Name 
- The name of the Stream Analytics Job. Changing this forces a new resource to be created.
- AuthenticationMode string
- The authentication mode for the Stream Output. Possible values are MsiandConnectionString. Defaults toConnectionString.
- Name string
- The name of the Stream Output. Changing this forces a new resource to be created.
- PropertyColumns []string
- A list of property columns to add to the Service Bus Queue output.
- string
- The shared access policy key for the specified shared access policy. Required if authentication_modeisConnectionString.
- string
- The shared access policy name for the Event Hub, Service Bus Queue, Service Bus Topic, etc. Required if authentication_modeisConnectionString.
- SystemProperty map[string]stringColumns 
- A key-value pair of system property columns that will be attached to the outgoing messages for the Service Bus Queue Output. - NOTE: The acceptable keys are - ContentType,- CorrelationId,- Label,- MessageId,- PartitionKey,- ReplyTo,- ReplyToSessionId,- ScheduledEnqueueTimeUtc,- SessionId,- TimeToLiveand- To.
- queueName String
- The name of the Service Bus Queue.
- resourceGroup StringName 
- The name of the Resource Group where the Stream Analytics Job exists. Changing this forces a new resource to be created.
- serialization
OutputService Bus Queue Serialization 
- A serializationblock as defined below.
- servicebusNamespace String
- The namespace that is associated with the desired Event Hub, Service Bus Queue, Service Bus Topic, etc.
- streamAnalytics StringJob Name 
- The name of the Stream Analytics Job. Changing this forces a new resource to be created.
- authenticationMode String
- The authentication mode for the Stream Output. Possible values are MsiandConnectionString. Defaults toConnectionString.
- name String
- The name of the Stream Output. Changing this forces a new resource to be created.
- propertyColumns List<String>
- A list of property columns to add to the Service Bus Queue output.
- String
- The shared access policy key for the specified shared access policy. Required if authentication_modeisConnectionString.
- String
- The shared access policy name for the Event Hub, Service Bus Queue, Service Bus Topic, etc. Required if authentication_modeisConnectionString.
- systemProperty Map<String,String>Columns 
- A key-value pair of system property columns that will be attached to the outgoing messages for the Service Bus Queue Output. - NOTE: The acceptable keys are - ContentType,- CorrelationId,- Label,- MessageId,- PartitionKey,- ReplyTo,- ReplyToSessionId,- ScheduledEnqueueTimeUtc,- SessionId,- TimeToLiveand- To.
- queueName string
- The name of the Service Bus Queue.
- resourceGroup stringName 
- The name of the Resource Group where the Stream Analytics Job exists. Changing this forces a new resource to be created.
- serialization
OutputService Bus Queue Serialization 
- A serializationblock as defined below.
- servicebusNamespace string
- The namespace that is associated with the desired Event Hub, Service Bus Queue, Service Bus Topic, etc.
- streamAnalytics stringJob Name 
- The name of the Stream Analytics Job. Changing this forces a new resource to be created.
- authenticationMode string
- The authentication mode for the Stream Output. Possible values are MsiandConnectionString. Defaults toConnectionString.
- name string
- The name of the Stream Output. Changing this forces a new resource to be created.
- propertyColumns string[]
- A list of property columns to add to the Service Bus Queue output.
- string
- The shared access policy key for the specified shared access policy. Required if authentication_modeisConnectionString.
- string
- The shared access policy name for the Event Hub, Service Bus Queue, Service Bus Topic, etc. Required if authentication_modeisConnectionString.
- systemProperty {[key: string]: string}Columns 
- A key-value pair of system property columns that will be attached to the outgoing messages for the Service Bus Queue Output. - NOTE: The acceptable keys are - ContentType,- CorrelationId,- Label,- MessageId,- PartitionKey,- ReplyTo,- ReplyToSessionId,- ScheduledEnqueueTimeUtc,- SessionId,- TimeToLiveand- To.
- queue_name str
- The name of the Service Bus Queue.
- resource_group_ strname 
- The name of the Resource Group where the Stream Analytics Job exists. Changing this forces a new resource to be created.
- serialization
OutputService Bus Queue Serialization Args 
- A serializationblock as defined below.
- servicebus_namespace str
- The namespace that is associated with the desired Event Hub, Service Bus Queue, Service Bus Topic, etc.
- stream_analytics_ strjob_ name 
- The name of the Stream Analytics Job. Changing this forces a new resource to be created.
- authentication_mode str
- The authentication mode for the Stream Output. Possible values are MsiandConnectionString. Defaults toConnectionString.
- name str
- The name of the Stream Output. Changing this forces a new resource to be created.
- property_columns Sequence[str]
- A list of property columns to add to the Service Bus Queue output.
- str
- The shared access policy key for the specified shared access policy. Required if authentication_modeisConnectionString.
- str
- The shared access policy name for the Event Hub, Service Bus Queue, Service Bus Topic, etc. Required if authentication_modeisConnectionString.
- system_property_ Mapping[str, str]columns 
- A key-value pair of system property columns that will be attached to the outgoing messages for the Service Bus Queue Output. - NOTE: The acceptable keys are - ContentType,- CorrelationId,- Label,- MessageId,- PartitionKey,- ReplyTo,- ReplyToSessionId,- ScheduledEnqueueTimeUtc,- SessionId,- TimeToLiveand- To.
- queueName String
- The name of the Service Bus Queue.
- resourceGroup StringName 
- The name of the Resource Group where the Stream Analytics Job exists. Changing this forces a new resource to be created.
- serialization Property Map
- A serializationblock as defined below.
- servicebusNamespace String
- The namespace that is associated with the desired Event Hub, Service Bus Queue, Service Bus Topic, etc.
- streamAnalytics StringJob Name 
- The name of the Stream Analytics Job. Changing this forces a new resource to be created.
- authenticationMode String
- The authentication mode for the Stream Output. Possible values are MsiandConnectionString. Defaults toConnectionString.
- name String
- The name of the Stream Output. Changing this forces a new resource to be created.
- propertyColumns List<String>
- A list of property columns to add to the Service Bus Queue output.
- String
- The shared access policy key for the specified shared access policy. Required if authentication_modeisConnectionString.
- String
- The shared access policy name for the Event Hub, Service Bus Queue, Service Bus Topic, etc. Required if authentication_modeisConnectionString.
- systemProperty Map<String>Columns 
- A key-value pair of system property columns that will be attached to the outgoing messages for the Service Bus Queue Output. - NOTE: The acceptable keys are - ContentType,- CorrelationId,- Label,- MessageId,- PartitionKey,- ReplyTo,- ReplyToSessionId,- ScheduledEnqueueTimeUtc,- SessionId,- TimeToLiveand- To.
Outputs
All input properties are implicitly available as output properties. Additionally, the OutputServiceBusQueue resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing OutputServiceBusQueue Resource
Get an existing OutputServiceBusQueue resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: OutputServiceBusQueueState, opts?: CustomResourceOptions): OutputServiceBusQueue@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        authentication_mode: Optional[str] = None,
        name: Optional[str] = None,
        property_columns: Optional[Sequence[str]] = None,
        queue_name: Optional[str] = None,
        resource_group_name: Optional[str] = None,
        serialization: Optional[OutputServiceBusQueueSerializationArgs] = None,
        servicebus_namespace: Optional[str] = None,
        shared_access_policy_key: Optional[str] = None,
        shared_access_policy_name: Optional[str] = None,
        stream_analytics_job_name: Optional[str] = None,
        system_property_columns: Optional[Mapping[str, str]] = None) -> OutputServiceBusQueuefunc GetOutputServiceBusQueue(ctx *Context, name string, id IDInput, state *OutputServiceBusQueueState, opts ...ResourceOption) (*OutputServiceBusQueue, error)public static OutputServiceBusQueue Get(string name, Input<string> id, OutputServiceBusQueueState? state, CustomResourceOptions? opts = null)public static OutputServiceBusQueue get(String name, Output<String> id, OutputServiceBusQueueState state, CustomResourceOptions options)resources:  _:    type: azure:streamanalytics:OutputServiceBusQueue    get:      id: ${id}- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- AuthenticationMode string
- The authentication mode for the Stream Output. Possible values are MsiandConnectionString. Defaults toConnectionString.
- Name string
- The name of the Stream Output. Changing this forces a new resource to be created.
- PropertyColumns List<string>
- A list of property columns to add to the Service Bus Queue output.
- QueueName string
- The name of the Service Bus Queue.
- ResourceGroup stringName 
- The name of the Resource Group where the Stream Analytics Job exists. Changing this forces a new resource to be created.
- Serialization
OutputService Bus Queue Serialization 
- A serializationblock as defined below.
- ServicebusNamespace string
- The namespace that is associated with the desired Event Hub, Service Bus Queue, Service Bus Topic, etc.
- string
- The shared access policy key for the specified shared access policy. Required if authentication_modeisConnectionString.
- string
- The shared access policy name for the Event Hub, Service Bus Queue, Service Bus Topic, etc. Required if authentication_modeisConnectionString.
- StreamAnalytics stringJob Name 
- The name of the Stream Analytics Job. Changing this forces a new resource to be created.
- SystemProperty Dictionary<string, string>Columns 
- A key-value pair of system property columns that will be attached to the outgoing messages for the Service Bus Queue Output. - NOTE: The acceptable keys are - ContentType,- CorrelationId,- Label,- MessageId,- PartitionKey,- ReplyTo,- ReplyToSessionId,- ScheduledEnqueueTimeUtc,- SessionId,- TimeToLiveand- To.
- AuthenticationMode string
- The authentication mode for the Stream Output. Possible values are MsiandConnectionString. Defaults toConnectionString.
- Name string
- The name of the Stream Output. Changing this forces a new resource to be created.
- PropertyColumns []string
- A list of property columns to add to the Service Bus Queue output.
- QueueName string
- The name of the Service Bus Queue.
- ResourceGroup stringName 
- The name of the Resource Group where the Stream Analytics Job exists. Changing this forces a new resource to be created.
- Serialization
OutputService Bus Queue Serialization Args 
- A serializationblock as defined below.
- ServicebusNamespace string
- The namespace that is associated with the desired Event Hub, Service Bus Queue, Service Bus Topic, etc.
- string
- The shared access policy key for the specified shared access policy. Required if authentication_modeisConnectionString.
- string
- The shared access policy name for the Event Hub, Service Bus Queue, Service Bus Topic, etc. Required if authentication_modeisConnectionString.
- StreamAnalytics stringJob Name 
- The name of the Stream Analytics Job. Changing this forces a new resource to be created.
- SystemProperty map[string]stringColumns 
- A key-value pair of system property columns that will be attached to the outgoing messages for the Service Bus Queue Output. - NOTE: The acceptable keys are - ContentType,- CorrelationId,- Label,- MessageId,- PartitionKey,- ReplyTo,- ReplyToSessionId,- ScheduledEnqueueTimeUtc,- SessionId,- TimeToLiveand- To.
- authenticationMode String
- The authentication mode for the Stream Output. Possible values are MsiandConnectionString. Defaults toConnectionString.
- name String
- The name of the Stream Output. Changing this forces a new resource to be created.
- propertyColumns List<String>
- A list of property columns to add to the Service Bus Queue output.
- queueName String
- The name of the Service Bus Queue.
- resourceGroup StringName 
- The name of the Resource Group where the Stream Analytics Job exists. Changing this forces a new resource to be created.
- serialization
OutputService Bus Queue Serialization 
- A serializationblock as defined below.
- servicebusNamespace String
- The namespace that is associated with the desired Event Hub, Service Bus Queue, Service Bus Topic, etc.
- String
- The shared access policy key for the specified shared access policy. Required if authentication_modeisConnectionString.
- String
- The shared access policy name for the Event Hub, Service Bus Queue, Service Bus Topic, etc. Required if authentication_modeisConnectionString.
- streamAnalytics StringJob Name 
- The name of the Stream Analytics Job. Changing this forces a new resource to be created.
- systemProperty Map<String,String>Columns 
- A key-value pair of system property columns that will be attached to the outgoing messages for the Service Bus Queue Output. - NOTE: The acceptable keys are - ContentType,- CorrelationId,- Label,- MessageId,- PartitionKey,- ReplyTo,- ReplyToSessionId,- ScheduledEnqueueTimeUtc,- SessionId,- TimeToLiveand- To.
- authenticationMode string
- The authentication mode for the Stream Output. Possible values are MsiandConnectionString. Defaults toConnectionString.
- name string
- The name of the Stream Output. Changing this forces a new resource to be created.
- propertyColumns string[]
- A list of property columns to add to the Service Bus Queue output.
- queueName string
- The name of the Service Bus Queue.
- resourceGroup stringName 
- The name of the Resource Group where the Stream Analytics Job exists. Changing this forces a new resource to be created.
- serialization
OutputService Bus Queue Serialization 
- A serializationblock as defined below.
- servicebusNamespace string
- The namespace that is associated with the desired Event Hub, Service Bus Queue, Service Bus Topic, etc.
- string
- The shared access policy key for the specified shared access policy. Required if authentication_modeisConnectionString.
- string
- The shared access policy name for the Event Hub, Service Bus Queue, Service Bus Topic, etc. Required if authentication_modeisConnectionString.
- streamAnalytics stringJob Name 
- The name of the Stream Analytics Job. Changing this forces a new resource to be created.
- systemProperty {[key: string]: string}Columns 
- A key-value pair of system property columns that will be attached to the outgoing messages for the Service Bus Queue Output. - NOTE: The acceptable keys are - ContentType,- CorrelationId,- Label,- MessageId,- PartitionKey,- ReplyTo,- ReplyToSessionId,- ScheduledEnqueueTimeUtc,- SessionId,- TimeToLiveand- To.
- authentication_mode str
- The authentication mode for the Stream Output. Possible values are MsiandConnectionString. Defaults toConnectionString.
- name str
- The name of the Stream Output. Changing this forces a new resource to be created.
- property_columns Sequence[str]
- A list of property columns to add to the Service Bus Queue output.
- queue_name str
- The name of the Service Bus Queue.
- resource_group_ strname 
- The name of the Resource Group where the Stream Analytics Job exists. Changing this forces a new resource to be created.
- serialization
OutputService Bus Queue Serialization Args 
- A serializationblock as defined below.
- servicebus_namespace str
- The namespace that is associated with the desired Event Hub, Service Bus Queue, Service Bus Topic, etc.
- str
- The shared access policy key for the specified shared access policy. Required if authentication_modeisConnectionString.
- str
- The shared access policy name for the Event Hub, Service Bus Queue, Service Bus Topic, etc. Required if authentication_modeisConnectionString.
- stream_analytics_ strjob_ name 
- The name of the Stream Analytics Job. Changing this forces a new resource to be created.
- system_property_ Mapping[str, str]columns 
- A key-value pair of system property columns that will be attached to the outgoing messages for the Service Bus Queue Output. - NOTE: The acceptable keys are - ContentType,- CorrelationId,- Label,- MessageId,- PartitionKey,- ReplyTo,- ReplyToSessionId,- ScheduledEnqueueTimeUtc,- SessionId,- TimeToLiveand- To.
- authenticationMode String
- The authentication mode for the Stream Output. Possible values are MsiandConnectionString. Defaults toConnectionString.
- name String
- The name of the Stream Output. Changing this forces a new resource to be created.
- propertyColumns List<String>
- A list of property columns to add to the Service Bus Queue output.
- queueName String
- The name of the Service Bus Queue.
- resourceGroup StringName 
- The name of the Resource Group where the Stream Analytics Job exists. Changing this forces a new resource to be created.
- serialization Property Map
- A serializationblock as defined below.
- servicebusNamespace String
- The namespace that is associated with the desired Event Hub, Service Bus Queue, Service Bus Topic, etc.
- String
- The shared access policy key for the specified shared access policy. Required if authentication_modeisConnectionString.
- String
- The shared access policy name for the Event Hub, Service Bus Queue, Service Bus Topic, etc. Required if authentication_modeisConnectionString.
- streamAnalytics StringJob Name 
- The name of the Stream Analytics Job. Changing this forces a new resource to be created.
- systemProperty Map<String>Columns 
- A key-value pair of system property columns that will be attached to the outgoing messages for the Service Bus Queue Output. - NOTE: The acceptable keys are - ContentType,- CorrelationId,- Label,- MessageId,- PartitionKey,- ReplyTo,- ReplyToSessionId,- ScheduledEnqueueTimeUtc,- SessionId,- TimeToLiveand- To.
Supporting Types
OutputServiceBusQueueSerialization, OutputServiceBusQueueSerializationArgs          
- Type string
- The serialization format used for outgoing data streams. Possible values are Avro,Csv,JsonandParquet.
- Encoding string
- The encoding of the incoming data in the case of input and the encoding of outgoing data in the case of output. It currently can only be set to - UTF8.- NOTE: This is required when - typeis set to- Csvor- Json.
- FieldDelimiter string
- The delimiter that will be used to separate comma-separated value (CSV) records. Possible values are - (space),- ,(comma),- (tab),- |(pipe) and- ;.- NOTE: This is required when - typeis set to- Csv.
- Format string
- Specifies the format of the JSON the output will be written in. Possible values are - Arrayand- LineSeparated.- NOTE: This is Required and can only be specified when - typeis set to- Json.
- Type string
- The serialization format used for outgoing data streams. Possible values are Avro,Csv,JsonandParquet.
- Encoding string
- The encoding of the incoming data in the case of input and the encoding of outgoing data in the case of output. It currently can only be set to - UTF8.- NOTE: This is required when - typeis set to- Csvor- Json.
- FieldDelimiter string
- The delimiter that will be used to separate comma-separated value (CSV) records. Possible values are - (space),- ,(comma),- (tab),- |(pipe) and- ;.- NOTE: This is required when - typeis set to- Csv.
- Format string
- Specifies the format of the JSON the output will be written in. Possible values are - Arrayand- LineSeparated.- NOTE: This is Required and can only be specified when - typeis set to- Json.
- type String
- The serialization format used for outgoing data streams. Possible values are Avro,Csv,JsonandParquet.
- encoding String
- The encoding of the incoming data in the case of input and the encoding of outgoing data in the case of output. It currently can only be set to - UTF8.- NOTE: This is required when - typeis set to- Csvor- Json.
- fieldDelimiter String
- The delimiter that will be used to separate comma-separated value (CSV) records. Possible values are - (space),- ,(comma),- (tab),- |(pipe) and- ;.- NOTE: This is required when - typeis set to- Csv.
- format String
- Specifies the format of the JSON the output will be written in. Possible values are - Arrayand- LineSeparated.- NOTE: This is Required and can only be specified when - typeis set to- Json.
- type string
- The serialization format used for outgoing data streams. Possible values are Avro,Csv,JsonandParquet.
- encoding string
- The encoding of the incoming data in the case of input and the encoding of outgoing data in the case of output. It currently can only be set to - UTF8.- NOTE: This is required when - typeis set to- Csvor- Json.
- fieldDelimiter string
- The delimiter that will be used to separate comma-separated value (CSV) records. Possible values are - (space),- ,(comma),- (tab),- |(pipe) and- ;.- NOTE: This is required when - typeis set to- Csv.
- format string
- Specifies the format of the JSON the output will be written in. Possible values are - Arrayand- LineSeparated.- NOTE: This is Required and can only be specified when - typeis set to- Json.
- type str
- The serialization format used for outgoing data streams. Possible values are Avro,Csv,JsonandParquet.
- encoding str
- The encoding of the incoming data in the case of input and the encoding of outgoing data in the case of output. It currently can only be set to - UTF8.- NOTE: This is required when - typeis set to- Csvor- Json.
- field_delimiter str
- The delimiter that will be used to separate comma-separated value (CSV) records. Possible values are - (space),- ,(comma),- (tab),- |(pipe) and- ;.- NOTE: This is required when - typeis set to- Csv.
- format str
- Specifies the format of the JSON the output will be written in. Possible values are - Arrayand- LineSeparated.- NOTE: This is Required and can only be specified when - typeis set to- Json.
- type String
- The serialization format used for outgoing data streams. Possible values are Avro,Csv,JsonandParquet.
- encoding String
- The encoding of the incoming data in the case of input and the encoding of outgoing data in the case of output. It currently can only be set to - UTF8.- NOTE: This is required when - typeis set to- Csvor- Json.
- fieldDelimiter String
- The delimiter that will be used to separate comma-separated value (CSV) records. Possible values are - (space),- ,(comma),- (tab),- |(pipe) and- ;.- NOTE: This is required when - typeis set to- Csv.
- format String
- Specifies the format of the JSON the output will be written in. Possible values are - Arrayand- LineSeparated.- NOTE: This is Required and can only be specified when - typeis set to- Json.
Import
Stream Analytics Output ServiceBus Queue’s can be imported using the resource id, e.g.
$ pulumi import azure:streamanalytics/outputServiceBusQueue:OutputServiceBusQueue example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.StreamAnalytics/streamingJobs/job1/outputs/output1
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Classic pulumi/pulumi-azure
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the azurermTerraform Provider.