1. Packages
  2. Azure Native
  3. API Docs
  4. eventhub
  5. EventHubAuthorizationRule
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.9.0 published on Wednesday, Sep 27, 2023 by Pulumi

azure-native.eventhub.EventHubAuthorizationRule

Explore with Pulumi AI

azure-native logo
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.9.0 published on Wednesday, Sep 27, 2023 by Pulumi

    Single item in a List or Get AuthorizationRule operation Azure REST API version: 2022-10-01-preview. Prior API version in Azure Native 1.x: 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 (
    	"github.com/pulumi/pulumi-azure-native-sdk/eventhub/v2"
    	"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.

    Location string

    The geo-location where the resource lives

    Name string

    The name of the resource

    SystemData Pulumi.AzureNative.EventHub.Outputs.SystemDataResponse

    The system meta data relating to this resource.

    Type string

    The type of the resource. E.g. "Microsoft.EventHub/Namespaces" or "Microsoft.EventHub/Namespaces/EventHubs"

    Id string

    The provider-assigned unique ID for this managed resource.

    Location string

    The geo-location where the resource lives

    Name string

    The name of the resource

    SystemData SystemDataResponse

    The system meta data relating to this resource.

    Type string

    The type of the resource. E.g. "Microsoft.EventHub/Namespaces" or "Microsoft.EventHub/Namespaces/EventHubs"

    id String

    The provider-assigned unique ID for this managed resource.

    location String

    The geo-location where the resource lives

    name String

    The name of the resource

    systemData SystemDataResponse

    The system meta data relating to this resource.

    type String

    The type of the resource. E.g. "Microsoft.EventHub/Namespaces" or "Microsoft.EventHub/Namespaces/EventHubs"

    id string

    The provider-assigned unique ID for this managed resource.

    location string

    The geo-location where the resource lives

    name string

    The name of the resource

    systemData SystemDataResponse

    The system meta data relating to this resource.

    type string

    The type of the resource. E.g. "Microsoft.EventHub/Namespaces" or "Microsoft.EventHub/Namespaces/EventHubs"

    id str

    The provider-assigned unique ID for this managed resource.

    location str

    The geo-location where the resource lives

    name str

    The name of the resource

    system_data SystemDataResponse

    The system meta data relating to this resource.

    type str

    The type of the resource. E.g. "Microsoft.EventHub/Namespaces" or "Microsoft.EventHub/Namespaces/EventHubs"

    id String

    The provider-assigned unique ID for this managed resource.

    location String

    The geo-location where the resource lives

    name String

    The name of the resource

    systemData Property Map

    The system meta data relating to this resource.

    type String

    The type of the resource. E.g. "Microsoft.EventHub/Namespaces" or "Microsoft.EventHub/Namespaces/EventHubs"

    Supporting Types

    AccessRights, AccessRightsArgs

    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

    SystemDataResponse, SystemDataResponseArgs

    CreatedAt string

    The timestamp of resource creation (UTC).

    CreatedBy string

    The identity that created the resource.

    CreatedByType string

    The type of identity that created the resource.

    LastModifiedAt string

    The type of identity that last modified the resource.

    LastModifiedBy string

    The identity that last modified the resource.

    LastModifiedByType string

    The type of identity that last modified the resource.

    CreatedAt string

    The timestamp of resource creation (UTC).

    CreatedBy string

    The identity that created the resource.

    CreatedByType string

    The type of identity that created the resource.

    LastModifiedAt string

    The type of identity that last modified the resource.

    LastModifiedBy string

    The identity that last modified the resource.

    LastModifiedByType string

    The type of identity that last modified the resource.

    createdAt String

    The timestamp of resource creation (UTC).

    createdBy String

    The identity that created the resource.

    createdByType String

    The type of identity that created the resource.

    lastModifiedAt String

    The type of identity that last modified the resource.

    lastModifiedBy String

    The identity that last modified the resource.

    lastModifiedByType String

    The type of identity that last modified the resource.

    createdAt string

    The timestamp of resource creation (UTC).

    createdBy string

    The identity that created the resource.

    createdByType string

    The type of identity that created the resource.

    lastModifiedAt string

    The type of identity that last modified the resource.

    lastModifiedBy string

    The identity that last modified the resource.

    lastModifiedByType string

    The type of identity that last modified the resource.

    created_at str

    The timestamp of resource creation (UTC).

    created_by str

    The identity that created the resource.

    created_by_type str

    The type of identity that created the resource.

    last_modified_at str

    The type of identity that last modified the resource.

    last_modified_by str

    The identity that last modified the resource.

    last_modified_by_type str

    The type of identity that last modified the resource.

    createdAt String

    The timestamp of resource creation (UTC).

    createdBy String

    The identity that created the resource.

    createdByType String

    The type of identity that created the resource.

    lastModifiedAt String

    The type of identity that last modified the resource.

    lastModifiedBy String

    The identity that last modified the resource.

    lastModifiedByType String

    The type of identity that last modified the resource.

    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/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.EventHub/namespaces/{namespaceName}/eventhubs/{eventHubName}/authorizationRules/{authorizationRuleName} 
    

    Package Details

    Repository
    Azure Native pulumi/pulumi-azure-native
    License
    Apache-2.0
    azure-native logo
    This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
    Azure Native v2.9.0 published on Wednesday, Sep 27, 2023 by Pulumi