azure-native.eventhub.EventHubAuthorizationRule
Explore with Pulumi AI
Single item in a List or Get AuthorizationRule operation API Version: 2017-04-01.
Example Usage
EventHubAuthorizationRuleCreate
using System.Collections.Generic;
using System.Linq;
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/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 * 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",
    ],
});
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",
    ])
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
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new EventHubAuthorizationRule(name: string, args: EventHubAuthorizationRuleArgs, opts?: CustomResourceOptions);@overload
def EventHubAuthorizationRule(resource_name: str,
                              args: EventHubAuthorizationRuleArgs,
                              opts: Optional[ResourceOptions] = None)
@overload
def EventHubAuthorizationRule(resource_name: str,
                              opts: Optional[ResourceOptions] = 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,
                              authorization_rule_name: Optional[str] = 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.
Parameters
- 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.
Constructor example
The following reference example uses placeholder values for all input properties.
var eventHubAuthorizationRuleResource = new AzureNative.Eventhub.EventHubAuthorizationRule("eventHubAuthorizationRuleResource", new()
{
    EventHubName = "string",
    NamespaceName = "string",
    ResourceGroupName = "string",
    Rights = new[]
    {
        "string",
    },
    AuthorizationRuleName = "string",
});
example, err := eventhub.NewEventHubAuthorizationRule(ctx, "eventHubAuthorizationRuleResource", &eventhub.EventHubAuthorizationRuleArgs{
	EventHubName:      "string",
	NamespaceName:     "string",
	ResourceGroupName: "string",
	Rights: []string{
		"string",
	},
	AuthorizationRuleName: "string",
})
var eventHubAuthorizationRuleResource = new EventHubAuthorizationRule("eventHubAuthorizationRuleResource", EventHubAuthorizationRuleArgs.builder()
    .eventHubName("string")
    .namespaceName("string")
    .resourceGroupName("string")
    .rights("string")
    .authorizationRuleName("string")
    .build());
event_hub_authorization_rule_resource = azure_native.eventhub.EventHubAuthorizationRule("eventHubAuthorizationRuleResource",
    event_hub_name=string,
    namespace_name=string,
    resource_group_name=string,
    rights=[string],
    authorization_rule_name=string)
const eventHubAuthorizationRuleResource = new azure_native.eventhub.EventHubAuthorizationRule("eventHubAuthorizationRuleResource", {
    eventHubName: "string",
    namespaceName: "string",
    resourceGroupName: "string",
    rights: ["string"],
    authorizationRuleName: "string",
});
type: azure-native:eventhub:EventHubAuthorizationRule
properties:
    authorizationRuleName: string
    eventHubName: string
    namespaceName: string
    resourceGroupName: string
    rights:
        - string
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
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The EventHubAuthorizationRule resource accepts the following input properties:
- EventHub stringName 
- The Event Hub name
- NamespaceName string
- The Namespace name
- ResourceGroup stringName 
- Name of the resource group within the azure subscription.
- Rights
List<Union<string, Pulumi.Azure Native. Event Hub. Access Rights>> 
- The rights associated with the rule.
- string
- The authorization rule name.
- EventHub stringName 
- The Event Hub name
- NamespaceName string
- The Namespace name
- ResourceGroup stringName 
- Name of the resource group within the azure subscription.
- Rights []string
- The rights associated with the rule.
- string
- The authorization rule name.
- eventHub StringName 
- The Event Hub name
- namespaceName String
- The Namespace name
- resourceGroup StringName 
- Name of the resource group within the azure subscription.
- rights
List<Either<String,AccessRights>> 
- The rights associated with the rule.
- String
- The authorization rule name.
- eventHub stringName 
- The Event Hub name
- namespaceName string
- The Namespace name
- resourceGroup stringName 
- Name of the resource group within the azure subscription.
- rights
(string | AccessRights)[] 
- The rights associated with the rule.
- string
- The authorization rule name.
- event_hub_ strname 
- The Event Hub name
- namespace_name str
- The Namespace name
- resource_group_ strname 
- Name of the resource group within the azure subscription.
- rights
Sequence[Union[str, AccessRights]] 
- The rights associated with the rule.
- str
- The authorization rule name.
- eventHub StringName 
- The Event Hub name
- namespaceName String
- The Namespace name
- resourceGroup StringName 
- Name of the resource group within the azure subscription.
- rights List<String | "Manage" | "Send" | "Listen">
- The rights associated with the rule.
- String
- The authorization rule name.
Outputs
All input properties are implicitly available as output properties. Additionally, the EventHubAuthorizationRule resource produces the following output properties:
Supporting Types
AccessRights, AccessRightsArgs    
- Manage
- Manage
- Send
- Send
- Listen
- Listen
- AccessRights Manage 
- Manage
- AccessRights Send 
- Send
- AccessRights Listen 
- 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 
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- azure-native-v1 pulumi/pulumi-azure-native
- License
- Apache-2.0