@ovh-kimsufi/dedicated-nas

Add typing to to ovh api dedicated-nas

Usage no npm install needed!

<script type="module">
  import ovhKimsufiDedicatedNas from 'https://cdn.skypack.dev/@ovh-kimsufi/dedicated-nas';
</script>

README

OVHCloud API client for dedicated-nas region Europe

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

NPM Version

Setup

With npm:

npm install --save @ovh-api/api
npm install --save @ovh-kimsufi/me
npm install --save @ovh-kimsufi/dedicated-nas
... Add all APIs you needs

Usage

import OvhEngine from '@ovh-api/api';
import apiMe from '@ovh-kimsufi/me';
import apiDedicatedNas from '@ovh-kimsufi/dedicated-nas';

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

const api = {
    me: apiMe(ovhEngine),
    dedicatedNas: apiDedicatedNas(ovhEngine),
}

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