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