Python SDK for the Ionos DBaaS MongoDB API
Project description
Python API client for ionoscloud_dbaas_mongo
With IONOS Cloud Database as a Service, you have the ability to quickly set up and manage a MongoDB database. You can also delete clusters, manage backups and users via the API.
MongoDB is an open source, cross-platform, document-oriented database program. Classified as a NoSQL database program, it uses JSON-like documents with optional schemas.
The MongoDB API allows you to create additional database clusters or modify existing ones. Both tools, the Data Center Designer (DCD) and the API use the same concepts consistently and are well suited for smooth and intuitive use.
Overview
The IONOS Cloud SDK for Python provides you with access to the IONOS Cloud Dbaas Postgres API. The client library supports both simple and complex requests. It is designed for developers who are building applications in Python. All API operations are performed over SSL and authenticated using your IONOS Cloud portal credentials. The API can be accessed within an instance running in IONOS Cloud or directly over the Internet from any application that can send an HTTPS request and receive an HTTPS response.
Installation & Usage
Requirements:
- Python >= 3.5
pip install
Since this package is hosted on Pypi you can install it by using:
pip install ionoscloud-dbaas-mongo
If the python package is hosted on a repository, you can install directly using:
pip install git+https://github.com/ionos-cloud/sdk-python-dbaas-mongo.git
Note: you may need to run pip
with root permission: sudo pip install git+https://github.com/ionos-cloud/sdk-python-dbaas-mongo.git
Then import the package:
import ionoscloud_dbaas_mongo
Setuptools
Install via Setuptools.
python setup.py install --user
or sudo python setup.py install
to install the package for all users
Then import the package:
import ionoscloud_dbaas_mongo
NOTE: The Python SDK does not support Python 2. It only supports Python >= 3.5.
Authentication
The username and password or the authentication token can be manually specified when initializing the SDK client:
configuration = ionoscloud_dbaas_mongo.Configuration(
username='YOUR_USERNAME',
password='YOUR_PASSWORD',
token='YOUR_TOKEN'
)
client = ionoscloud_dbaas_mongo.ApiClient(configuration)
Environment variables can also be used. This is an example of how one would do that:
import os
configuration = ionoscloud_dbaas_mongo.Configuration(
username=os.environ.get('IONOS_USERNAME'),
password=os.environ.get('IONOS_PASSWORD'),
token=os.environ.get('IONOS_TOKEN')
)
client = ionoscloud_dbaas_mongo.ApiClient(configuration)
Warning: Make sure to follow the Information Security Best Practices when using credentials within your code or storing them in a file.
HTTP proxies
You can use http proxies by setting the following environment variables:
IONOS_HTTP_PROXY
- proxy URLIONOS_HTTP_PROXY_HEADERS
- proxy headers
Changing the base URL
Base URL for the HTTP operation can be changed in the following way:
import os
configuration = ionoscloud_dbaas_mongo.Configuration(
username=os.environ.get('IONOS_USERNAME'),
password=os.environ.get('IONOS_PASSWORD'),
host=os.environ.get('IONOS_API_URL'),
server_index=None,
)
client = ionoscloud_dbaas_mongo.ApiClient(configuration)
Certificate pinning:
You can enable certificate pinning if you want to bypass the normal certificate checking procedure, by doing the following:
Set env variable IONOS_PINNED_CERT=<insert_sha256_public_fingerprint_here>
You can get the sha256 fingerprint most easily from the browser by inspecting the certificate.
Documentation for API Endpoints
All URIs are relative to https://api.ionos.com/databases/mongodb
API Endpoints table
Class | Method | HTTP request | Description |
---|---|---|---|
ClustersApi | clusters_delete | DELETE /clusters/{clusterId} | Delete a Cluster |
ClustersApi | clusters_find_by_id | GET /clusters/{clusterId} | Get a cluster by id |
ClustersApi | clusters_get | GET /clusters | Get Clusters |
ClustersApi | clusters_patch | PATCH /clusters/{clusterId} | Patch a cluster |
ClustersApi | clusters_post | POST /clusters | Create a Cluster |
LogsApi | clusters_logs_get | GET /clusters/{clusterId}/logs | Get logs of your cluster |
MetadataApi | infos_version_get | GET /infos/version | Get API Version |
MetadataApi | infos_versions_get | GET /infos/versions | Get All API Versions |
RestoresApi | clusters_restore_post | POST /clusters/{clusterId}/restore | In-place restore of a cluster |
SnapshotsApi | clusters_snapshots_get | GET /clusters/{clusterId}/snapshots | Get the snapshots of your cluster |
TemplatesApi | templates_get | GET /templates | Get Templates |
UsersApi | clusters_users_delete | DELETE /clusters/{clusterId}/users/{database}/{username} | Delete a MongoDB User by ID |
UsersApi | clusters_users_find_by_id | GET /clusters/{clusterId}/users/{database}/{username} | Get a MongoDB User by ID |
UsersApi | clusters_users_get | GET /clusters/{clusterId}/users | Get a Cluster Users |
UsersApi | clusters_users_patch | PATCH /clusters/{clusterId}/users/{database}/{username} | Patch a MongoDB User by ID |
UsersApi | clusters_users_post | POST /clusters/{clusterId}/users | Create MongoDB User |
Documentation For Models
All URIs are relative to https://api.ionos.com/databases/mongodb
API models list
- APIVersion
- ClusterList
- ClusterListAllOf
- ClusterLogs
- ClusterLogsInstances
- ClusterLogsMessages
- ClusterProperties
- ClusterResponse
- Connection
- CreateClusterProperties
- CreateClusterRequest
- CreateRestoreRequest
- DayOfTheWeek
- ErrorMessage
- ErrorResponse
- MaintenanceWindow
- Metadata
- Pagination
- PaginationLinks
- PatchClusterProperties
- PatchClusterRequest
- PatchUserProperties
- PatchUserRequest
- ResourceType
- SnapshotList
- SnapshotListAllOf
- SnapshotProperties
- SnapshotResponse
- State
- TemplateList
- TemplateListAllOf
- TemplateResponse
- User
- UserMetadata
- UserProperties
- UserRoles
- UsersList
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file ionoscloud-dbaas-mongo-1.1.0.tar.gz
.
File metadata
- Download URL: ionoscloud-dbaas-mongo-1.1.0.tar.gz
- Upload date:
- Size: 47.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2881cc2cc1f0a1bc3dda6d3818a55f37bd2d2b3a88dce0b6130498aa947ca16a |
|
MD5 | f806d505543d5e3cd88330b620711195 |
|
BLAKE2b-256 | 999c3d1393543b7fbc7b179e05b9334684ec3733e38d34156f2a1c9bac53a5e9 |
File details
Details for the file ionoscloud_dbaas_mongo-1.1.0-py3-none-any.whl
.
File metadata
- Download URL: ionoscloud_dbaas_mongo-1.1.0-py3-none-any.whl
- Upload date:
- Size: 114.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fb00e05faadf26918d5ef50d235f78d46d3f341ed214171c6b9c555cdaaefff9 |
|
MD5 | 571094d1c1066e2367fbd81abbf3bafb |
|
BLAKE2b-256 | cba2063540acc4899319de002d5e4b5742fd50ef0020982bd775fcd98d116edc |