@pulumi/linode
Version:
A Pulumi package for creating and managing linode cloud resources.
24 lines • 1.04 kB
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.getInterfaceOutput = exports.getInterface = void 0;
const pulumi = require("@pulumi/pulumi");
const utilities = require("./utilities");
function getInterface(args, opts) {
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invoke("linode:index/getInterface:getInterface", {
"id": args.id,
"linodeId": args.linodeId,
}, opts);
}
exports.getInterface = getInterface;
function getInterfaceOutput(args, opts) {
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invokeOutput("linode:index/getInterface:getInterface", {
"id": args.id,
"linodeId": args.linodeId,
}, opts);
}
exports.getInterfaceOutput = getInterfaceOutput;
//# sourceMappingURL=getInterface.js.map