Bridge terraform-provider-dokploy into a Pulumi provider
18 resources and 5 data sources mapped into the dokploy:index module, with SDKs generated for TypeScript, Python, Go and .NET.
This commit is contained in:
25
sdk/nodejs/getProjects.ts
generated
Normal file
25
sdk/nodejs/getProjects.ts
generated
Normal file
@@ -0,0 +1,25 @@
|
||||
// *** 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);
|
||||
}
|
||||
Reference in New Issue
Block a user