This module connects to the Digital Ocean's API and allow you to operate over volumes.
Block Storage is currently in Beta. Some things may not be as you spect. See documentation before using this module.
[![NPM](https://nodei.co/npm/block-storage.png)](https://nodei.co/npm/block-storage/)
- Installation
- Authentication: Bearer Token
- Available resources and methods(API)
- Ussage
- Using callbacks
- [Using promises(#1)](#using-promises1)
- Using
async
functions(ES7/ES2016)
- License MIT
To download the Block Storage API Client that I've made simply download it via NPM. NPM is always going to have the latest stable version of it. Be free to add any flag after the command such as --save
or --save-dev
$ npm install block-storage
To use the module you have to give it a token. This token allows you to use the entire Digital Ocean API. Click here to generate a Digital Ocean token using your account
const Volumes = require('block-storage')
const volumes = new Volumes({
token: '0X0X0X0X0X0X0X0X0X'
})
volumes
means the variable that has the client to connect to the Digital Ocean Volumes API correctly configured. See authentication again to see more about that variable.
Brings a single volume using its id.
volumes.get(volumeId, (err, volume) => {
if (err) console.log(err)
console.log(volume)
})
Brings a list of all volumes on your Digital Ocean's account.
volumes.list( (err, volumes) => {
if (err) console.log(err)
console.log(volumes)
})
Creates a volume.
volumes.create({
"size_gigabytes": 10,
"name": "example",
"description": "An awesome Block Storage unit",
"region": "nyc1"
}, (err, volume) => {
if (err) console.log(err)
console.log(volume)
})
Retrieves all actions that have been executed on a volume.
volumes.actions(volumeId, (err, actions) => {
if (err) console.log(err)
console.log(actions)
})
Attaches a volume into a droplet.
volumes.attach(volumeId, dropletId, (err, res) => {
if (err) console.log(err)
console.log(res)
})
Detaches a volume out of a droplet.
volumes.detach(volumeId, dropletId, (err, res) => {
if (err) console.log(err)
console.log(res)
})
Deletes a single volume.
volumes.delete(volumeId)
Resizes a single volume.
volumes.resize(volumeId, gigabytes, (err, obj) => {
if (err) console.log(err)
console.log(obj)
})
volumes.get(volumeId, (err, volume) => {
if (err) console.log(err)
console.log(volume)
})
Using promises(#1)
volumes
.get(volumeId)
.then((volume) => {
console.log(volume)
})
.catch((err) => {
console.log(err)
})
See a full example of the ussage of promises on Tonic. You will need a valid Digital Ocean API token to run the example.
async function getVolume() {
try {
let volume = await volumes.get(volumeId)
console.log(volume)
}
catch (e) {
console.log(e)
}
}
Copyright (c) 2016 - Miguel Ruiz
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.