pulumi-superfly
Version:
A native Pulumi provider for Fly.io. This package is still in early development. There is basically no documentation and APIs are likely to change.
28 lines • 972 B
JavaScript
;
// *** WARNING: this file was generated by pulumi-language-nodejs. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
Object.defineProperty(exports, "__esModule", { value: true });
exports.getAppOutput = exports.getApp = void 0;
const pulumi = require("@pulumi/pulumi");
const utilities = require("./utilities");
/**
* Gets the state of a Fly.io app.
*/
function getApp(args, opts) {
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invoke("flyio:index:getApp", {
"name": args.name,
}, opts);
}
exports.getApp = getApp;
/**
* Gets the state of a Fly.io app.
*/
function getAppOutput(args, opts) {
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invokeOutput("flyio:index:getApp", {
"name": args.name,
}, opts);
}
exports.getAppOutput = getAppOutput;
//# sourceMappingURL=getApp.js.map