azure-native.eventgrid.PermissionBinding
Explore with Pulumi AI
The Permission binding resource. Azure REST API version: 2023-06-01-preview.
Other available API versions: 2023-12-15-preview, 2024-06-01-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 (
	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
	})
}
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.
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",
});
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.
- ResourceGroup stringName 
- The name of the resource group within the user's subscription.
- ClientGroup stringName 
- 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.Azure Native. Event Grid. Permission Type 
- The allowed permission.
- PermissionBinding stringName 
- The permission binding name.
- TopicSpace stringName 
- 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.
- ResourceGroup stringName 
- The name of the resource group within the user's subscription.
- ClientGroup stringName 
- 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.
- PermissionBinding stringName 
- The permission binding name.
- TopicSpace stringName 
- 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.
- resourceGroup StringName 
- The name of the resource group within the user's subscription.
- clientGroup StringName 
- 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.
- permissionBinding StringName 
- The permission binding name.
- topicSpace StringName 
- 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.
- resourceGroup stringName 
- The name of the resource group within the user's subscription.
- clientGroup stringName 
- 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.
- permissionBinding stringName 
- The permission binding name.
- topicSpace stringName 
- 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_ strname 
- The name of the resource group within the user's subscription.
- client_group_ strname 
- 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_ strname 
- The permission binding name.
- topic_space_ strname 
- 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.
- resourceGroup StringName 
- The name of the resource group within the user's subscription.
- clientGroup StringName 
- 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.
- permissionBinding StringName 
- The permission binding name.
- topicSpace StringName 
- 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.Azure Native. Event Grid. Outputs. System Data Response 
- 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 SystemData Response 
- 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 SystemData Response 
- 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 SystemData Response 
- 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 SystemData Response 
- 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
- PermissionType Publisher 
- Publisher
- PermissionType Subscriber 
- 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.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- 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.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- 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.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- 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.
- createdBy stringType 
- The type of identity that created the resource.
- lastModified stringAt 
- The timestamp of resource last modification (UTC)
- lastModified stringBy 
- The identity that last modified the resource.
- lastModified stringBy Type 
- 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_ strtype 
- The type of identity that created the resource.
- last_modified_ strat 
- The timestamp of resource last modification (UTC)
- last_modified_ strby 
- The identity that last modified the resource.
- last_modified_ strby_ type 
- 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.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- 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