import * as pulumi from "@pulumi/pulumi"; /** * Use this data source to access information about an existing Network Security Perimeter. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = azure.network.getNetworkSecurityPerimeter({ * name: "existing", * resourceGroupName: "existing", * }); * export const id = example.then(example => example.id); * ``` * * ## API Providers * * * This data source uses the following Azure API Providers: * * * `Microsoft.Network` - 2025-01-01 */ export declare function getNetworkSecurityPerimeter(args: GetNetworkSecurityPerimeterArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getNetworkSecurityPerimeter. */ export interface GetNetworkSecurityPerimeterArgs { /** * The name of this Network Security Perimeter. */ name: string; /** * The name of the Resource Group where the Network Security Perimeter exists. */ resourceGroupName: string; } /** * A collection of values returned by getNetworkSecurityPerimeter. */ export interface GetNetworkSecurityPerimeterResult { /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The Azure Region where the Network Security Perimeter exists. */ readonly location: string; readonly name: string; readonly resourceGroupName: string; /** * A mapping of tags assigned to the Network Security Perimeter. */ readonly tags: { [key: string]: string; }; } /** * Use this data source to access information about an existing Network Security Perimeter. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = azure.network.getNetworkSecurityPerimeter({ * name: "existing", * resourceGroupName: "existing", * }); * export const id = example.then(example => example.id); * ``` * * ## API Providers * * * This data source uses the following Azure API Providers: * * * `Microsoft.Network` - 2025-01-01 */ export declare function getNetworkSecurityPerimeterOutput(args: GetNetworkSecurityPerimeterOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getNetworkSecurityPerimeter. */ export interface GetNetworkSecurityPerimeterOutputArgs { /** * The name of this Network Security Perimeter. */ name: pulumi.Input; /** * The name of the Resource Group where the Network Security Perimeter exists. */ resourceGroupName: pulumi.Input; }