@muhlba91/pulumi-proxmoxve
Version:
A Pulumi package for creating and managing Proxmox Virtual Environment cloud resources.
69 lines • 1.78 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "./types/output";
/**
* Retrieves information about a specific resource pool.
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as proxmoxve from "@muhlba91/pulumi-proxmoxve";
*
* const operationsPool = proxmoxve.getPoolLegacy({
* poolId: "operations",
* });
* ```
*/
export declare function getPoolLegacy(args: GetPoolLegacyArgs, opts?: pulumi.InvokeOptions): Promise<GetPoolLegacyResult>;
/**
* A collection of arguments for invoking getPoolLegacy.
*/
export interface GetPoolLegacyArgs {
/**
* The pool identifier.
*/
poolId: string;
}
/**
* A collection of values returned by getPoolLegacy.
*/
export interface GetPoolLegacyResult {
/**
* The pool comment.
*/
readonly comment: string;
/**
* The provider-assigned unique ID for this managed resource.
*/
readonly id: string;
/**
* The pool members.
*/
readonly members: outputs.GetPoolLegacyMember[];
readonly poolId: string;
}
/**
* Retrieves information about a specific resource pool.
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as proxmoxve from "@muhlba91/pulumi-proxmoxve";
*
* const operationsPool = proxmoxve.getPoolLegacy({
* poolId: "operations",
* });
* ```
*/
export declare function getPoolLegacyOutput(args: GetPoolLegacyOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetPoolLegacyResult>;
/**
* A collection of arguments for invoking getPoolLegacy.
*/
export interface GetPoolLegacyOutputArgs {
/**
* The pool identifier.
*/
poolId: pulumi.Input<string>;
}
//# sourceMappingURL=getPoolLegacy.d.ts.map