@ovh-soyoustart-ca/license-plesk
v5.0.1
Published
Add typing to to ovh api license-plesk
Downloads
49
Maintainers
Readme
OVHCloud API client for license-plesk region Canada
This module contains all typing needed to use OvhCloud license-plesk APIs, with hi-level IntelliSense / Code Completion
Setup
With npm:
npm install --save @ovh-api/api
npm install --save @ovh-soyoustart-ca/me
npm install --save @ovh-soyoustart-ca/license-plesk
... Add all APIs you needs
Usage
import OvhEngine from '@ovh-api/api';
import apiMe from '@ovh-soyoustart-ca/me';
import apiLicensePlesk from '@ovh-soyoustart-ca/license-plesk';
const ovhEngine = new OvhEngine({
certCache: './cert-cache.json', // optional cache certificat on disk.
accessRules: 'GET /license/plesk, GET /license/plesk/*, GET /me', // optional limit the requested privileges.
});
const api = {
me: apiMe(ovhEngine),
licensePlesk: apiLicensePlesk(ovhEngine),
}
const test = async () => {
const { nichandle } = await api.me.$get();
const data = await api.licensePlesk.$get();
console.log(`${nichandle} have the following services:`);
console.log(data);
}