OutputServicebusTopic
Manages a Stream Analytics Output to a ServiceBus Topic.
Example Usage
using Pulumi;
using Azure = Pulumi.Azure;
class MyStack : Stack
{
public MyStack()
{
var exampleResourceGroup = Output.Create(Azure.Core.GetResourceGroup.InvokeAsync(new Azure.Core.GetResourceGroupArgs
{
Name = "example-resources",
}));
var exampleJob = Output.Create(Azure.StreamAnalytics.GetJob.InvokeAsync(new Azure.StreamAnalytics.GetJobArgs
{
Name = "example-job",
ResourceGroupName = azurerm_resource_group.Example.Name,
}));
var exampleNamespace = new Azure.ServiceBus.Namespace("exampleNamespace", new Azure.ServiceBus.NamespaceArgs
{
Location = exampleResourceGroup.Apply(exampleResourceGroup => exampleResourceGroup.Location),
ResourceGroupName = exampleResourceGroup.Apply(exampleResourceGroup => exampleResourceGroup.Name),
Sku = "Standard",
});
var exampleTopic = new Azure.ServiceBus.Topic("exampleTopic", new Azure.ServiceBus.TopicArgs
{
ResourceGroupName = exampleResourceGroup.Apply(exampleResourceGroup => exampleResourceGroup.Name),
NamespaceName = exampleNamespace.Name,
EnablePartitioning = true,
});
var exampleOutputServicebusTopic = new Azure.StreamAnalytics.OutputServicebusTopic("exampleOutputServicebusTopic", new Azure.StreamAnalytics.OutputServicebusTopicArgs
{
StreamAnalyticsJobName = exampleJob.Apply(exampleJob => exampleJob.Name),
ResourceGroupName = exampleJob.Apply(exampleJob => exampleJob.ResourceGroupName),
TopicName = exampleTopic.Name,
ServicebusNamespace = exampleNamespace.Name,
SharedAccessPolicyKey = exampleNamespace.DefaultPrimaryKey,
SharedAccessPolicyName = "RootManageSharedAccessKey",
Serialization = new Azure.StreamAnalytics.Inputs.OutputServicebusTopicSerializationArgs
{
Format = "Avro",
},
});
}
}
package main
import (
"github.com/pulumi/pulumi-azure/sdk/v3/go/azure/core"
"github.com/pulumi/pulumi-azure/sdk/v3/go/azure/servicebus"
"github.com/pulumi/pulumi-azure/sdk/v3/go/azure/streamanalytics"
"github.com/pulumi/pulumi/sdk/v2/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
exampleResourceGroup, err := core.LookupResourceGroup(ctx, &core.LookupResourceGroupArgs{
Name: "example-resources",
}, nil)
if err != nil {
return err
}
exampleJob, err := streamanalytics.LookupJob(ctx, &streamanalytics.LookupJobArgs{
Name: "example-job",
ResourceGroupName: azurerm_resource_group.Example.Name,
}, nil)
if err != nil {
return err
}
exampleNamespace, err := servicebus.NewNamespace(ctx, "exampleNamespace", &servicebus.NamespaceArgs{
Location: pulumi.String(exampleResourceGroup.Location),
ResourceGroupName: pulumi.String(exampleResourceGroup.Name),
Sku: pulumi.String("Standard"),
})
if err != nil {
return err
}
exampleTopic, err := servicebus.NewTopic(ctx, "exampleTopic", &servicebus.TopicArgs{
ResourceGroupName: pulumi.String(exampleResourceGroup.Name),
NamespaceName: exampleNamespace.Name,
EnablePartitioning: pulumi.Bool(true),
})
if err != nil {
return err
}
_, err = streamanalytics.NewOutputServicebusTopic(ctx, "exampleOutputServicebusTopic", &streamanalytics.OutputServicebusTopicArgs{
StreamAnalyticsJobName: pulumi.String(exampleJob.Name),
ResourceGroupName: pulumi.String(exampleJob.ResourceGroupName),
TopicName: exampleTopic.Name,
ServicebusNamespace: exampleNamespace.Name,
SharedAccessPolicyKey: exampleNamespace.DefaultPrimaryKey,
SharedAccessPolicyName: pulumi.String("RootManageSharedAccessKey"),
Serialization: &streamanalytics.OutputServicebusTopicSerializationArgs{
Format: pulumi.String("Avro"),
},
})
if err != nil {
return err
}
return nil
})
}import pulumi
import pulumi_azure as azure
example_resource_group = azure.core.get_resource_group(name="example-resources")
example_job = azure.streamanalytics.get_job(name="example-job",
resource_group_name=azurerm_resource_group["example"]["name"])
example_namespace = azure.servicebus.Namespace("exampleNamespace",
location=example_resource_group.location,
resource_group_name=example_resource_group.name,
sku="Standard")
example_topic = azure.servicebus.Topic("exampleTopic",
resource_group_name=example_resource_group.name,
namespace_name=example_namespace.name,
enable_partitioning=True)
example_output_servicebus_topic = azure.streamanalytics.OutputServicebusTopic("exampleOutputServicebusTopic",
stream_analytics_job_name=example_job.name,
resource_group_name=example_job.resource_group_name,
topic_name=example_topic.name,
servicebus_namespace=example_namespace.name,
shared_access_policy_key=example_namespace.default_primary_key,
shared_access_policy_name="RootManageSharedAccessKey",
serialization={
"format": "Avro",
})import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";
const exampleResourceGroup = azure.core.getResourceGroup({
name: "example-resources",
});
const exampleJob = azure.streamanalytics.getJob({
name: "example-job",
resourceGroupName: azurerm_resource_group.example.name,
});
const exampleNamespace = new azure.servicebus.Namespace("exampleNamespace", {
location: exampleResourceGroup.then(exampleResourceGroup => exampleResourceGroup.location),
resourceGroupName: exampleResourceGroup.then(exampleResourceGroup => exampleResourceGroup.name),
sku: "Standard",
});
const exampleTopic = new azure.servicebus.Topic("exampleTopic", {
resourceGroupName: exampleResourceGroup.then(exampleResourceGroup => exampleResourceGroup.name),
namespaceName: exampleNamespace.name,
enablePartitioning: true,
});
const exampleOutputServicebusTopic = new azure.streamanalytics.OutputServicebusTopic("exampleOutputServicebusTopic", {
streamAnalyticsJobName: exampleJob.then(exampleJob => exampleJob.name),
resourceGroupName: exampleJob.then(exampleJob => exampleJob.resourceGroupName),
topicName: exampleTopic.name,
servicebusNamespace: exampleNamespace.name,
sharedAccessPolicyKey: exampleNamespace.defaultPrimaryKey,
sharedAccessPolicyName: "RootManageSharedAccessKey",
serialization: {
format: "Avro",
},
});Create a OutputServicebusTopic Resource
new OutputServicebusTopic(name: string, args: OutputServicebusTopicArgs, opts?: CustomResourceOptions);def OutputServicebusTopic(resource_name, opts=None, name=None, resource_group_name=None, serialization=None, servicebus_namespace=None, shared_access_policy_key=None, shared_access_policy_name=None, stream_analytics_job_name=None, topic_name=None, __props__=None);func NewOutputServicebusTopic(ctx *Context, name string, args OutputServicebusTopicArgs, opts ...ResourceOption) (*OutputServicebusTopic, error)public OutputServicebusTopic(string name, OutputServicebusTopicArgs args, CustomResourceOptions? opts = null)- name string
- The unique name of the resource.
- args OutputServicebusTopicArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- opts ResourceOptions
- A bag of options that control this resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args OutputServicebusTopicArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args OutputServicebusTopicArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
OutputServicebusTopic Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Programming Model docs.
Inputs
The OutputServicebusTopic resource accepts the following input properties:
- Resource
Group stringName The name of the Resource Group where the Stream Analytics Job exists. Changing this forces a new resource to be created.
- Serialization
Output
Servicebus Topic Serialization Args A
serializationblock as defined below.- Servicebus
Namespace string The namespace that is associated with the desired Event Hub, Service Bus Topic, Service Bus Topic, etc.
- string
The shared access policy key for the specified shared access policy.
- string
The shared access policy name for the Event Hub, Service Bus Queue, Service Bus Topic, etc.
- Stream
Analytics stringJob Name The name of the Stream Analytics Job. Changing this forces a new resource to be created.
- Topic
Name string The name of the Service Bus Topic.
- Name string
The name of the Stream Output. Changing this forces a new resource to be created.
- Resource
Group stringName The name of the Resource Group where the Stream Analytics Job exists. Changing this forces a new resource to be created.
- Serialization
Output
Servicebus Topic Serialization A
serializationblock as defined below.- Servicebus
Namespace string The namespace that is associated with the desired Event Hub, Service Bus Topic, Service Bus Topic, etc.
- string
The shared access policy key for the specified shared access policy.
- string
The shared access policy name for the Event Hub, Service Bus Queue, Service Bus Topic, etc.
- Stream
Analytics stringJob Name The name of the Stream Analytics Job. Changing this forces a new resource to be created.
- Topic
Name string The name of the Service Bus Topic.
- Name string
The name of the Stream Output. Changing this forces a new resource to be created.
- resource
Group stringName The name of the Resource Group where the Stream Analytics Job exists. Changing this forces a new resource to be created.
- serialization
Output
Servicebus Topic Serialization A
serializationblock as defined below.- servicebus
Namespace string The namespace that is associated with the desired Event Hub, Service Bus Topic, Service Bus Topic, etc.
- string
The shared access policy key for the specified shared access policy.
- string
The shared access policy name for the Event Hub, Service Bus Queue, Service Bus Topic, etc.
- stream
Analytics stringJob Name The name of the Stream Analytics Job. Changing this forces a new resource to be created.
- topic
Name string The name of the Service Bus Topic.
- name string
The name of the Stream Output. Changing this forces a new resource to be created.
- 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
Dict[Output
Servicebus Topic Serialization] A
serializationblock as defined below.- servicebus_
namespace str The namespace that is associated with the desired Event Hub, Service Bus Topic, Service Bus Topic, etc.
- str
The shared access policy key for the specified shared access policy.
- str
The shared access policy name for the 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.
- topic_
name str The name of the Service Bus Topic.
- name str
The name of the Stream Output. Changing this forces a new resource to be created.
Outputs
All input properties are implicitly available as output properties. Additionally, the OutputServicebusTopic resource produces the following output properties:
Look up an 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): OutputServicebusTopicstatic get(resource_name, id, opts=None, name=None, resource_group_name=None, serialization=None, servicebus_namespace=None, shared_access_policy_key=None, shared_access_policy_name=None, stream_analytics_job_name=None, topic_name=None, __props__=None);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)- 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.
The following state arguments are supported:
- Name string
The name of the Stream Output. Changing this forces a new resource to be created.
- Resource
Group stringName The name of the Resource Group where the Stream Analytics Job exists. Changing this forces a new resource to be created.
- Serialization
Output
Servicebus Topic Serialization Args A
serializationblock as defined below.- Servicebus
Namespace string The namespace that is associated with the desired Event Hub, Service Bus Topic, Service Bus Topic, etc.
- string
The shared access policy key for the specified shared access policy.
- string
The shared access policy name for the Event Hub, Service Bus Queue, Service Bus Topic, etc.
- Stream
Analytics stringJob Name The name of the Stream Analytics Job. Changing this forces a new resource to be created.
- Topic
Name string The name of the Service Bus Topic.
- Name string
The name of the Stream Output. Changing this forces a new resource to be created.
- Resource
Group stringName The name of the Resource Group where the Stream Analytics Job exists. Changing this forces a new resource to be created.
- Serialization
Output
Servicebus Topic Serialization A
serializationblock as defined below.- Servicebus
Namespace string The namespace that is associated with the desired Event Hub, Service Bus Topic, Service Bus Topic, etc.
- string
The shared access policy key for the specified shared access policy.
- string
The shared access policy name for the Event Hub, Service Bus Queue, Service Bus Topic, etc.
- Stream
Analytics stringJob Name The name of the Stream Analytics Job. Changing this forces a new resource to be created.
- Topic
Name string The name of the Service Bus Topic.
- name string
The name of the Stream Output. Changing this forces a new resource to be created.
- resource
Group stringName The name of the Resource Group where the Stream Analytics Job exists. Changing this forces a new resource to be created.
- serialization
Output
Servicebus Topic Serialization A
serializationblock as defined below.- servicebus
Namespace string The namespace that is associated with the desired Event Hub, Service Bus Topic, Service Bus Topic, etc.
- string
The shared access policy key for the specified shared access policy.
- string
The shared access policy name for the Event Hub, Service Bus Queue, Service Bus Topic, etc.
- stream
Analytics stringJob Name The name of the Stream Analytics Job. Changing this forces a new resource to be created.
- topic
Name string The name of the Service Bus Topic.
- name str
The name of the Stream Output. Changing this forces a new resource to be created.
- 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
Dict[Output
Servicebus Topic Serialization] A
serializationblock as defined below.- servicebus_
namespace str The namespace that is associated with the desired Event Hub, Service Bus Topic, Service Bus Topic, etc.
- str
The shared access policy key for the specified shared access policy.
- str
The shared access policy name for the 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.
- topic_
name str The name of the Service Bus Topic.
Supporting Types
OutputServicebusTopicSerialization
- Type string
The serialization format used for outgoing data streams. Possible values are
Avro,CsvandJson.- 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.- Field
Delimiter string The delimiter that will be used to separate comma-separated value (CSV) records. Possible values are (space),
,(comma), (tab),|(pipe) and;.- Format string
Specifies the format of the JSON the output will be written in. Possible values are
ArrayandLineSeparated.
- Type string
The serialization format used for outgoing data streams. Possible values are
Avro,CsvandJson.- 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.- Field
Delimiter string The delimiter that will be used to separate comma-separated value (CSV) records. Possible values are (space),
,(comma), (tab),|(pipe) and;.- Format string
Specifies the format of the JSON the output will be written in. Possible values are
ArrayandLineSeparated.
- type string
The serialization format used for outgoing data streams. Possible values are
Avro,CsvandJson.- 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.- field
Delimiter string The delimiter that will be used to separate comma-separated value (CSV) records. Possible values are (space),
,(comma), (tab),|(pipe) and;.- format string
Specifies the format of the JSON the output will be written in. Possible values are
ArrayandLineSeparated.
- type str
The serialization format used for outgoing data streams. Possible values are
Avro,CsvandJson.- 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.- field
Delimiter str The delimiter that will be used to separate comma-separated value (CSV) records. Possible values are (space),
,(comma), (tab),|(pipe) and;.- format str
Specifies the format of the JSON the output will be written in. Possible values are
ArrayandLineSeparated.
Package Details
- Repository
- https://github.com/pulumi/pulumi-azure
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
azurermTerraform Provider.