{"id":18552612,"url":"https://github.com/ionos-cloud/sdk-nodejs-dbaas-mongo","last_synced_at":"2025-10-25T00:44:41.287Z","repository":{"id":83950708,"uuid":"542076521","full_name":"ionos-cloud/sdk-nodejs-dbaas-mongo","owner":"ionos-cloud","description":null,"archived":false,"fork":false,"pushed_at":"2024-01-10T06:48:26.000Z","size":125,"stargazers_count":0,"open_issues_count":2,"forks_count":0,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-06-02T09:29:18.899Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ionos-cloud.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-09-27T12:36:06.000Z","updated_at":"2022-11-07T15:53:11.000Z","dependencies_parsed_at":"2024-12-26T08:25:40.985Z","dependency_job_id":"dbe69006-7959-4bf5-8b59-a7dc9f2ed5b7","html_url":"https://github.com/ionos-cloud/sdk-nodejs-dbaas-mongo","commit_stats":null,"previous_names":[],"tags_count":6,"template":false,"template_full_name":null,"purl":"pkg:github/ionos-cloud/sdk-nodejs-dbaas-mongo","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ionos-cloud%2Fsdk-nodejs-dbaas-mongo","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ionos-cloud%2Fsdk-nodejs-dbaas-mongo/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ionos-cloud%2Fsdk-nodejs-dbaas-mongo/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ionos-cloud%2Fsdk-nodejs-dbaas-mongo/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ionos-cloud","download_url":"https://codeload.github.com/ionos-cloud/sdk-nodejs-dbaas-mongo/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ionos-cloud%2Fsdk-nodejs-dbaas-mongo/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":262819557,"owners_count":23369495,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-06T21:14:41.768Z","updated_at":"2025-10-25T00:44:36.245Z","avatar_url":"https://github.com/ionos-cloud.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Node API Client For IONOS Cloud DBaaS Mongo\n[![[ CI ] DBaaS Mongo / Node](https://github.com/ionos-cloud/sdk-resources/actions/workflows/ci-dbaas-mongo-node.yml/badge.svg)](https://github.com/ionos-cloud/sdk-resources/actions/workflows/ci-dbaas-mongo-node.yml)\n# Overview\nAn enterprise-grade Database is provided as a Service (DBaaS) solution that\ncan be managed through a browser-based \\\"Data Center Designer\\\" (DCD) tool or\nvia an easy to use API.\n\nThe API allows you to create additional database clusters or modify existing\nones. It is designed to allow users to leverage the same power and\nflexibility found within the DCD visual tool. Both tools are consistent with\ntheir concepts and lend well to making the experience smooth and intuitive.\n\n\n## Getting Started\n\nAn IONOS account is required for access to the Cloud API; credentials from your registration are used to authenticate against the IONOS Cloud API.\n\n## Installation\n\nInstall the following dependencies:\n\n```shell\nnpm i --save @ionos-cloud/sdk-nodejs-dbaas-mongo\n```\n\n## Usage\nImport the SDK using:\n\n```javascript\nconst sdk = require('@ionos-cloud/sdk-nodejs-dbaas-mongo')\n```\n\nOr, if the import is done from an ES module, use:\n\n```javascript\nimport * as sdk from '@ionos-cloud/sdk-nodejs-dbaas-mongo';\n```\n\nUsage example:\n```javascript\nconst config = new sdk.Configuration({username: 'YOUR_USERNAME', password: 'YOUR_PASSWORD'});\nconst clustersApi = new sdk.ClustersApi(config);\n\nclustersApi.clustersGet().then((response) =\u003e console.log(response));\n```\n\n### Authentication\n\nThe username and password or the authentication token can be manually specified when initializing the SDK client:\n\n```typescript\nconst config = new sdk.Configuration({username: 'YOUR_USERNAME', password: 'YOUR_PASSWORD'});\nconst clustersApi = new sdk.ClustersApi(config);\n```\n\nEnvironment variables can also be used; the SDK uses the following variables:\n\n* IONOS\\_USERNAME - to specify the username used to login\n* IONOS\\_PASSWORD - to specify the password\n* IONOS\\_TOKEN - if an authentication token is being used\n\nIn this case, the client configuration must be initialized using `fromEnv()`:\n\n```javascript\nclustersApi = new sdk.ClustersApi(sdk.Configuration.fromEnv());\n```\n\n**Warning**: Make sure to follow the Information Security Best Practices when using credentials within your code or storing them in a file.\n\n## Feature Reference\n\nThe IONOS Cloud SDK for Nodejs DBaaS Mongo aims to offer access to all resources in the IONOS DBaaS Mongo API, and has additional features to make integration easier:\n\n* Authentication for API calls\n* Asynchronous request handling\n\n## FAQ\n\n1. How can I open a bug report/feature request?\n\nBug reports and feature requests can be opened in the Issues repository: [https://github.com/ionos-cloud/sdk-nodejs-dbaas-mongo/issues/new/choose](https://github.com/ionos-cloud/sdk-nodejs-dbaas-mongo/issues/new/choose)\n\n2. Can I contribute to the NodeJS DBaaS Mongo SDK?\n\nOur SDKs are automatically generated using OpenAPI Generator and don’t support manual changes. If you require changes, please open an issue and we will try to address it.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fionos-cloud%2Fsdk-nodejs-dbaas-mongo","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fionos-cloud%2Fsdk-nodejs-dbaas-mongo","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fionos-cloud%2Fsdk-nodejs-dbaas-mongo/lists"}