UNPKG

@pulumi/azure-native

Version:

[![Slack](http://www.pulumi.com/images/docs/badges/slack.svg)](https://slack.pulumi.com) [![NPM version](https://badge.fury.io/js/%40pulumi%2Fazure-native.svg)](https://npmjs.com/package/@pulumi/azure-native) [![Python version](https://badge.fury.io/py/pu

57 lines (56 loc) 2.15 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * List of PoolAssociation * * Uses Azure REST API version 2024-05-01. * * Other available API versions: 2024-01-01-preview, 2024-07-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native network [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details. */ export declare function listIpamPoolAssociatedResources(args: ListIpamPoolAssociatedResourcesArgs, opts?: pulumi.InvokeOptions): Promise<ListIpamPoolAssociatedResourcesResult>; export interface ListIpamPoolAssociatedResourcesArgs { /** * The name of the network manager. */ networkManagerName: string; /** * Pool resource name. */ poolName: string; /** * The name of the resource group. */ resourceGroupName: string; } /** * List of PoolAssociation */ export interface ListIpamPoolAssociatedResourcesResult { /** * The link used to get the next page of operations. */ readonly nextLink?: string; readonly value?: outputs.network.PoolAssociationResponse[]; } /** * List of PoolAssociation * * Uses Azure REST API version 2024-05-01. * * Other available API versions: 2024-01-01-preview, 2024-07-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native network [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details. */ export declare function listIpamPoolAssociatedResourcesOutput(args: ListIpamPoolAssociatedResourcesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<ListIpamPoolAssociatedResourcesResult>; export interface ListIpamPoolAssociatedResourcesOutputArgs { /** * The name of the network manager. */ networkManagerName: pulumi.Input<string>; /** * Pool resource name. */ poolName: pulumi.Input<string>; /** * The name of the resource group. */ resourceGroupName: pulumi.Input<string>; }