UNPKG

@pulumiverse/scaleway

Version:

A Pulumi package for creating and managing Scaleway cloud resources.

33 lines 1.63 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.Volume = exports.Snapshot = exports.getVolumeOutput = exports.getVolume = exports.getSnapshotOutput = exports.getSnapshot = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("../utilities"); exports.getSnapshot = null; exports.getSnapshotOutput = null; utilities.lazyLoad(exports, ["getSnapshot", "getSnapshotOutput"], () => require("./getSnapshot")); exports.getVolume = null; exports.getVolumeOutput = null; utilities.lazyLoad(exports, ["getVolume", "getVolumeOutput"], () => require("./getVolume")); exports.Snapshot = null; utilities.lazyLoad(exports, ["Snapshot"], () => require("./snapshot")); exports.Volume = null; utilities.lazyLoad(exports, ["Volume"], () => require("./volume")); const _module = { version: utilities.getVersion(), construct: (name, type, urn) => { switch (type) { case "scaleway:block/snapshot:Snapshot": return new exports.Snapshot(name, undefined, { urn }); case "scaleway:block/volume:Volume": return new exports.Volume(name, undefined, { urn }); default: throw new Error(`unknown resource type ${type}`); } }, }; pulumi.runtime.registerResourceModule("scaleway", "block/snapshot", _module); pulumi.runtime.registerResourceModule("scaleway", "block/volume", _module); //# sourceMappingURL=index.js.map