import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * Lists all the PCs (domain managers) backed up at the object store/cluster. */ export declare function getRestorablePcsV2(args: GetRestorablePcsV2Args, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getRestorablePcsV2. */ export interface GetRestorablePcsV2Args { filter?: string; limit?: string; page?: string; restoreSourceExtId: string; } /** * A collection of values returned by getRestorablePcsV2. */ export interface GetRestorablePcsV2Result { readonly filter?: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly limit?: string; readonly page?: string; readonly restorablePcs: outputs.GetRestorablePcsV2RestorablePc[]; readonly restoreSourceExtId: string; } /** * Lists all the PCs (domain managers) backed up at the object store/cluster. */ export declare function getRestorablePcsV2Output(args: GetRestorablePcsV2OutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getRestorablePcsV2. */ export interface GetRestorablePcsV2OutputArgs { filter?: pulumi.Input; limit?: pulumi.Input; page?: pulumi.Input; restoreSourceExtId: pulumi.Input; } //# sourceMappingURL=getRestorablePcsV2.d.ts.map