@muhlba91/pulumi-proxmoxve
Version:
A Pulumi package for creating and managing Proxmox Virtual Environment cloud resources.
68 lines • 1.69 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
/**
* Retrieves the DNS configuration for a specific node.
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as proxmoxve from "@muhlba91/pulumi-proxmoxve";
*
* const firstNode = proxmoxve.getDnsLegacy({
* nodeName: "first-node",
* });
* ```
*/
export declare function getDnsLegacy(args: GetDnsLegacyArgs, opts?: pulumi.InvokeOptions): Promise<GetDnsLegacyResult>;
/**
* A collection of arguments for invoking getDnsLegacy.
*/
export interface GetDnsLegacyArgs {
/**
* A node name.
*/
nodeName: string;
}
/**
* A collection of values returned by getDnsLegacy.
*/
export interface GetDnsLegacyResult {
/**
* The DNS search domain.
*/
readonly domain: string;
/**
* The provider-assigned unique ID for this managed resource.
*/
readonly id: string;
readonly nodeName: string;
/**
* The DNS servers.
*/
readonly servers: string[];
}
/**
* Retrieves the DNS configuration for a specific node.
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as proxmoxve from "@muhlba91/pulumi-proxmoxve";
*
* const firstNode = proxmoxve.getDnsLegacy({
* nodeName: "first-node",
* });
* ```
*/
export declare function getDnsLegacyOutput(args: GetDnsLegacyOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetDnsLegacyResult>;
/**
* A collection of arguments for invoking getDnsLegacy.
*/
export interface GetDnsLegacyOutputArgs {
/**
* A node name.
*/
nodeName: pulumi.Input<string>;
}
//# sourceMappingURL=getDnsLegacy.d.ts.map