import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; /** * List all the clusters created using Foundation Central. * * ## Example Usage * * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as nutanix from "@pierskarsenbarg/nutanix"; * * const imagedClustersList = nutanix.getFoundationCentralImagedClustersList({}); * ``` * */ export declare function getFoundationCentralImagedClustersList(args?: GetFoundationCentralImagedClustersListArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getFoundationCentralImagedClustersList. */ export interface GetFoundationCentralImagedClustersListArgs { filters?: inputs.GetFoundationCentralImagedClustersListFilters; /** * The number of records retrieved. */ length?: number; /** * Offset from the start of the object list. */ offset?: number; } /** * A collection of values returned by getFoundationCentralImagedClustersList. */ export interface GetFoundationCentralImagedClustersListResult { readonly filters?: outputs.GetFoundationCentralImagedClustersListFilters; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly imagedClusters: outputs.GetFoundationCentralImagedClustersListImagedCluster[]; /** * The number of records retrieved. */ readonly length?: number; readonly metadatas: outputs.GetFoundationCentralImagedClustersListMetadata[]; /** * Offset from the start of the object list. */ readonly offset?: number; } /** * List all the clusters created using Foundation Central. * * ## Example Usage * * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as nutanix from "@pierskarsenbarg/nutanix"; * * const imagedClustersList = nutanix.getFoundationCentralImagedClustersList({}); * ``` * */ export declare function getFoundationCentralImagedClustersListOutput(args?: GetFoundationCentralImagedClustersListOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getFoundationCentralImagedClustersList. */ export interface GetFoundationCentralImagedClustersListOutputArgs { filters?: pulumi.Input; /** * The number of records retrieved. */ length?: pulumi.Input; /** * Offset from the start of the object list. */ offset?: pulumi.Input; } //# sourceMappingURL=getFoundationCentralImagedClustersList.d.ts.map