1. Packages
  2. Azure Native
  3. API Docs
  4. eventgrid
  5. PermissionBinding
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.38.0 published on Monday, Apr 22, 2024 by Pulumi

azure-native.eventgrid.PermissionBinding

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.38.0 published on Monday, Apr 22, 2024 by Pulumi

    The Permission binding resource. Azure REST API version: 2023-06-01-preview.

    Other available API versions: 2023-12-15-preview.

    Example Usage

    PermissionBindings_CreateOrUpdate

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var permissionBinding = new AzureNative.EventGrid.PermissionBinding("permissionBinding", new()
        {
            ClientGroupName = "exampleClientGroupName1",
            NamespaceName = "exampleNamespaceName1",
            Permission = AzureNative.EventGrid.PermissionType.Publisher,
            PermissionBindingName = "examplePermissionBindingName1",
            ResourceGroupName = "examplerg",
            TopicSpaceName = "exampleTopicSpaceName1",
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure-native-sdk/eventgrid/v2"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := eventgrid.NewPermissionBinding(ctx, "permissionBinding", &eventgrid.PermissionBindingArgs{
    			ClientGroupName:       pulumi.String("exampleClientGroupName1"),
    			NamespaceName:         pulumi.String("exampleNamespaceName1"),
    			Permission:            pulumi.String(eventgrid.PermissionTypePublisher),
    			PermissionBindingName: pulumi.String("examplePermissionBindingName1"),
    			ResourceGroupName:     pulumi.String("examplerg"),
    			TopicSpaceName:        pulumi.String("exampleTopicSpaceName1"),
    		})
    		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.eventgrid.PermissionBinding;
    import com.pulumi.azurenative.eventgrid.PermissionBindingArgs;
    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 permissionBinding = new PermissionBinding("permissionBinding", PermissionBindingArgs.builder()        
                .clientGroupName("exampleClientGroupName1")
                .namespaceName("exampleNamespaceName1")
                .permission("Publisher")
                .permissionBindingName("examplePermissionBindingName1")
                .resourceGroupName("examplerg")
                .topicSpaceName("exampleTopicSpaceName1")
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    permission_binding = azure_native.eventgrid.PermissionBinding("permissionBinding",
        client_group_name="exampleClientGroupName1",
        namespace_name="exampleNamespaceName1",
        permission=azure_native.eventgrid.PermissionType.PUBLISHER,
        permission_binding_name="examplePermissionBindingName1",
        resource_group_name="examplerg",
        topic_space_name="exampleTopicSpaceName1")
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const permissionBinding = new azure_native.eventgrid.PermissionBinding("permissionBinding", {
        clientGroupName: "exampleClientGroupName1",
        namespaceName: "exampleNamespaceName1",
        permission: azure_native.eventgrid.PermissionType.Publisher,
        permissionBindingName: "examplePermissionBindingName1",
        resourceGroupName: "examplerg",
        topicSpaceName: "exampleTopicSpaceName1",
    });
    
    resources:
      permissionBinding:
        type: azure-native:eventgrid:PermissionBinding
        properties:
          clientGroupName: exampleClientGroupName1
          namespaceName: exampleNamespaceName1
          permission: Publisher
          permissionBindingName: examplePermissionBindingName1
          resourceGroupName: examplerg
          topicSpaceName: exampleTopicSpaceName1
    

    Create PermissionBinding Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new PermissionBinding(name: string, args: PermissionBindingArgs, opts?: CustomResourceOptions);
    @overload
    def PermissionBinding(resource_name: str,
                          args: PermissionBindingArgs,
                          opts: Optional[ResourceOptions] = None)
    
    @overload
    def PermissionBinding(resource_name: str,
                          opts: Optional[ResourceOptions] = None,
                          namespace_name: Optional[str] = None,
                          resource_group_name: Optional[str] = None,
                          client_group_name: Optional[str] = None,
                          description: Optional[str] = None,
                          permission: Optional[Union[str, PermissionType]] = None,
                          permission_binding_name: Optional[str] = None,
                          topic_space_name: Optional[str] = None)
    func NewPermissionBinding(ctx *Context, name string, args PermissionBindingArgs, opts ...ResourceOption) (*PermissionBinding, error)
    public PermissionBinding(string name, PermissionBindingArgs args, CustomResourceOptions? opts = null)
    public PermissionBinding(String name, PermissionBindingArgs args)
    public PermissionBinding(String name, PermissionBindingArgs args, CustomResourceOptions options)
    
    type: azure-native:eventgrid:PermissionBinding
    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 PermissionBindingArgs
    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 PermissionBindingArgs
    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 PermissionBindingArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args PermissionBindingArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args PermissionBindingArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

    The following reference example uses placeholder values for all input properties.

    var permissionBindingResource = new AzureNative.EventGrid.PermissionBinding("permissionBindingResource", new()
    {
        NamespaceName = "string",
        ResourceGroupName = "string",
        ClientGroupName = "string",
        Description = "string",
        Permission = "string",
        PermissionBindingName = "string",
        TopicSpaceName = "string",
    });
    
    example, err := eventgrid.NewPermissionBinding(ctx, "permissionBindingResource", &eventgrid.PermissionBindingArgs{
    NamespaceName: pulumi.String("string"),
    ResourceGroupName: pulumi.String("string"),
    ClientGroupName: pulumi.String("string"),
    Description: pulumi.String("string"),
    Permission: pulumi.String("string"),
    PermissionBindingName: pulumi.String("string"),
    TopicSpaceName: pulumi.String("string"),
    })
    
    var permissionBindingResource = new PermissionBinding("permissionBindingResource", PermissionBindingArgs.builder()        
        .namespaceName("string")
        .resourceGroupName("string")
        .clientGroupName("string")
        .description("string")
        .permission("string")
        .permissionBindingName("string")
        .topicSpaceName("string")
        .build());
    
    permission_binding_resource = azure_native.eventgrid.PermissionBinding("permissionBindingResource",
        namespace_name="string",
        resource_group_name="string",
        client_group_name="string",
        description="string",
        permission="string",
        permission_binding_name="string",
        topic_space_name="string")
    
    const permissionBindingResource = new azure_native.eventgrid.PermissionBinding("permissionBindingResource", {
        namespaceName: "string",
        resourceGroupName: "string",
        clientGroupName: "string",
        description: "string",
        permission: "string",
        permissionBindingName: "string",
        topicSpaceName: "string",
    });
    
    type: azure-native:eventgrid:PermissionBinding
    properties:
        clientGroupName: string
        description: string
        namespaceName: string
        permission: string
        permissionBindingName: string
        resourceGroupName: string
        topicSpaceName: string
    

    PermissionBinding 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 PermissionBinding resource accepts the following input properties:

    NamespaceName string
    Name of the namespace.
    ResourceGroupName string
    The name of the resource group within the user's subscription.
    ClientGroupName string
    The name of the client group resource that the permission is bound to. The client group needs to be a resource under the same namespace the permission binding is a part of.
    Description string
    Description for the Permission Binding resource.
    Permission string | Pulumi.AzureNative.EventGrid.PermissionType
    The allowed permission.
    PermissionBindingName string
    The permission binding name.
    TopicSpaceName string
    The name of the Topic Space resource that the permission is bound to. The Topic space needs to be a resource under the same namespace the permission binding is a part of.
    NamespaceName string
    Name of the namespace.
    ResourceGroupName string
    The name of the resource group within the user's subscription.
    ClientGroupName string
    The name of the client group resource that the permission is bound to. The client group needs to be a resource under the same namespace the permission binding is a part of.
    Description string
    Description for the Permission Binding resource.
    Permission string | PermissionType
    The allowed permission.
    PermissionBindingName string
    The permission binding name.
    TopicSpaceName string
    The name of the Topic Space resource that the permission is bound to. The Topic space needs to be a resource under the same namespace the permission binding is a part of.
    namespaceName String
    Name of the namespace.
    resourceGroupName String
    The name of the resource group within the user's subscription.
    clientGroupName String
    The name of the client group resource that the permission is bound to. The client group needs to be a resource under the same namespace the permission binding is a part of.
    description String
    Description for the Permission Binding resource.
    permission String | PermissionType
    The allowed permission.
    permissionBindingName String
    The permission binding name.
    topicSpaceName String
    The name of the Topic Space resource that the permission is bound to. The Topic space needs to be a resource under the same namespace the permission binding is a part of.
    namespaceName string
    Name of the namespace.
    resourceGroupName string
    The name of the resource group within the user's subscription.
    clientGroupName string
    The name of the client group resource that the permission is bound to. The client group needs to be a resource under the same namespace the permission binding is a part of.
    description string
    Description for the Permission Binding resource.
    permission string | PermissionType
    The allowed permission.
    permissionBindingName string
    The permission binding name.
    topicSpaceName string
    The name of the Topic Space resource that the permission is bound to. The Topic space needs to be a resource under the same namespace the permission binding is a part of.
    namespace_name str
    Name of the namespace.
    resource_group_name str
    The name of the resource group within the user's subscription.
    client_group_name str
    The name of the client group resource that the permission is bound to. The client group needs to be a resource under the same namespace the permission binding is a part of.
    description str
    Description for the Permission Binding resource.
    permission str | PermissionType
    The allowed permission.
    permission_binding_name str
    The permission binding name.
    topic_space_name str
    The name of the Topic Space resource that the permission is bound to. The Topic space needs to be a resource under the same namespace the permission binding is a part of.
    namespaceName String
    Name of the namespace.
    resourceGroupName String
    The name of the resource group within the user's subscription.
    clientGroupName String
    The name of the client group resource that the permission is bound to. The client group needs to be a resource under the same namespace the permission binding is a part of.
    description String
    Description for the Permission Binding resource.
    permission String | "Publisher" | "Subscriber"
    The allowed permission.
    permissionBindingName String
    The permission binding name.
    topicSpaceName String
    The name of the Topic Space resource that the permission is bound to. The Topic space needs to be a resource under the same namespace the permission binding is a part of.

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    Name of the resource.
    ProvisioningState string
    Provisioning state of the PermissionBinding resource.
    SystemData Pulumi.AzureNative.EventGrid.Outputs.SystemDataResponse
    The system metadata relating to the PermissionBinding resource.
    Type string
    Type of the resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    Name of the resource.
    ProvisioningState string
    Provisioning state of the PermissionBinding resource.
    SystemData SystemDataResponse
    The system metadata relating to the PermissionBinding resource.
    Type string
    Type of the resource.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    Name of the resource.
    provisioningState String
    Provisioning state of the PermissionBinding resource.
    systemData SystemDataResponse
    The system metadata relating to the PermissionBinding resource.
    type String
    Type of the resource.
    id string
    The provider-assigned unique ID for this managed resource.
    name string
    Name of the resource.
    provisioningState string
    Provisioning state of the PermissionBinding resource.
    systemData SystemDataResponse
    The system metadata relating to the PermissionBinding resource.
    type string
    Type of the resource.
    id str
    The provider-assigned unique ID for this managed resource.
    name str
    Name of the resource.
    provisioning_state str
    Provisioning state of the PermissionBinding resource.
    system_data SystemDataResponse
    The system metadata relating to the PermissionBinding resource.
    type str
    Type of the resource.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    Name of the resource.
    provisioningState String
    Provisioning state of the PermissionBinding resource.
    systemData Property Map
    The system metadata relating to the PermissionBinding resource.
    type String
    Type of the resource.

    Supporting Types

    PermissionType, PermissionTypeArgs

    Publisher
    Publisher
    Subscriber
    Subscriber
    PermissionTypePublisher
    Publisher
    PermissionTypeSubscriber
    Subscriber
    Publisher
    Publisher
    Subscriber
    Subscriber
    Publisher
    Publisher
    Subscriber
    Subscriber
    PUBLISHER
    Publisher
    SUBSCRIBER
    Subscriber
    "Publisher"
    Publisher
    "Subscriber"
    Subscriber

    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 timestamp of resource last modification (UTC)
    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 timestamp of resource last modification (UTC)
    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 timestamp of resource last modification (UTC)
    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 timestamp of resource last modification (UTC)
    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 timestamp of resource last modification (UTC)
    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 timestamp of resource last modification (UTC)
    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:eventgrid:PermissionBinding examplePermissionBindingName1 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.EventGrid/namespaces/{namespaceName}/permissionBindings/{permissionBindingName} 
    

    To learn more about importing existing cloud resources, see Importing resources.

    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.38.0 published on Monday, Apr 22, 2024 by Pulumi