18 resources and 5 data sources mapped into the dokploy:index module, with SDKs generated for TypeScript, Python, Go and .NET.
26 lines
1000 B
TypeScript
Generated
26 lines
1000 B
TypeScript
Generated
// *** WARNING: this file was generated by pulumi-language-nodejs. ***
|
|
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
|
|
import * as pulumi from "@pulumi/pulumi";
|
|
import * as inputs from "./types/input";
|
|
import * as outputs from "./types/output";
|
|
import * as utilities from "./utilities";
|
|
|
|
export function getServers(opts?: pulumi.InvokeOptions): Promise<GetServersResult> {
|
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
return pulumi.runtime.invoke("dokploy:index/getServers:getServers", {
|
|
}, opts);
|
|
}
|
|
|
|
/**
|
|
* A collection of values returned by getServers.
|
|
*/
|
|
export interface GetServersResult {
|
|
readonly servers: outputs.GetServersServer[];
|
|
}
|
|
export function getServersOutput(opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetServersResult> {
|
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
return pulumi.runtime.invokeOutput("dokploy:index/getServers:getServers", {
|
|
}, opts);
|
|
}
|