UNPKG

@pulumiverse/scaleway

Version:

A Pulumi package for creating and managing Scaleway cloud resources.

38 lines 1.92 kB
"use strict"; // *** 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.Zone = exports.Registration = exports.Record = exports.getZoneOutput = exports.getZone = exports.getRecordOutput = exports.getRecord = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("../utilities"); exports.getRecord = null; exports.getRecordOutput = null; utilities.lazyLoad(exports, ["getRecord", "getRecordOutput"], () => require("./getRecord")); exports.getZone = null; exports.getZoneOutput = null; utilities.lazyLoad(exports, ["getZone", "getZoneOutput"], () => require("./getZone")); exports.Record = null; utilities.lazyLoad(exports, ["Record"], () => require("./record")); exports.Registration = null; utilities.lazyLoad(exports, ["Registration"], () => require("./registration")); exports.Zone = null; utilities.lazyLoad(exports, ["Zone"], () => require("./zone")); const _module = { version: utilities.getVersion(), construct: (name, type, urn) => { switch (type) { case "scaleway:domain/record:Record": return new exports.Record(name, undefined, { urn }); case "scaleway:domain/registration:Registration": return new exports.Registration(name, undefined, { urn }); case "scaleway:domain/zone:Zone": return new exports.Zone(name, undefined, { urn }); default: throw new Error(`unknown resource type ${type}`); } }, }; pulumi.runtime.registerResourceModule("scaleway", "domain/record", _module); pulumi.runtime.registerResourceModule("scaleway", "domain/registration", _module); pulumi.runtime.registerResourceModule("scaleway", "domain/zone", _module); //# sourceMappingURL=index.js.map