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:
- Namespace
Name string - Name of the namespace.
- Resource
Group stringName - The name of the resource group within the user's subscription.
- Client
Group 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.
- Permission
Binding stringName - The permission binding name.
- Topic
Space 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 string - Name of the namespace.
- Resource
Group stringName - The name of the resource group within the user's subscription.
- Client
Group 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 | Permission
Type - The allowed permission.
- Permission
Binding stringName - The permission binding name.
- Topic
Space 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 String - Name of the namespace.
- resource
Group StringName - The name of the resource group within the user's subscription.
- client
Group 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 | Permission
Type - The allowed permission.
- permission
Binding StringName - The permission binding name.
- topic
Space 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 string - Name of the namespace.
- resource
Group stringName - The name of the resource group within the user's subscription.
- client
Group 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 | Permission
Type - The allowed permission.
- permission
Binding stringName - The permission binding name.
- topic
Space 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 | Permission
Type - 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.
- namespace
Name String - Name of the namespace.
- resource
Group StringName - The name of the resource group within the user's subscription.
- client
Group 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.
- permission
Binding StringName - The permission binding name.
- topic
Space 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.
- Provisioning
State string - Provisioning state of the PermissionBinding resource.
- System
Data 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.
- Provisioning
State string - Provisioning state of the PermissionBinding resource.
- System
Data 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.
- provisioning
State String - Provisioning state of the PermissionBinding resource.
- system
Data 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.
- provisioning
State string - Provisioning state of the PermissionBinding resource.
- system
Data 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.
- provisioning
State String - Provisioning state of the PermissionBinding resource.
- system
Data Property Map - The system metadata relating to the PermissionBinding resource.
- type String
- Type of the resource.
Supporting Types
PermissionType, PermissionTypeArgs
- Publisher
- Publisher
- Subscriber
- Subscriber
- Permission
Type Publisher - Publisher
- Permission
Type Subscriber - Subscriber
- Publisher
- Publisher
- Subscriber
- Subscriber
- Publisher
- Publisher
- Subscriber
- Subscriber
- PUBLISHER
- Publisher
- SUBSCRIBER
- Subscriber
- "Publisher"
- Publisher
- "Subscriber"
- Subscriber
SystemDataResponse, SystemDataResponseArgs
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
- created
At string - The timestamp of resource creation (UTC).
- created
By string - The identity that created the resource.
- created
By stringType - The type of identity that created the resource.
- last
Modified stringAt - The timestamp of resource last modification (UTC)
- last
Modified stringBy - The identity that last modified the resource.
- last
Modified 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.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified 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