import * as pulumi from "@pulumi/pulumi"; /** * Manages a ServiceBus Topic authorization Rule within a ServiceBus Topic. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = new azure.core.ResourceGroup("example", { * name: "tfex-servicebus", * location: "West Europe", * }); * const exampleNamespace = new azure.servicebus.Namespace("example", { * name: "tfex-servicebus-namespace", * location: example.location, * resourceGroupName: example.name, * sku: "Standard", * tags: { * source: "example", * }, * }); * const exampleTopic = new azure.servicebus.Topic("example", { * name: "tfex_servicebus_topic", * namespaceId: exampleNamespace.id, * }); * const exampleTopicAuthorizationRule = new azure.servicebus.TopicAuthorizationRule("example", { * name: "tfex_servicebus_topic_sasPolicy", * topicId: exampleTopic.id, * listen: true, * send: false, * manage: false, * }); * ``` * * ## API Providers * * * This resource uses the following Azure API Providers: * * * `Microsoft.ServiceBus` - 2024-01-01 * * ## Import * * ServiceBus Topic authorization rules can be imported using the `resource id`, e.g. * * ```sh * $ pulumi import azure:eventhub/topicAuthorizationRule:TopicAuthorizationRule rule1 /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.ServiceBus/namespaces/namespace1/topics/topic1/authorizationRules/rule1 * ``` * * @deprecated azure.eventhub.TopicAuthorizationRule has been deprecated in favor of azure.servicebus.TopicAuthorizationRule */ export declare class TopicAuthorizationRule extends pulumi.CustomResource { /** * Get an existing TopicAuthorizationRule 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?: TopicAuthorizationRuleState, opts?: pulumi.CustomResourceOptions): TopicAuthorizationRule; /** * Returns true if the given object is an instance of TopicAuthorizationRule. 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 TopicAuthorizationRule; /** * Grants listen access to this this Authorization Rule. Defaults to `false`. */ readonly listen: pulumi.Output; /** * Grants manage access to this 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 Topic Authorization Rule resource. Changing this forces a new resource to be created. */ readonly name: pulumi.Output; /** * The Primary Connection String for the ServiceBus Topic 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 Topic authorization Rule. */ readonly primaryKey: pulumi.Output; /** * The Secondary Connection String for the ServiceBus Topic 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 Topic authorization Rule. */ readonly secondaryKey: pulumi.Output; /** * Grants send access to this this Authorization Rule. Defaults to `false`. */ readonly send: pulumi.Output; /** * Specifies the ID of the ServiceBus Topic. Changing this forces a new resource to be created. * * > **Note:** At least one of the 3 permissions below needs to be set. */ readonly topicId: pulumi.Output; /** * Create a TopicAuthorizationRule 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.TopicAuthorizationRule has been deprecated in favor of azure.servicebus.TopicAuthorizationRule */ constructor(name: string, args: TopicAuthorizationRuleArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering TopicAuthorizationRule resources. */ export interface TopicAuthorizationRuleState { /** * Grants listen access to this this Authorization Rule. Defaults to `false`. */ listen?: pulumi.Input; /** * Grants manage access to this 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 Topic Authorization Rule resource. Changing this forces a new resource to be created. */ name?: pulumi.Input; /** * The Primary Connection String for the ServiceBus Topic 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 Topic authorization Rule. */ primaryKey?: pulumi.Input; /** * The Secondary Connection String for the ServiceBus Topic authorization Rule. */ secondaryConnectionString?: pulumi.Input; /** * The alias Secondary Connection String for the ServiceBus Namespace */ secondaryConnectionStringAlias?: pulumi.Input; /** * The Secondary Key for the ServiceBus Topic authorization Rule. */ secondaryKey?: pulumi.Input; /** * Grants send access to this this Authorization Rule. Defaults to `false`. */ send?: pulumi.Input; /** * Specifies the ID of the ServiceBus Topic. Changing this forces a new resource to be created. * * > **Note:** At least one of the 3 permissions below needs to be set. */ topicId?: pulumi.Input; } /** * The set of arguments for constructing a TopicAuthorizationRule resource. */ export interface TopicAuthorizationRuleArgs { /** * Grants listen access to this this Authorization Rule. Defaults to `false`. */ listen?: pulumi.Input; /** * Grants manage access to this 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 Topic Authorization Rule resource. Changing this forces a new resource to be created. */ name?: pulumi.Input; /** * Grants send access to this this Authorization Rule. Defaults to `false`. */ send?: pulumi.Input; /** * Specifies the ID of the ServiceBus Topic. Changing this forces a new resource to be created. * * > **Note:** At least one of the 3 permissions below needs to be set. */ topicId: pulumi.Input; }