# @ovh-api-us/ovh-cloud-connect

> Add typing to to ovh api ovh-cloud-connect

Latest version **5.0.1** (published 2024-06-08) · MIT license · 0 weekly downloads

## Install

```sh
npm install @ovh-api-us/ovh-cloud-connect
pnpm add @ovh-api-us/ovh-cloud-connect
yarn add @ovh-api-us/ovh-cloud-connect
bun add @ovh-api-us/ovh-cloud-connect
```

## Health

**Score 25/100 (F)** — status: abandoned.

Positive: has types; esm support; no vulnerabilities.

Warnings: low downloads.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 5.0.1 |
| Published | 2024-06-08 |
| First published | 2022-10-16 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | bundled |
| Module format | ESM + CommonJS |
| Dependencies | 1 |
| Unpacked size | 32.5 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 17 |
| Author | Uriel Chemouni |
| Maintainers | urielch |
| Keywords | ovh, ovhCloud, api, typing, typescript |

## Links

- npm: https://www.npmjs.com/package/@ovh-api-us/ovh-cloud-connect
- Repository: https://github.com/UrielCh/api-ovh-node
- Homepage: https://github.com/UrielCh/api-ovh-node#readme
- Issues: https://github.com/UrielCh/api-ovh-node/issues
- npm.io page: https://npm.io/package/@ovh-api-us/ovh-cloud-connect

## Dependencies (1)

- [@ovh-api/common](https://npm.io/package/@ovh-api/common.md) ^4.0.4

## Alternatives

- [@openai/codex-sdk](https://npm.io/package/@openai/codex-sdk.md) — 731.4K weekly downloads
- [babel-plugin-transform-react-jsx](https://npm.io/package/babel-plugin-transform-react-jsx.md) — 565.0K weekly downloads
- [babel-helper-remove-or-void](https://npm.io/package/babel-helper-remove-or-void.md) — 508.5K weekly downloads
- [@pnpm/store-controller-types](https://npm.io/package/@pnpm/store-controller-types.md) — 186.9K weekly downloads
- [react-native-signature-canvas](https://npm.io/package/react-native-signature-canvas.md) — 155.6K weekly downloads

## Recent versions

- 5.0.1 (latest) — 2024-06-08
- 5.0.0 — 2024-06-08
- 4.0.4 — 2024-06-08
- 4.0.3 — 2023-05-23
- 4.0.2 — 2023-05-23
- 4.0.1 — 2023-03-30
- 4.0.0 — 2022-12-07
- 3.1.28 — 2022-10-16

## README

# OVHCloud API client for **ovh-cloud-connect** region USA

This module contains all typing needed to use OvhCloud **ovh-cloud-connect** APIs, with hi-level IntelliSense / Code Completion

[![NPM Version](https://img.shields.io/npm/v/@ovh-api-us/ovh-cloud-connect.svg?style=flat)](https://www.npmjs.org/package/@ovh-api-us/ovh-cloud-connect)

## Setup

With npm:

```bash
npm install --save @ovh-api/api
npm install --save @ovh-api-us/me
npm install --save @ovh-api-us/ovh-cloud-connect
... Add all APIs you needs
```

## Usage

```typescript
import OvhEngine from '@ovh-api/api';
import apiMe from '@ovh-api-us/me';
import apiOvhCloudConnect from '@ovh-api-us/ovh-cloud-connect';

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

const api = {
    me: apiMe(ovhEngine),
    ovhCloudConnect: apiOvhCloudConnect(ovhEngine),
}

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

---
_Source: https://npm.io/package/@ovh-api-us/ovh-cloud-connect · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
