18 resources and 5 data sources mapped into the dokploy:index module, with SDKs generated for TypeScript, Python, Go and .NET.
26 lines
1013 B
TypeScript
Generated
26 lines
1013 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 getProjects(opts?: pulumi.InvokeOptions): Promise<GetProjectsResult> {
|
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
return pulumi.runtime.invoke("dokploy:index/getProjects:getProjects", {
|
|
}, opts);
|
|
}
|
|
|
|
/**
|
|
* A collection of values returned by getProjects.
|
|
*/
|
|
export interface GetProjectsResult {
|
|
readonly projects: outputs.GetProjectsProject[];
|
|
}
|
|
export function getProjectsOutput(opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetProjectsResult> {
|
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
return pulumi.runtime.invokeOutput("dokploy:index/getProjects:getProjects", {
|
|
}, opts);
|
|
}
|