1. Packages
  2. Azure Classic
  3. API Docs
  4. streamanalytics
  5. OutputServicebusTopic

We recommend using Azure Native.

Azure v6.22.0 published on Tuesday, Apr 1, 2025 by Pulumi

azure.streamanalytics.OutputServicebusTopic

Explore with Pulumi AI

Manages a Stream Analytics Output to a ServiceBus Topic.

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
  exampleTopic:
    type: azure:servicebus:Topic
    name: example
    properties:
      name: example-topic
      namespaceId: ${exampleNamespace.id}
      enablePartitioning: true
  exampleOutputServicebusTopic:
    type: azure:streamanalytics:OutputServicebusTopic
    name: example
    properties:
      name: service-bus-topic-output
      streamAnalyticsJobName: ${example.name}
      resourceGroupName: ${example.resourceGroupName}
      topicName: ${exampleTopic.name}
      servicebusNamespace: ${exampleNamespace.name}
      sharedAccessPolicyKey: ${exampleNamespace.defaultPrimaryKey}
      sharedAccessPolicyName: RootManageSharedAccessKey
      propertyColumns:
        - col1
        - col2
      serialization:
        type: Csv
        format: Array
variables:
  example:
    fn::invoke:
      function: azure:streamanalytics:getJob
      arguments:
        name: example-job
        resourceGroupName: ${exampleResourceGroup.name}
Copy

Create OutputServicebusTopic Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new OutputServicebusTopic(name: string, args: OutputServicebusTopicArgs, opts?: CustomResourceOptions);
@overload
def OutputServicebusTopic(resource_name: str,
                          args: OutputServicebusTopicArgs,
                          opts: Optional[ResourceOptions] = None)

@overload
def OutputServicebusTopic(resource_name: str,
                          opts: Optional[ResourceOptions] = None,
                          resource_group_name: Optional[str] = None,
                          serialization: Optional[OutputServicebusTopicSerializationArgs] = None,
                          servicebus_namespace: Optional[str] = None,
                          stream_analytics_job_name: Optional[str] = None,
                          topic_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 NewOutputServicebusTopic(ctx *Context, name string, args OutputServicebusTopicArgs, opts ...ResourceOption) (*OutputServicebusTopic, error)
public OutputServicebusTopic(string name, OutputServicebusTopicArgs args, CustomResourceOptions? opts = null)
public OutputServicebusTopic(String name, OutputServicebusTopicArgs args)
public OutputServicebusTopic(String name, OutputServicebusTopicArgs args, CustomResourceOptions options)
type: azure:streamanalytics:OutputServicebusTopic
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. OutputServicebusTopicArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. OutputServicebusTopicArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. OutputServicebusTopicArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. OutputServicebusTopicArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. OutputServicebusTopicArgs
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 outputServicebusTopicResource = new Azure.StreamAnalytics.OutputServicebusTopic("outputServicebusTopicResource", new()
{
    ResourceGroupName = "string",
    Serialization = new Azure.StreamAnalytics.Inputs.OutputServicebusTopicSerializationArgs
    {
        Type = "string",
        Encoding = "string",
        FieldDelimiter = "string",
        Format = "string",
    },
    ServicebusNamespace = "string",
    StreamAnalyticsJobName = "string",
    TopicName = "string",
    AuthenticationMode = "string",
    Name = "string",
    PropertyColumns = new[]
    {
        "string",
    },
    SharedAccessPolicyKey = "string",
    SharedAccessPolicyName = "string",
    SystemPropertyColumns = 
    {
        { "string", "string" },
    },
});
Copy
example, err := streamanalytics.NewOutputServicebusTopic(ctx, "outputServicebusTopicResource", &streamanalytics.OutputServicebusTopicArgs{
	ResourceGroupName: pulumi.String("string"),
	Serialization: &streamanalytics.OutputServicebusTopicSerializationArgs{
		Type:           pulumi.String("string"),
		Encoding:       pulumi.String("string"),
		FieldDelimiter: pulumi.String("string"),
		Format:         pulumi.String("string"),
	},
	ServicebusNamespace:    pulumi.String("string"),
	StreamAnalyticsJobName: pulumi.String("string"),
	TopicName:              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"),
	},
})
Copy
var outputServicebusTopicResource = new OutputServicebusTopic("outputServicebusTopicResource", OutputServicebusTopicArgs.builder()
    .resourceGroupName("string")
    .serialization(OutputServicebusTopicSerializationArgs.builder()
        .type("string")
        .encoding("string")
        .fieldDelimiter("string")
        .format("string")
        .build())
    .servicebusNamespace("string")
    .streamAnalyticsJobName("string")
    .topicName("string")
    .authenticationMode("string")
    .name("string")
    .propertyColumns("string")
    .sharedAccessPolicyKey("string")
    .sharedAccessPolicyName("string")
    .systemPropertyColumns(Map.of("string", "string"))
    .build());
Copy
output_servicebus_topic_resource = azure.streamanalytics.OutputServicebusTopic("outputServicebusTopicResource",
    resource_group_name="string",
    serialization={
        "type": "string",
        "encoding": "string",
        "field_delimiter": "string",
        "format": "string",
    },
    servicebus_namespace="string",
    stream_analytics_job_name="string",
    topic_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",
    })
Copy
const outputServicebusTopicResource = new azure.streamanalytics.OutputServicebusTopic("outputServicebusTopicResource", {
    resourceGroupName: "string",
    serialization: {
        type: "string",
        encoding: "string",
        fieldDelimiter: "string",
        format: "string",
    },
    servicebusNamespace: "string",
    streamAnalyticsJobName: "string",
    topicName: "string",
    authenticationMode: "string",
    name: "string",
    propertyColumns: ["string"],
    sharedAccessPolicyKey: "string",
    sharedAccessPolicyName: "string",
    systemPropertyColumns: {
        string: "string",
    },
});
Copy
type: azure:streamanalytics:OutputServicebusTopic
properties:
    authenticationMode: string
    name: string
    propertyColumns:
        - string
    resourceGroupName: string
    serialization:
        encoding: string
        fieldDelimiter: string
        format: string
        type: string
    servicebusNamespace: string
    sharedAccessPolicyKey: string
    sharedAccessPolicyName: string
    streamAnalyticsJobName: string
    systemPropertyColumns:
        string: string
    topicName: string
Copy

OutputServicebusTopic 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 OutputServicebusTopic resource accepts the following input properties:

ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the Resource Group where the Stream Analytics Job exists. Changing this forces a new resource to be created.
Serialization This property is required. OutputServicebusTopicSerialization
A serialization block as defined below.
ServicebusNamespace This property is required. string
The namespace that is associated with the desired Event Hub, Service Bus Topic, Service Bus Topic, etc.
StreamAnalyticsJobName
This property is required.
Changes to this property will trigger replacement.
string
The name of the Stream Analytics Job. Changing this forces a new resource to be created.
TopicName This property is required. string
The name of the Service Bus Topic.
AuthenticationMode string
The authentication mode for the Stream Output. Possible values are Msi and ConnectionString. Defaults to ConnectionString.
Name Changes to this property will trigger replacement. 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 Topic output.
SharedAccessPolicyKey string
The shared access policy key for the specified shared access policy. Required if authentication_mode is ConnectionString.
SharedAccessPolicyName string
The shared access policy name for the Event Hub, Service Bus Queue, Service Bus Topic, etc. Required if authentication_mode is ConnectionString.
SystemPropertyColumns Dictionary<string, string>

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.

ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the Resource Group where the Stream Analytics Job exists. Changing this forces a new resource to be created.
Serialization This property is required. OutputServicebusTopicSerializationArgs
A serialization block as defined below.
ServicebusNamespace This property is required. string
The namespace that is associated with the desired Event Hub, Service Bus Topic, Service Bus Topic, etc.
StreamAnalyticsJobName
This property is required.
Changes to this property will trigger replacement.
string
The name of the Stream Analytics Job. Changing this forces a new resource to be created.
TopicName This property is required. string
The name of the Service Bus Topic.
AuthenticationMode string
The authentication mode for the Stream Output. Possible values are Msi and ConnectionString. Defaults to ConnectionString.
Name Changes to this property will trigger replacement. 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 Topic output.
SharedAccessPolicyKey string
The shared access policy key for the specified shared access policy. Required if authentication_mode is ConnectionString.
SharedAccessPolicyName string
The shared access policy name for the Event Hub, Service Bus Queue, Service Bus Topic, etc. Required if authentication_mode is ConnectionString.
SystemPropertyColumns map[string]string

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.

resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the Resource Group where the Stream Analytics Job exists. Changing this forces a new resource to be created.
serialization This property is required. OutputServicebusTopicSerialization
A serialization block as defined below.
servicebusNamespace This property is required. String
The namespace that is associated with the desired Event Hub, Service Bus Topic, Service Bus Topic, etc.
streamAnalyticsJobName
This property is required.
Changes to this property will trigger replacement.
String
The name of the Stream Analytics Job. Changing this forces a new resource to be created.
topicName This property is required. String
The name of the Service Bus Topic.
authenticationMode String
The authentication mode for the Stream Output. Possible values are Msi and ConnectionString. Defaults to ConnectionString.
name Changes to this property will trigger replacement. 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 Topic output.
sharedAccessPolicyKey String
The shared access policy key for the specified shared access policy. Required if authentication_mode is ConnectionString.
sharedAccessPolicyName String
The shared access policy name for the Event Hub, Service Bus Queue, Service Bus Topic, etc. Required if authentication_mode is ConnectionString.
systemPropertyColumns Map<String,String>

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.

resourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the Resource Group where the Stream Analytics Job exists. Changing this forces a new resource to be created.
serialization This property is required. OutputServicebusTopicSerialization
A serialization block as defined below.
servicebusNamespace This property is required. string
The namespace that is associated with the desired Event Hub, Service Bus Topic, Service Bus Topic, etc.
streamAnalyticsJobName
This property is required.
Changes to this property will trigger replacement.
string
The name of the Stream Analytics Job. Changing this forces a new resource to be created.
topicName This property is required. string
The name of the Service Bus Topic.
authenticationMode string
The authentication mode for the Stream Output. Possible values are Msi and ConnectionString. Defaults to ConnectionString.
name Changes to this property will trigger replacement. 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 Topic output.
sharedAccessPolicyKey string
The shared access policy key for the specified shared access policy. Required if authentication_mode is ConnectionString.
sharedAccessPolicyName string
The shared access policy name for the Event Hub, Service Bus Queue, Service Bus Topic, etc. Required if authentication_mode is ConnectionString.
systemPropertyColumns {[key: string]: string}

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.

resource_group_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the Resource Group where the Stream Analytics Job exists. Changing this forces a new resource to be created.
serialization This property is required. OutputServicebusTopicSerializationArgs
A serialization block as defined below.
servicebus_namespace This property is required. str
The namespace that is associated with the desired Event Hub, Service Bus Topic, Service Bus Topic, etc.
stream_analytics_job_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the Stream Analytics Job. Changing this forces a new resource to be created.
topic_name This property is required. str
The name of the Service Bus Topic.
authentication_mode str
The authentication mode for the Stream Output. Possible values are Msi and ConnectionString. Defaults to ConnectionString.
name Changes to this property will trigger replacement. 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 Topic output.
shared_access_policy_key str
The shared access policy key for the specified shared access policy. Required if authentication_mode is ConnectionString.
shared_access_policy_name str
The shared access policy name for the Event Hub, Service Bus Queue, Service Bus Topic, etc. Required if authentication_mode is ConnectionString.
system_property_columns Mapping[str, str]

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.

resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the Resource Group where the Stream Analytics Job exists. Changing this forces a new resource to be created.
serialization This property is required. Property Map
A serialization block as defined below.
servicebusNamespace This property is required. String
The namespace that is associated with the desired Event Hub, Service Bus Topic, Service Bus Topic, etc.
streamAnalyticsJobName
This property is required.
Changes to this property will trigger replacement.
String
The name of the Stream Analytics Job. Changing this forces a new resource to be created.
topicName This property is required. String
The name of the Service Bus Topic.
authenticationMode String
The authentication mode for the Stream Output. Possible values are Msi and ConnectionString. Defaults to ConnectionString.
name Changes to this property will trigger replacement. 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 Topic output.
sharedAccessPolicyKey String
The shared access policy key for the specified shared access policy. Required if authentication_mode is ConnectionString.
sharedAccessPolicyName String
The shared access policy name for the Event Hub, Service Bus Queue, Service Bus Topic, etc. Required if authentication_mode is ConnectionString.
systemPropertyColumns Map<String>

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.

Outputs

All input properties are implicitly available as output properties. Additionally, the OutputServicebusTopic 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 OutputServicebusTopic Resource

Get an existing OutputServicebusTopic 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?: OutputServicebusTopicState, opts?: CustomResourceOptions): OutputServicebusTopic
@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,
        resource_group_name: Optional[str] = None,
        serialization: Optional[OutputServicebusTopicSerializationArgs] = 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,
        topic_name: Optional[str] = None) -> OutputServicebusTopic
func GetOutputServicebusTopic(ctx *Context, name string, id IDInput, state *OutputServicebusTopicState, opts ...ResourceOption) (*OutputServicebusTopic, error)
public static OutputServicebusTopic Get(string name, Input<string> id, OutputServicebusTopicState? state, CustomResourceOptions? opts = null)
public static OutputServicebusTopic get(String name, Output<String> id, OutputServicebusTopicState state, CustomResourceOptions options)
resources:  _:    type: azure:streamanalytics:OutputServicebusTopic    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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.
The following state arguments are supported:
AuthenticationMode string
The authentication mode for the Stream Output. Possible values are Msi and ConnectionString. Defaults to ConnectionString.
Name Changes to this property will trigger replacement. 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 Topic output.
ResourceGroupName Changes to this property will trigger replacement. string
The name of the Resource Group where the Stream Analytics Job exists. Changing this forces a new resource to be created.
Serialization OutputServicebusTopicSerialization
A serialization block as defined below.
ServicebusNamespace string
The namespace that is associated with the desired Event Hub, Service Bus Topic, Service Bus Topic, etc.
SharedAccessPolicyKey string
The shared access policy key for the specified shared access policy. Required if authentication_mode is ConnectionString.
SharedAccessPolicyName string
The shared access policy name for the Event Hub, Service Bus Queue, Service Bus Topic, etc. Required if authentication_mode is ConnectionString.
StreamAnalyticsJobName Changes to this property will trigger replacement. string
The name of the Stream Analytics Job. Changing this forces a new resource to be created.
SystemPropertyColumns Dictionary<string, string>

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.

TopicName string
The name of the Service Bus Topic.
AuthenticationMode string
The authentication mode for the Stream Output. Possible values are Msi and ConnectionString. Defaults to ConnectionString.
Name Changes to this property will trigger replacement. 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 Topic output.
ResourceGroupName Changes to this property will trigger replacement. string
The name of the Resource Group where the Stream Analytics Job exists. Changing this forces a new resource to be created.
Serialization OutputServicebusTopicSerializationArgs
A serialization block as defined below.
ServicebusNamespace string
The namespace that is associated with the desired Event Hub, Service Bus Topic, Service Bus Topic, etc.
SharedAccessPolicyKey string
The shared access policy key for the specified shared access policy. Required if authentication_mode is ConnectionString.
SharedAccessPolicyName string
The shared access policy name for the Event Hub, Service Bus Queue, Service Bus Topic, etc. Required if authentication_mode is ConnectionString.
StreamAnalyticsJobName Changes to this property will trigger replacement. string
The name of the Stream Analytics Job. Changing this forces a new resource to be created.
SystemPropertyColumns map[string]string

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.

TopicName string
The name of the Service Bus Topic.
authenticationMode String
The authentication mode for the Stream Output. Possible values are Msi and ConnectionString. Defaults to ConnectionString.
name Changes to this property will trigger replacement. 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 Topic output.
resourceGroupName Changes to this property will trigger replacement. String
The name of the Resource Group where the Stream Analytics Job exists. Changing this forces a new resource to be created.
serialization OutputServicebusTopicSerialization
A serialization block as defined below.
servicebusNamespace String
The namespace that is associated with the desired Event Hub, Service Bus Topic, Service Bus Topic, etc.
sharedAccessPolicyKey String
The shared access policy key for the specified shared access policy. Required if authentication_mode is ConnectionString.
sharedAccessPolicyName String
The shared access policy name for the Event Hub, Service Bus Queue, Service Bus Topic, etc. Required if authentication_mode is ConnectionString.
streamAnalyticsJobName Changes to this property will trigger replacement. String
The name of the Stream Analytics Job. Changing this forces a new resource to be created.
systemPropertyColumns Map<String,String>

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.

topicName String
The name of the Service Bus Topic.
authenticationMode string
The authentication mode for the Stream Output. Possible values are Msi and ConnectionString. Defaults to ConnectionString.
name Changes to this property will trigger replacement. 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 Topic output.
resourceGroupName Changes to this property will trigger replacement. string
The name of the Resource Group where the Stream Analytics Job exists. Changing this forces a new resource to be created.
serialization OutputServicebusTopicSerialization
A serialization block as defined below.
servicebusNamespace string
The namespace that is associated with the desired Event Hub, Service Bus Topic, Service Bus Topic, etc.
sharedAccessPolicyKey string
The shared access policy key for the specified shared access policy. Required if authentication_mode is ConnectionString.
sharedAccessPolicyName string
The shared access policy name for the Event Hub, Service Bus Queue, Service Bus Topic, etc. Required if authentication_mode is ConnectionString.
streamAnalyticsJobName Changes to this property will trigger replacement. string
The name of the Stream Analytics Job. Changing this forces a new resource to be created.
systemPropertyColumns {[key: string]: string}

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.

topicName string
The name of the Service Bus Topic.
authentication_mode str
The authentication mode for the Stream Output. Possible values are Msi and ConnectionString. Defaults to ConnectionString.
name Changes to this property will trigger replacement. 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 Topic output.
resource_group_name Changes to this property will trigger replacement. str
The name of the Resource Group where the Stream Analytics Job exists. Changing this forces a new resource to be created.
serialization OutputServicebusTopicSerializationArgs
A serialization block as defined below.
servicebus_namespace str
The namespace that is associated with the desired Event Hub, Service Bus Topic, Service Bus Topic, etc.
shared_access_policy_key str
The shared access policy key for the specified shared access policy. Required if authentication_mode is ConnectionString.
shared_access_policy_name str
The shared access policy name for the Event Hub, Service Bus Queue, Service Bus Topic, etc. Required if authentication_mode is ConnectionString.
stream_analytics_job_name Changes to this property will trigger replacement. str
The name of the Stream Analytics Job. Changing this forces a new resource to be created.
system_property_columns Mapping[str, str]

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.

topic_name str
The name of the Service Bus Topic.
authenticationMode String
The authentication mode for the Stream Output. Possible values are Msi and ConnectionString. Defaults to ConnectionString.
name Changes to this property will trigger replacement. 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 Topic output.
resourceGroupName Changes to this property will trigger replacement. String
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 serialization block as defined below.
servicebusNamespace String
The namespace that is associated with the desired Event Hub, Service Bus Topic, Service Bus Topic, etc.
sharedAccessPolicyKey String
The shared access policy key for the specified shared access policy. Required if authentication_mode is ConnectionString.
sharedAccessPolicyName String
The shared access policy name for the Event Hub, Service Bus Queue, Service Bus Topic, etc. Required if authentication_mode is ConnectionString.
streamAnalyticsJobName Changes to this property will trigger replacement. String
The name of the Stream Analytics Job. Changing this forces a new resource to be created.
systemPropertyColumns Map<String>

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.

topicName String
The name of the Service Bus Topic.

Supporting Types

OutputServicebusTopicSerialization
, OutputServicebusTopicSerializationArgs

Type This property is required. string
The serialization format used for outgoing data streams. Possible values are Avro, Csv, Json and Parquet.
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 type is set to Csv or 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 type is set to Csv.

Format string

Specifies the format of the JSON the output will be written in. Possible values are Array and LineSeparated.

NOTE: This is Required and can only be specified when type is set to Json.

Type This property is required. string
The serialization format used for outgoing data streams. Possible values are Avro, Csv, Json and Parquet.
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 type is set to Csv or 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 type is set to Csv.

Format string

Specifies the format of the JSON the output will be written in. Possible values are Array and LineSeparated.

NOTE: This is Required and can only be specified when type is set to Json.

type This property is required. String
The serialization format used for outgoing data streams. Possible values are Avro, Csv, Json and Parquet.
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 type is set to Csv or 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 type is set to Csv.

format String

Specifies the format of the JSON the output will be written in. Possible values are Array and LineSeparated.

NOTE: This is Required and can only be specified when type is set to Json.

type This property is required. string
The serialization format used for outgoing data streams. Possible values are Avro, Csv, Json and Parquet.
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 type is set to Csv or 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 type is set to Csv.

format string

Specifies the format of the JSON the output will be written in. Possible values are Array and LineSeparated.

NOTE: This is Required and can only be specified when type is set to Json.

type This property is required. str
The serialization format used for outgoing data streams. Possible values are Avro, Csv, Json and Parquet.
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 type is set to Csv or 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 type is set to Csv.

format str

Specifies the format of the JSON the output will be written in. Possible values are Array and LineSeparated.

NOTE: This is Required and can only be specified when type is set to Json.

type This property is required. String
The serialization format used for outgoing data streams. Possible values are Avro, Csv, Json and Parquet.
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 type is set to Csv or 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 type is set to Csv.

format String

Specifies the format of the JSON the output will be written in. Possible values are Array and LineSeparated.

NOTE: This is Required and can only be specified when type is set to Json.

Import

Stream Analytics Output ServiceBus Topic’s can be imported using the resource id, e.g.

$ pulumi import azure:streamanalytics/outputServicebusTopic:OutputServicebusTopic example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.StreamAnalytics/streamingJobs/job1/outputs/output1
Copy

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 azurerm Terraform Provider.