import * as pulumi from "@pulumi/pulumi"; /** * Use this data source to access information about an existing Network Manager IPAM Pool. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const exampleResourceGroup = new azure.core.ResourceGroup("example", { * name: "example-resources", * location: "West Europe", * }); * const current = azure.core.getSubscription({}); * const exampleNetworkManager = new azure.network.NetworkManager("example", { * name: "example-network-manager", * location: exampleResourceGroup.location, * resourceGroupName: exampleResourceGroup.name, * scope: { * subscriptionIds: [current.then(current => current.id)], * }, * }); * const exampleNetworkManagerIpamPool = new azure.network.NetworkManagerIpamPool("example", { * name: "example-ipam-pool", * location: "West Europe", * networkManagerId: exampleNetworkManager.id, * displayName: "example-pool", * addressPrefixes: ["10.0.0.0/24"], * }); * const example = azure.network.getNetworkManagerIpamPoolOutput({ * name: exampleNetworkManagerIpamPool.name, * networkManagerId: exampleNetworkManager.id, * }); * export const id = example.apply(example => example.id); * ``` * * ## API Providers * * * This data source uses the following Azure API Providers: * * * `Microsoft.Network` - 2025-01-01 */ export declare function getNetworkManagerIpamPool(args: GetNetworkManagerIpamPoolArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getNetworkManagerIpamPool. */ export interface GetNetworkManagerIpamPoolArgs { /** * The name of this Network Manager IPAM Pool. */ name: string; /** * The ID of the parent Network Manager. */ networkManagerId: string; } /** * A collection of values returned by getNetworkManagerIpamPool. */ export interface GetNetworkManagerIpamPoolResult { /** * A list of IPv4 or IPv6 IP address prefixes assigned to the Network Manager IPAM Pool. */ readonly addressPrefixes: string[]; /** * The description of the Network Manager IPAM Pool. */ readonly description: string; /** * The display name of the Network Manager IPAM Pool. */ readonly displayName: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The Azure Region where the Network Manager IPAM Pool exists. */ readonly location: string; readonly name: string; readonly networkManagerId: string; /** * The name of the parent IPAM Pool. */ readonly parentPoolName: string; /** * A mapping of tags assigned to the Network Manager IPAM Pool. */ readonly tags: { [key: string]: string; }; } /** * Use this data source to access information about an existing Network Manager IPAM Pool. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const exampleResourceGroup = new azure.core.ResourceGroup("example", { * name: "example-resources", * location: "West Europe", * }); * const current = azure.core.getSubscription({}); * const exampleNetworkManager = new azure.network.NetworkManager("example", { * name: "example-network-manager", * location: exampleResourceGroup.location, * resourceGroupName: exampleResourceGroup.name, * scope: { * subscriptionIds: [current.then(current => current.id)], * }, * }); * const exampleNetworkManagerIpamPool = new azure.network.NetworkManagerIpamPool("example", { * name: "example-ipam-pool", * location: "West Europe", * networkManagerId: exampleNetworkManager.id, * displayName: "example-pool", * addressPrefixes: ["10.0.0.0/24"], * }); * const example = azure.network.getNetworkManagerIpamPoolOutput({ * name: exampleNetworkManagerIpamPool.name, * networkManagerId: exampleNetworkManager.id, * }); * export const id = example.apply(example => example.id); * ``` * * ## API Providers * * * This data source uses the following Azure API Providers: * * * `Microsoft.Network` - 2025-01-01 */ export declare function getNetworkManagerIpamPoolOutput(args: GetNetworkManagerIpamPoolOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getNetworkManagerIpamPool. */ export interface GetNetworkManagerIpamPoolOutputArgs { /** * The name of this Network Manager IPAM Pool. */ name: pulumi.Input; /** * The ID of the parent Network Manager. */ networkManagerId: pulumi.Input; }