5.0.2 • Published 11 months ago

@ovh-api-ca/storage v5.0.2

Weekly downloads
-
License
MIT
Repository
github
Last release
11 months ago

OVHCloud API client for storage region Canada

This module contains all typing needed to use OvhCloud storage APIs, with hi-level IntelliSense / Code Completion

NPM Version

Setup

With npm:

npm install --save @ovh-api/api
npm install --save @ovh-api-ca/me
npm install --save @ovh-api-ca/storage
... Add all APIs you needs

Usage

import OvhEngine from '@ovh-api/api';
import apiMe from '@ovh-api-ca/me';
import apiStorage from '@ovh-api-ca/storage';

const ovhEngine = new OvhEngine({ 
    certCache: './cert-cache.json', // optional cache certificat on disk.
    accessRules: 'GET /storage, GET /storage/*, GET /me', // optional limit the requested privileges.
});

const api = {
    me: apiMe(ovhEngine),
    storage: apiStorage(ovhEngine),
}

const test = async () => {
    const { nichandle } = await api.me.$get();
    const data = await api.storage.$get();
    console.log(`${nichandle} have the following services:`);
    console.log(data);
}
4.0.4

11 months ago

5.0.2

11 months ago

5.0.1

11 months ago

5.0.0

11 months ago

4.0.3

2 years ago

4.0.1

2 years ago

4.0.0

2 years ago

3.1.27

3 years ago

3.1.26

3 years ago