@muhlba91/pulumi-proxmoxve
Version:
A Pulumi package for creating and managing Proxmox Virtual Environment cloud resources.
54 lines • 1.8 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "./types/output";
/**
* > **Deprecated:** Use `proxmoxve.getReplications` instead. This data source will be removed in v1.0.
*
* Retrieves information about all Replications in Proxmox.
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as proxmoxve from "@muhlba91/pulumi-proxmoxve";
*
* // List all Replications
* const all = proxmoxve.getReplicationsLegacy({});
* export const dataProxmoxVirtualEnvironmentReplicationsAll = {
* replications: all.then(all => all.replications),
* };
* ```
*/
export declare function getReplicationsLegacy(opts?: pulumi.InvokeOptions): Promise<GetReplicationsLegacyResult>;
/**
* A collection of values returned by getReplicationsLegacy.
*/
export interface GetReplicationsLegacyResult {
/**
* The provider-assigned unique ID for this managed resource.
*/
readonly id: string;
/**
* List of Replications.
*/
readonly replications: outputs.GetReplicationsLegacyReplication[];
}
/**
* > **Deprecated:** Use `proxmoxve.getReplications` instead. This data source will be removed in v1.0.
*
* Retrieves information about all Replications in Proxmox.
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as proxmoxve from "@muhlba91/pulumi-proxmoxve";
*
* // List all Replications
* const all = proxmoxve.getReplicationsLegacy({});
* export const dataProxmoxVirtualEnvironmentReplicationsAll = {
* replications: all.then(all => all.replications),
* };
* ```
*/
export declare function getReplicationsLegacyOutput(opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetReplicationsLegacyResult>;
//# sourceMappingURL=getReplicationsLegacy.d.ts.map