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