import * as pulumi from "@pulumi/pulumi"; /** * Manages an Azure Relay Namespace. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = new azure.core.ResourceGroup("example", { * name: "example-resources", * location: "West Europe", * }); * const exampleNamespace = new azure.relay.Namespace("example", { * name: "example-relay", * location: example.location, * resourceGroupName: example.name, * skuName: "Standard", * tags: { * source: "example", * }, * }); * ``` * * ## API Providers * * * This resource uses the following Azure API Providers: * * * `Microsoft.Relay` - 2021-11-01 * * ## Import * * Azure Relay Namespace's can be imported using the `resource id`, e.g. * * ```sh * $ pulumi import azure:relay/namespace:Namespace relay1 /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mygroup1/providers/Microsoft.Relay/namespaces/relay1 * ``` */ export declare class Namespace extends pulumi.CustomResource { /** * Get an existing Namespace 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?: NamespaceState, opts?: pulumi.CustomResourceOptions): Namespace; /** * Returns true if the given object is an instance of Namespace. 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 Namespace; /** * Specifies the supported Azure location where the Azure Relay Namespace exists. Changing this forces a new resource to be created. */ readonly location: pulumi.Output; /** * The Identifier for Azure Insights metrics. */ readonly metricId: pulumi.Output; /** * Specifies the name of the Azure Relay Namespace. Changing this forces a new resource to be created. */ readonly name: pulumi.Output; /** * The primary connection string for the authorization rule `RootManageSharedAccessKey`. */ readonly primaryConnectionString: pulumi.Output; /** * The primary access key for the authorization rule `RootManageSharedAccessKey`. */ readonly primaryKey: pulumi.Output; /** * The name of the resource group in which to create the Azure Relay Namespace. Changing this forces a new resource to be created. */ readonly resourceGroupName: pulumi.Output; /** * The secondary connection string for the authorization rule `RootManageSharedAccessKey`. */ readonly secondaryConnectionString: pulumi.Output; /** * The secondary access key for the authorization rule `RootManageSharedAccessKey`. */ readonly secondaryKey: pulumi.Output; /** * The name of the SKU to use. At this time the only supported value is `Standard`. */ readonly skuName: pulumi.Output; /** * A mapping of tags to assign to the resource. */ readonly tags: pulumi.Output<{ [key: string]: string; } | undefined>; /** * Create a Namespace 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. */ constructor(name: string, args: NamespaceArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering Namespace resources. */ export interface NamespaceState { /** * Specifies the supported Azure location where the Azure Relay Namespace exists. Changing this forces a new resource to be created. */ location?: pulumi.Input; /** * The Identifier for Azure Insights metrics. */ metricId?: pulumi.Input; /** * Specifies the name of the Azure Relay Namespace. Changing this forces a new resource to be created. */ name?: pulumi.Input; /** * The primary connection string for the authorization rule `RootManageSharedAccessKey`. */ primaryConnectionString?: pulumi.Input; /** * The primary access key for the authorization rule `RootManageSharedAccessKey`. */ primaryKey?: pulumi.Input; /** * The name of the resource group in which to create the Azure Relay Namespace. Changing this forces a new resource to be created. */ resourceGroupName?: pulumi.Input; /** * The secondary connection string for the authorization rule `RootManageSharedAccessKey`. */ secondaryConnectionString?: pulumi.Input; /** * The secondary access key for the authorization rule `RootManageSharedAccessKey`. */ secondaryKey?: pulumi.Input; /** * The name of the SKU to use. At this time the only supported value is `Standard`. */ skuName?: pulumi.Input; /** * A mapping of tags to assign to the resource. */ tags?: pulumi.Input<{ [key: string]: pulumi.Input; }>; } /** * The set of arguments for constructing a Namespace resource. */ export interface NamespaceArgs { /** * Specifies the supported Azure location where the Azure Relay Namespace exists. Changing this forces a new resource to be created. */ location?: pulumi.Input; /** * Specifies the name of the Azure Relay Namespace. Changing this forces a new resource to be created. */ name?: pulumi.Input; /** * The name of the resource group in which to create the Azure Relay Namespace. Changing this forces a new resource to be created. */ resourceGroupName: pulumi.Input; /** * The name of the SKU to use. At this time the only supported value is `Standard`. */ skuName: pulumi.Input; /** * A mapping of tags to assign to the resource. */ tags?: pulumi.Input<{ [key: string]: pulumi.Input; }>; }