@muhlba91/pulumi-proxmoxve
Version:
A Pulumi package for creating and managing Proxmox Virtual Environment cloud resources.
63 lines • 2.03 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
/**
* > **Deprecated:** Use `proxmoxve.getVersion` instead. This data source will be removed in v1.0.
*
* Retrieves API version details.
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as proxmoxve from "@muhlba91/pulumi-proxmoxve";
*
* const example = proxmoxve.getVersionLegacy({});
* export const dataProxmoxVirtualEnvironmentVersion = {
* release: example.then(example => example.release),
* repositoryId: example.then(example => example.repositoryId),
* version: example.then(example => example.version),
* };
* ```
*/
export declare function getVersionLegacy(opts?: pulumi.InvokeOptions): Promise<GetVersionLegacyResult>;
/**
* A collection of values returned by getVersionLegacy.
*/
export interface GetVersionLegacyResult {
/**
* Placeholder identifier attribute.
*/
readonly id: string;
/**
* The current Proxmox VE point release in `x.y` format.
*/
readonly release: string;
/**
* The short git revision from which this version was build.
*/
readonly repositoryId: string;
/**
* The full pve-manager package version of this node.
*/
readonly version: string;
}
/**
* > **Deprecated:** Use `proxmoxve.getVersion` instead. This data source will be removed in v1.0.
*
* Retrieves API version details.
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as proxmoxve from "@muhlba91/pulumi-proxmoxve";
*
* const example = proxmoxve.getVersionLegacy({});
* export const dataProxmoxVirtualEnvironmentVersion = {
* release: example.then(example => example.release),
* repositoryId: example.then(example => example.repositoryId),
* version: example.then(example => example.version),
* };
* ```
*/
export declare function getVersionLegacyOutput(opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetVersionLegacyResult>;
//# sourceMappingURL=getVersionLegacy.d.ts.map