@pulumiverse/scaleway
Version:
A Pulumi package for creating and managing Scaleway cloud resources.
28 lines • 1.14 kB
JavaScript
;
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
// *** 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) {
args = args || {};
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invoke("scaleway:domain/getZone:getZone", {
"domain": args.domain,
"projectId": args.projectId,
"subdomain": args.subdomain,
}, opts);
}
exports.getZone = getZone;
function getZoneOutput(args, opts) {
args = args || {};
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invokeOutput("scaleway:domain/getZone:getZone", {
"domain": args.domain,
"projectId": args.projectId,
"subdomain": args.subdomain,
}, opts);
}
exports.getZoneOutput = getZoneOutput;
//# sourceMappingURL=getZone.js.map