azure-native.eventhub.EventHubAuthorizationRule

Single item in a List or Get AuthorizationRule operation API Version: 2017-04-01.

Example Usage

EventHubAuthorizationRuleCreate

using System.Collections.Generic;
using Pulumi;
using AzureNative = Pulumi.AzureNative;

return await Deployment.RunAsync(() => 
{
    var eventHubAuthorizationRule = new AzureNative.EventHub.EventHubAuthorizationRule("eventHubAuthorizationRule", new()
    {
        AuthorizationRuleName = "sdk-Authrules-2513",
        EventHubName = "sdk-EventHub-532",
        NamespaceName = "sdk-Namespace-960",
        ResourceGroupName = "ArunMonocle",
        Rights = new[]
        {
            "Listen",
            "Send",
        },
    });

});
package main

import (
	eventhub "github.com/pulumi/pulumi-azure-native/sdk/go/azure/eventhub"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := eventhub.NewEventHubAuthorizationRule(ctx, "eventHubAuthorizationRule", &eventhub.EventHubAuthorizationRuleArgs{
			AuthorizationRuleName: pulumi.String("sdk-Authrules-2513"),
			EventHubName:          pulumi.String("sdk-EventHub-532"),
			NamespaceName:         pulumi.String("sdk-Namespace-960"),
			ResourceGroupName:     pulumi.String("ArunMonocle"),
			Rights: pulumi.StringArray{
				pulumi.String("Listen"),
				pulumi.String("Send"),
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.eventhub.EventHubAuthorizationRule;
import com.pulumi.azurenative.eventhub.EventHubAuthorizationRuleArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;

public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }

    public static void stack(Context ctx) {
        var eventHubAuthorizationRule = new EventHubAuthorizationRule("eventHubAuthorizationRule", EventHubAuthorizationRuleArgs.builder()        
            .authorizationRuleName("sdk-Authrules-2513")
            .eventHubName("sdk-EventHub-532")
            .namespaceName("sdk-Namespace-960")
            .resourceGroupName("ArunMonocle")
            .rights(            
                "Listen",
                "Send")
            .build());

    }
}
import pulumi
import pulumi_azure_native as azure_native

event_hub_authorization_rule = azure_native.eventhub.EventHubAuthorizationRule("eventHubAuthorizationRule",
    authorization_rule_name="sdk-Authrules-2513",
    event_hub_name="sdk-EventHub-532",
    namespace_name="sdk-Namespace-960",
    resource_group_name="ArunMonocle",
    rights=[
        "Listen",
        "Send",
    ])
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";

const eventHubAuthorizationRule = new azure_native.eventhub.EventHubAuthorizationRule("eventHubAuthorizationRule", {
    authorizationRuleName: "sdk-Authrules-2513",
    eventHubName: "sdk-EventHub-532",
    namespaceName: "sdk-Namespace-960",
    resourceGroupName: "ArunMonocle",
    rights: [
        "Listen",
        "Send",
    ],
});
resources:
  eventHubAuthorizationRule:
    type: azure-native:eventhub:EventHubAuthorizationRule
    properties:
      authorizationRuleName: sdk-Authrules-2513
      eventHubName: sdk-EventHub-532
      namespaceName: sdk-Namespace-960
      resourceGroupName: ArunMonocle
      rights:
        - Listen
        - Send

Create EventHubAuthorizationRule Resource

new EventHubAuthorizationRule(name: string, args: EventHubAuthorizationRuleArgs, opts?: CustomResourceOptions);
@overload
def EventHubAuthorizationRule(resource_name: str,
                              opts: Optional[ResourceOptions] = None,
                              authorization_rule_name: Optional[str] = None,
                              event_hub_name: Optional[str] = None,
                              namespace_name: Optional[str] = None,
                              resource_group_name: Optional[str] = None,
                              rights: Optional[Sequence[Union[str, AccessRights]]] = None)
@overload
def EventHubAuthorizationRule(resource_name: str,
                              args: EventHubAuthorizationRuleArgs,
                              opts: Optional[ResourceOptions] = None)
func NewEventHubAuthorizationRule(ctx *Context, name string, args EventHubAuthorizationRuleArgs, opts ...ResourceOption) (*EventHubAuthorizationRule, error)
public EventHubAuthorizationRule(string name, EventHubAuthorizationRuleArgs args, CustomResourceOptions? opts = null)
public EventHubAuthorizationRule(String name, EventHubAuthorizationRuleArgs args)
public EventHubAuthorizationRule(String name, EventHubAuthorizationRuleArgs args, CustomResourceOptions options)
type: azure-native:eventhub:EventHubAuthorizationRule
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

name string
The unique name of the resource.
args EventHubAuthorizationRuleArgs
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 EventHubAuthorizationRuleArgs
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 EventHubAuthorizationRuleArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name string
The unique name of the resource.
args EventHubAuthorizationRuleArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name String
The unique name of the resource.
args EventHubAuthorizationRuleArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

EventHubAuthorizationRule Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

Inputs

The EventHubAuthorizationRule resource accepts the following input properties:

EventHubName string

The Event Hub name

NamespaceName string

The Namespace name

ResourceGroupName string

Name of the resource group within the azure subscription.

Rights List<Union<string, Pulumi.AzureNative.EventHub.AccessRights>>

The rights associated with the rule.

AuthorizationRuleName string

The authorization rule name.

EventHubName string

The Event Hub name

NamespaceName string

The Namespace name

ResourceGroupName string

Name of the resource group within the azure subscription.

Rights []string

The rights associated with the rule.

AuthorizationRuleName string

The authorization rule name.

eventHubName String

The Event Hub name

namespaceName String

The Namespace name

resourceGroupName String

Name of the resource group within the azure subscription.

rights List<Either<String,AccessRights>>

The rights associated with the rule.

authorizationRuleName String

The authorization rule name.

eventHubName string

The Event Hub name

namespaceName string

The Namespace name

resourceGroupName string

Name of the resource group within the azure subscription.

rights (string | AccessRights)[]

The rights associated with the rule.

authorizationRuleName string

The authorization rule name.

event_hub_name str

The Event Hub name

namespace_name str

The Namespace name

resource_group_name str

Name of the resource group within the azure subscription.

rights Sequence[Union[str, AccessRights]]

The rights associated with the rule.

authorization_rule_name str

The authorization rule name.

eventHubName String

The Event Hub name

namespaceName String

The Namespace name

resourceGroupName String

Name of the resource group within the azure subscription.

rights List<String | "Manage" | "Send" | "Listen">

The rights associated with the rule.

authorizationRuleName String

The authorization rule name.

Outputs

All input properties are implicitly available as output properties. Additionally, the EventHubAuthorizationRule resource produces the following output properties:

Id string

The provider-assigned unique ID for this managed resource.

Name string

The name of the resource

Type string

The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

Id string

The provider-assigned unique ID for this managed resource.

Name string

The name of the resource

Type string

The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

id String

The provider-assigned unique ID for this managed resource.

name String

The name of the resource

type String

The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

id string

The provider-assigned unique ID for this managed resource.

name string

The name of the resource

type string

The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

id str

The provider-assigned unique ID for this managed resource.

name str

The name of the resource

type str

The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

id String

The provider-assigned unique ID for this managed resource.

name String

The name of the resource

type String

The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

Supporting Types

AccessRights

Manage
Manage
Send
Send
Listen
Listen
AccessRightsManage
Manage
AccessRightsSend
Send
AccessRightsListen
Listen
Manage
Manage
Send
Send
Listen
Listen
Manage
Manage
Send
Send
Listen
Listen
MANAGE
Manage
SEND
Send
LISTEN
Listen
"Manage"
Manage
"Send"
Send
"Listen"
Listen

Import

An existing resource can be imported using its type token, name, and identifier, e.g.

$ pulumi import azure-native:eventhub:EventHubAuthorizationRule sdk-Authrules-2513 /subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/ArunMonocle/providers/Microsoft.EventHub/namespaces/sdk-Namespace-960/eventhubs/sdk-EventHub-532/authorizationRules/sdk-Authrules-2513 

Package Details

Repository
Azure Native pulumi/pulumi-azure-native
License
Apache-2.0