import * as pulumi from "@pulumi/pulumi"; /** * Use this data source to access information about an existing IP Group. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = azure.network.getIpGroup({ * name: "example1-ipgroup", * resourceGroupName: "example-rg", * }); * export const cidrs = example.then(example => example.cidrs); * ``` * * ## API Providers * * * This data source uses the following Azure API Providers: * * * `Microsoft.Network` - 2025-01-01 */ export declare function getIpGroup(args: GetIpGroupArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getIpGroup. */ export interface GetIpGroupArgs { /** * Specifies the Name of the IP Group. */ name: string; /** * Specifies the Name of the Resource Group within which the IP Group exists */ resourceGroupName: string; } /** * A collection of values returned by getIpGroup. */ export interface GetIpGroupResult { /** * A list of CIDRs or IP addresses. */ readonly cidrs: string[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The supported Azure location where the resource 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 IP Group. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = azure.network.getIpGroup({ * name: "example1-ipgroup", * resourceGroupName: "example-rg", * }); * export const cidrs = example.then(example => example.cidrs); * ``` * * ## API Providers * * * This data source uses the following Azure API Providers: * * * `Microsoft.Network` - 2025-01-01 */ export declare function getIpGroupOutput(args: GetIpGroupOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getIpGroup. */ export interface GetIpGroupOutputArgs { /** * Specifies the Name of the IP Group. */ name: pulumi.Input; /** * Specifies the Name of the Resource Group within which the IP Group exists */ resourceGroupName: pulumi.Input; }