import * as pulumi from "@pulumi/pulumi"; /** * Use this data source to access information about an existing Network Security Perimeter Profile. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = azure.network.getNetworkSecurityPerimeter({ * name: "existing", * resourceGroupName: "existing", * }); * const exampleGetNetworkSecurityPerimeterProfile = example.then(example => azure.network.getNetworkSecurityPerimeterProfile({ * name: "existing", * networkSecurityPerimeterId: example.id, * })); * export const id = exampleGetNetworkSecurityPerimeterProfile.then(exampleGetNetworkSecurityPerimeterProfile => exampleGetNetworkSecurityPerimeterProfile.id); * ``` * * ## API Providers * * * This data source uses the following Azure API Providers: * * * `Microsoft.Network` - 2025-01-01 */ export declare function getNetworkSecurityPerimeterProfile(args: GetNetworkSecurityPerimeterProfileArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getNetworkSecurityPerimeterProfile. */ export interface GetNetworkSecurityPerimeterProfileArgs { /** * The name of this Network Security Perimeter Profile. */ name: string; /** * The ID of the Network Security Perimeter. */ networkSecurityPerimeterId: string; } /** * A collection of values returned by getNetworkSecurityPerimeterProfile. */ export interface GetNetworkSecurityPerimeterProfileResult { /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly name: string; readonly networkSecurityPerimeterId: string; } /** * Use this data source to access information about an existing Network Security Perimeter Profile. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = azure.network.getNetworkSecurityPerimeter({ * name: "existing", * resourceGroupName: "existing", * }); * const exampleGetNetworkSecurityPerimeterProfile = example.then(example => azure.network.getNetworkSecurityPerimeterProfile({ * name: "existing", * networkSecurityPerimeterId: example.id, * })); * export const id = exampleGetNetworkSecurityPerimeterProfile.then(exampleGetNetworkSecurityPerimeterProfile => exampleGetNetworkSecurityPerimeterProfile.id); * ``` * * ## API Providers * * * This data source uses the following Azure API Providers: * * * `Microsoft.Network` - 2025-01-01 */ export declare function getNetworkSecurityPerimeterProfileOutput(args: GetNetworkSecurityPerimeterProfileOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getNetworkSecurityPerimeterProfile. */ export interface GetNetworkSecurityPerimeterProfileOutputArgs { /** * The name of this Network Security Perimeter Profile. */ name: pulumi.Input; /** * The ID of the Network Security Perimeter. */ networkSecurityPerimeterId: pulumi.Input; }