Package Exports
- @ovh-api-ca/hosting-private-database
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@ovh-api-ca/hosting-private-database) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
OVHCloud API client for hosting-private-database region Canada
This module contains all typing needed to use OvhCloud hosting-private-database APIs, with hi-level IntelliSense / Code Completion
Setup
With npm:
npm install --save @ovh-api/api
npm install --save @ovh-api-ca/me
npm install --save @ovh-api-ca/hosting-private-database
... Add all APIs you needs
Usage
import OvhEngine from '@ovh-api/api';
import apiMe from '@ovh-api-ca/me';
import apiHostingPrivateDatabase from '@ovh-api-ca/hosting-private-database';
const ovhEngine = new OvhEngine({
certCache: './cert-cache.json', // optional cache certificat on disk.
accessRules: 'GET /hosting/privateDatabase, GET /hosting/privateDatabase/*, GET /me', // optional limit the requested privileges.
});
const api = {
me: apiMe(ovhEngine),
hostingPrivateDatabase: apiHostingPrivateDatabase(ovhEngine),
}
const test = async () => {
const { nichandle } = await api.me.$get();
const data = await api.hostingPrivateDatabase.$get();
console.log(`${nichandle} have the following services:`);
console.log(data);
}