@ovh-api-us/vrack

Add typing to to ovh api vrack

Usage no npm install needed!

<script type="module">
  import ovhApiUsVrack from 'https://cdn.skypack.dev/@ovh-api-us/vrack';
</script>

README

OVHCloud API client for vrack region USA

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

NPM Version

Setup

With npm:

npm install --save @ovh-api/api
npm install --save @ovh-api-us/me
npm install --save @ovh-api-us/vrack
... Add all APIs you needs

Usage

import OvhEngine from '@ovh-api/api';
import apiMe from '@ovh-api-us/me';
import apiVrack from '@ovh-api-us/vrack';

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

const api = {
    me: apiMe(ovhEngine),
    vrack: apiVrack(ovhEngine),
}

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