import * as pulumi from "@pulumi/pulumi"; /** * Manages a ServiceBus Namespace authorization Rule within a ServiceBus. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = new azure.core.ResourceGroup("example", { * name: "my-servicebus", * location: "West US", * }); * const exampleNamespace = new azure.servicebus.Namespace("example", { * name: "tfex-servicebus-namespace", * location: example.location, * resourceGroupName: example.name, * sku: "Standard", * tags: { * source: "example", * }, * }); * const exampleNamespaceAuthorizationRule = new azure.servicebus.NamespaceAuthorizationRule("example", { * name: "examplerule", * namespaceId: exampleNamespace.id, * listen: true, * send: true, * manage: false, * }); * ``` * * ## API Providers * * * This resource uses the following Azure API Providers: * * * `Microsoft.ServiceBus` - 2024-01-01 * * ## Import * * ServiceBus Namespace authorization rules can be imported using the `resource id`, e.g. * * ```sh * $ pulumi import azure:eventhub/namespaceAuthorizationRule:NamespaceAuthorizationRule rule1 /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.ServiceBus/namespaces/namespace1/authorizationRules/rule1 * ``` * * @deprecated azure.eventhub.NamespaceAuthorizationRule has been deprecated in favor of azure.servicebus.NamespaceAuthorizationRule */ export declare class NamespaceAuthorizationRule extends pulumi.CustomResource { /** * Get an existing NamespaceAuthorizationRule resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: NamespaceAuthorizationRuleState, opts?: pulumi.CustomResourceOptions): NamespaceAuthorizationRule; /** * Returns true if the given object is an instance of NamespaceAuthorizationRule. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is NamespaceAuthorizationRule; /** * Grants listen access to this Authorization Rule. Defaults to `false`. */ readonly listen: pulumi.Output; /** * Grants manage access to this Authorization Rule. When this property is `true` - both `listen` and `send` must be too. Defaults to `false`. */ readonly manage: pulumi.Output; /** * Specifies the name of the ServiceBus Namespace Authorization Rule resource. Changing this forces a new resource to be created. */ readonly name: pulumi.Output; /** * Specifies the ID of the ServiceBus Namespace. Changing this forces a new resource to be created. * * > **Note:** At least one of the 3 permissions below needs to be set. */ readonly namespaceId: pulumi.Output; /** * The Primary Connection String for the ServiceBus Namespace authorization Rule. */ readonly primaryConnectionString: pulumi.Output; /** * The alias Primary Connection String for the ServiceBus Namespace, if the namespace is Geo DR paired. */ readonly primaryConnectionStringAlias: pulumi.Output; /** * The Primary Key for the ServiceBus Namespace authorization Rule. */ readonly primaryKey: pulumi.Output; /** * The Secondary Connection String for the ServiceBus Namespace authorization Rule. */ readonly secondaryConnectionString: pulumi.Output; /** * The alias Secondary Connection String for the ServiceBus Namespace */ readonly secondaryConnectionStringAlias: pulumi.Output; /** * The Secondary Key for the ServiceBus Namespace authorization Rule. */ readonly secondaryKey: pulumi.Output; /** * Grants send access to this Authorization Rule. Defaults to `false`. */ readonly send: pulumi.Output; /** * Create a NamespaceAuthorizationRule resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ /** @deprecated azure.eventhub.NamespaceAuthorizationRule has been deprecated in favor of azure.servicebus.NamespaceAuthorizationRule */ constructor(name: string, args: NamespaceAuthorizationRuleArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering NamespaceAuthorizationRule resources. */ export interface NamespaceAuthorizationRuleState { /** * Grants listen access to this Authorization Rule. Defaults to `false`. */ listen?: pulumi.Input; /** * Grants manage access to this Authorization Rule. When this property is `true` - both `listen` and `send` must be too. Defaults to `false`. */ manage?: pulumi.Input; /** * Specifies the name of the ServiceBus Namespace Authorization Rule resource. Changing this forces a new resource to be created. */ name?: pulumi.Input; /** * Specifies the ID of the ServiceBus Namespace. Changing this forces a new resource to be created. * * > **Note:** At least one of the 3 permissions below needs to be set. */ namespaceId?: pulumi.Input; /** * The Primary Connection String for the ServiceBus Namespace authorization Rule. */ primaryConnectionString?: pulumi.Input; /** * The alias Primary Connection String for the ServiceBus Namespace, if the namespace is Geo DR paired. */ primaryConnectionStringAlias?: pulumi.Input; /** * The Primary Key for the ServiceBus Namespace authorization Rule. */ primaryKey?: pulumi.Input; /** * The Secondary Connection String for the ServiceBus Namespace authorization Rule. */ secondaryConnectionString?: pulumi.Input; /** * The alias Secondary Connection String for the ServiceBus Namespace */ secondaryConnectionStringAlias?: pulumi.Input; /** * The Secondary Key for the ServiceBus Namespace authorization Rule. */ secondaryKey?: pulumi.Input; /** * Grants send access to this Authorization Rule. Defaults to `false`. */ send?: pulumi.Input; } /** * The set of arguments for constructing a NamespaceAuthorizationRule resource. */ export interface NamespaceAuthorizationRuleArgs { /** * Grants listen access to this Authorization Rule. Defaults to `false`. */ listen?: pulumi.Input; /** * Grants manage access to this Authorization Rule. When this property is `true` - both `listen` and `send` must be too. Defaults to `false`. */ manage?: pulumi.Input; /** * Specifies the name of the ServiceBus Namespace Authorization Rule resource. Changing this forces a new resource to be created. */ name?: pulumi.Input; /** * Specifies the ID of the ServiceBus Namespace. Changing this forces a new resource to be created. * * > **Note:** At least one of the 3 permissions below needs to be set. */ namespaceId: pulumi.Input; /** * Grants send access to this Authorization Rule. Defaults to `false`. */ send?: pulumi.Input; }