1. Packages
  2. Azure Native v2
  3. API Docs
  4. eventgrid
  5. PermissionBinding
These are the docs for Azure Native v2. We recommenend using the latest version, Azure Native v3.
Azure Native v2 v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi

azure-native-v2.eventgrid.PermissionBinding

Explore with Pulumi AI

These are the docs for Azure Native v2. We recommenend using the latest version, Azure Native v3.
Azure Native v2 v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi

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

Other available API versions: 2023-12-15-preview, 2024-06-01-preview, 2024-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",
    });

});
Copy
package main

import (
	eventgrid "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
	})
}
Copy
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());

    }
}
Copy
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",
});
Copy
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")
Copy
resources:
  permissionBinding:
    type: azure-native:eventgrid:PermissionBinding
    properties:
      clientGroupName: exampleClientGroupName1
      namespaceName: exampleNamespaceName1
      permission: Publisher
      permissionBindingName: examplePermissionBindingName1
      resourceGroupName: examplerg
      topicSpaceName: exampleTopicSpaceName1
Copy

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 This property is required. string
The unique name of the resource.
args This property is required. PermissionBindingArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. 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 This property is required. string
The unique name of the resource.
args This property is required. PermissionBindingArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. PermissionBindingArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. PermissionBindingArgs
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 permissionBindingResource = new AzureNative.Eventgrid.PermissionBinding("permissionBindingResource", new()
{
    NamespaceName = "string",
    ResourceGroupName = "string",
    ClientGroupName = "string",
    Description = "string",
    Permission = "string",
    PermissionBindingName = "string",
    TopicSpaceName = "string",
});
Copy
example, err := eventgrid.NewPermissionBinding(ctx, "permissionBindingResource", &eventgrid.PermissionBindingArgs{
	NamespaceName:         "string",
	ResourceGroupName:     "string",
	ClientGroupName:       "string",
	Description:           "string",
	Permission:            "string",
	PermissionBindingName: "string",
	TopicSpaceName:        "string",
})
Copy
var permissionBindingResource = new PermissionBinding("permissionBindingResource", PermissionBindingArgs.builder()
    .namespaceName("string")
    .resourceGroupName("string")
    .clientGroupName("string")
    .description("string")
    .permission("string")
    .permissionBindingName("string")
    .topicSpaceName("string")
    .build());
Copy
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)
Copy
const permissionBindingResource = new azure_native.eventgrid.PermissionBinding("permissionBindingResource", {
    namespaceName: "string",
    resourceGroupName: "string",
    clientGroupName: "string",
    description: "string",
    permission: "string",
    permissionBindingName: "string",
    topicSpaceName: "string",
});
Copy
type: azure-native:eventgrid:PermissionBinding
properties:
    clientGroupName: string
    description: string
    namespaceName: string
    permission: string
    permissionBindingName: string
    resourceGroupName: string
    topicSpaceName: string
Copy

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

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The PermissionBinding resource accepts the following input properties:

NamespaceName
This property is required.
Changes to this property will trigger replacement.
string
Name of the namespace.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
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 Changes to this property will trigger replacement. 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
This property is required.
Changes to this property will trigger replacement.
string
Name of the namespace.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
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 Changes to this property will trigger replacement. 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
This property is required.
Changes to this property will trigger replacement.
String
Name of the namespace.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
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 Changes to this property will trigger replacement. 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
This property is required.
Changes to this property will trigger replacement.
string
Name of the namespace.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
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 Changes to this property will trigger replacement. 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
This property is required.
Changes to this property will trigger replacement.
str
Name of the namespace.
resource_group_name
This property is required.
Changes to this property will trigger replacement.
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 Changes to this property will trigger replacement. 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
This property is required.
Changes to this property will trigger replacement.
String
Name of the namespace.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
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 Changes to this property will trigger replacement. 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} 
Copy

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

Package Details

Repository
azure-native-v2 pulumi/pulumi-azure-native
License
Apache-2.0
These are the docs for Azure Native v2. We recommenend using the latest version, Azure Native v3.
Azure Native v2 v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi