@pulumi/f5bigip
Version:
A Pulumi package for creating and managing F5 BigIP resources.
75 lines • 1.86 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
/**
* Use this data source (`f5bigip.ltm.Pool`) to get the ltm monitor details available on BIG-IP
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as f5bigip from "@pulumi/f5bigip";
*
* const pool_Example = f5bigip.ltm.getPool({
* name: "example-pool",
* partition: "Common",
* });
* ```
*/
export declare function getPool(args: GetPoolArgs, opts?: pulumi.InvokeOptions): Promise<GetPoolResult>;
/**
* A collection of arguments for invoking getPool.
*/
export interface GetPoolArgs {
/**
* Name of the ltm monitor
*/
name: string;
/**
* partition of the ltm monitor
*/
partition: string;
}
/**
* A collection of values returned by getPool.
*/
export interface GetPoolResult {
/**
* Full path to the pool.
*/
readonly fullPath: string;
/**
* The provider-assigned unique ID for this managed resource.
*/
readonly id: string;
readonly name: string;
readonly partition: string;
}
/**
* Use this data source (`f5bigip.ltm.Pool`) to get the ltm monitor details available on BIG-IP
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as f5bigip from "@pulumi/f5bigip";
*
* const pool_Example = f5bigip.ltm.getPool({
* name: "example-pool",
* partition: "Common",
* });
* ```
*/
export declare function getPoolOutput(args: GetPoolOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetPoolResult>;
/**
* A collection of arguments for invoking getPool.
*/
export interface GetPoolOutputArgs {
/**
* Name of the ltm monitor
*/
name: pulumi.Input<string>;
/**
* partition of the ltm monitor
*/
partition: pulumi.Input<string>;
}
//# sourceMappingURL=getPool.d.ts.map