@pulumiverse/scaleway
Version:
A Pulumi package for creating and managing Scaleway cloud resources.
146 lines • 6.19 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! ***
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
var desc = Object.getOwnPropertyDescriptor(m, k);
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
desc = { enumerable: true, get: function() { return m[k]; } };
}
Object.defineProperty(o, k2, desc);
}) : (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
o[k2] = m[k];
}));
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
Object.defineProperty(o, "default", { enumerable: true, value: v });
}) : function(o, v) {
o["default"] = v;
});
var __importStar = (this && this.__importStar) || function (mod) {
if (mod && mod.__esModule) return mod;
var result = {};
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
__setModuleDefault(result, mod);
return result;
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.BlockVolume = void 0;
const pulumi = __importStar(require("@pulumi/pulumi"));
const utilities = __importStar(require("./utilities"));
/**
* The `scaleway.block.Volume` resource is used to create and manage Scaleway Block Storage volumes.
*
* Refer to the Block Storage [product documentation](https://www.scaleway.com/en/docs/block-storage/) and [API documentation](https://www.scaleway.com/en/developers/api/block/) for more information.
*
* ## Example Usage
*
* ### Create a Block Storage volume
*
* The following command allows you to create a Block Storage volume of 20 GB with a 5000 [IOPS](https://www.scaleway.com/en/docs/block-storage/concepts/#iops).
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as scaleway from "@pulumiverse/scaleway";
*
* const blockVolume = new scaleway.block.Volume("block_volume", {
* iops: 5000,
* name: "some-volume-name",
* sizeInGb: 20,
* });
* ```
*
* ### With snapshot
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as scaleway from "@pulumiverse/scaleway";
*
* const base = new scaleway.block.Volume("base", {
* name: "block-volume-base",
* iops: 5000,
* sizeInGb: 20,
* });
* const main = new scaleway.block.Snapshot("main", {
* name: "block-volume-from-snapshot",
* volumeId: base.id,
* });
* const mainVolume = new scaleway.block.Volume("main", {
* name: "block-volume-from-snapshot",
* iops: 5000,
* snapshotId: main.id,
* });
* ```
*
* ## Import
*
* This section explains how to import a Block Storage volume using the zoned ID (`{zone}/{id}`) format.
*
* ```sh
* $ pulumi import scaleway:index/blockVolume:BlockVolume block_volume fr-par-1/11111111-1111-1111-1111-111111111111
* ```
*
* @deprecated scaleway.index/blockvolume.BlockVolume has been deprecated in favor of scaleway.block/volume.Volume
*/
class BlockVolume extends pulumi.CustomResource {
/**
* Get an existing BlockVolume resource's state with the given name, ID, and optional extra
* properties used to qualify the lookup.
*
* @param name The _unique_ name of the resulting resource.
* @param id The _unique_ provider ID of the resource to lookup.
* @param state Any extra arguments used during the lookup.
* @param opts Optional settings to control the behavior of the CustomResource.
*/
static get(name, id, state, opts) {
pulumi.log.warn("BlockVolume is deprecated: scaleway.index/blockvolume.BlockVolume has been deprecated in favor of scaleway.block/volume.Volume");
return new BlockVolume(name, state, { ...opts, id: id });
}
/** @internal */
static __pulumiType = 'scaleway:index/blockVolume:BlockVolume';
/**
* Returns true if the given object is an instance of BlockVolume. This is designed to work even
* when multiple copies of the Pulumi SDK have been loaded into the same process.
*/
static isInstance(obj) {
if (obj === undefined || obj === null) {
return false;
}
return obj['__pulumiType'] === BlockVolume.__pulumiType;
}
/** @deprecated scaleway.index/blockvolume.BlockVolume has been deprecated in favor of scaleway.block/volume.Volume */
constructor(name, argsOrState, opts) {
pulumi.log.warn("BlockVolume is deprecated: scaleway.index/blockvolume.BlockVolume has been deprecated in favor of scaleway.block/volume.Volume");
let resourceInputs = {};
opts = opts || {};
if (opts.id) {
const state = argsOrState;
resourceInputs["instanceVolumeId"] = state?.instanceVolumeId;
resourceInputs["iops"] = state?.iops;
resourceInputs["name"] = state?.name;
resourceInputs["projectId"] = state?.projectId;
resourceInputs["sizeInGb"] = state?.sizeInGb;
resourceInputs["snapshotId"] = state?.snapshotId;
resourceInputs["tags"] = state?.tags;
resourceInputs["zone"] = state?.zone;
}
else {
const args = argsOrState;
if (args?.iops === undefined && !opts.urn) {
throw new Error("Missing required property 'iops'");
}
resourceInputs["instanceVolumeId"] = args?.instanceVolumeId;
resourceInputs["iops"] = args?.iops;
resourceInputs["name"] = args?.name;
resourceInputs["projectId"] = args?.projectId;
resourceInputs["sizeInGb"] = args?.sizeInGb;
resourceInputs["snapshotId"] = args?.snapshotId;
resourceInputs["tags"] = args?.tags;
resourceInputs["zone"] = args?.zone;
}
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
super(BlockVolume.__pulumiType, name, resourceInputs, opts);
}
}
exports.BlockVolume = BlockVolume;
//# sourceMappingURL=blockVolume.js.map