@pulumi/dnsimple
Version:
A Pulumi package for creating and managing dnsimple cloud resources.
22 lines • 919 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.getZoneOutput = exports.getZone = void 0;
const pulumi = require("@pulumi/pulumi");
const utilities = require("./utilities");
function getZone(args, opts) {
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invoke("dnsimple:index/getZone:getZone", {
"name": args.name,
}, opts);
}
exports.getZone = getZone;
function getZoneOutput(args, opts) {
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invokeOutput("dnsimple:index/getZone:getZone", {
"name": args.name,
}, opts);
}
exports.getZoneOutput = getZoneOutput;
//# sourceMappingURL=getZone.js.map