Show / Hide Table of Contents

Class OutputEventHub

Manages a Stream Analytics Output to an EventHub.

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 exampleEventHubNamespace = new Azure.EventHub.EventHubNamespace("exampleEventHubNamespace", new Azure.EventHub.EventHubNamespaceArgs
    {
        Location = exampleResourceGroup.Apply(exampleResourceGroup => exampleResourceGroup.Location),
        ResourceGroupName = exampleResourceGroup.Apply(exampleResourceGroup => exampleResourceGroup.Name),
        Sku = "Standard",
        Capacity = 1,
    });
    var exampleEventHub = new Azure.EventHub.EventHub("exampleEventHub", new Azure.EventHub.EventHubArgs
    {
        NamespaceName = exampleEventHubNamespace.Name,
        ResourceGroupName = exampleResourceGroup.Apply(exampleResourceGroup => exampleResourceGroup.Name),
        PartitionCount = 2,
        MessageRetention = 1,
    });
    var exampleOutputEventHub = new Azure.StreamAnalytics.OutputEventHub("exampleOutputEventHub", new Azure.StreamAnalytics.OutputEventHubArgs
    {
        StreamAnalyticsJobName = exampleJob.Apply(exampleJob => exampleJob.Name),
        ResourceGroupName = exampleJob.Apply(exampleJob => exampleJob.ResourceGroupName),
        EventhubName = exampleEventHub.Name,
        ServicebusNamespace = exampleEventHubNamespace.Name,
        SharedAccessPolicyKey = exampleEventHubNamespace.DefaultPrimaryKey,
        SharedAccessPolicyName = "RootManageSharedAccessKey",
        Serialization = new Azure.StreamAnalytics.Inputs.OutputEventHubSerializationArgs
        {
            Type = "Avro",
        },
    });
}

}
Inheritance
System.Object
Resource
CustomResource
OutputEventHub
Inherited Members
CustomResource.Id
Resource.GetResourceType()
Resource.GetResourceName()
Resource.Urn
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Azure.StreamAnalytics
Assembly: Pulumi.Azure.dll
Syntax
public class OutputEventHub : CustomResource

Constructors

View Source

OutputEventHub(String, OutputEventHubArgs, CustomResourceOptions)

Create a OutputEventHub resource with the given unique name, arguments, and options.

Declaration
public OutputEventHub(string name, OutputEventHubArgs args, CustomResourceOptions options = null)
Parameters
Type Name Description
System.String name

The unique name of the resource

OutputEventHubArgs args

The arguments used to populate this resource's properties

CustomResourceOptions options

A bag of options that control this resource's behavior

Properties

View Source

EventhubName

The name of the Event Hub.

Declaration
public Output<string> EventhubName { get; }
Property Value
Type Description
Output<System.String>
View Source

Name

The name of the Stream Output. Changing this forces a new resource to be created.

Declaration
public Output<string> Name { get; }
Property Value
Type Description
Output<System.String>
View Source

ResourceGroupName

The name of the Resource Group where the Stream Analytics Job exists. Changing this forces a new resource to be created.

Declaration
public Output<string> ResourceGroupName { get; }
Property Value
Type Description
Output<System.String>
View Source

Serialization

A serialization block as defined below.

Declaration
public Output<OutputEventHubSerialization> Serialization { get; }
Property Value
Type Description
Output<OutputEventHubSerialization>
View Source

ServicebusNamespace

The namespace that is associated with the desired Event Hub, Service Bus Queue, Service Bus Topic, etc.

Declaration
public Output<string> ServicebusNamespace { get; }
Property Value
Type Description
Output<System.String>
View Source

SharedAccessPolicyKey

The shared access policy key for the specified shared access policy.

Declaration
public Output<string> SharedAccessPolicyKey { get; }
Property Value
Type Description
Output<System.String>
View Source

SharedAccessPolicyName

The shared access policy name for the Event Hub, Service Bus Queue, Service Bus Topic, etc.

Declaration
public Output<string> SharedAccessPolicyName { get; }
Property Value
Type Description
Output<System.String>
View Source

StreamAnalyticsJobName

The name of the Stream Analytics Job. Changing this forces a new resource to be created.

Declaration
public Output<string> StreamAnalyticsJobName { get; }
Property Value
Type Description
Output<System.String>

Methods

View Source

Get(String, Input<String>, OutputEventHubState, CustomResourceOptions)

Get an existing OutputEventHub resource's state with the given name, ID, and optional extra properties used to qualify the lookup.

Declaration
public static OutputEventHub Get(string name, Input<string> id, OutputEventHubState state = null, CustomResourceOptions options = null)
Parameters
Type Name Description
System.String name

The unique name of the resulting resource.

Input<System.String> id

The unique provider ID of the resource to lookup.

OutputEventHubState state

Any extra arguments used during the lookup.

CustomResourceOptions options

A bag of options that control this resource's behavior

Returns
Type Description
OutputEventHub
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.