ionoscloud-dbaas-postgres


Nameionoscloud-dbaas-postgres JSON
Version 1.2.0 PyPI version JSON
download
home_pagehttps://github.com/ionos-cloud/sdk-python-dbaas-postgres
SummaryPython SDK for the Ionos DBaaS Postgres API
upload_time2023-07-27 12:29:03
maintainer
docs_urlNone
authorIonos Cloud
requires_python
license
keywords openapi openapi-generator ionos dbaas postgresql rest api
VCS
bugtrack_url
requirements certifi future six python_dateutil setuptools urllib3 asn1crypto pydantic
Travis-CI
coveralls test coverage No coveralls.
            ![CI Python DBaaS Postgres](https://github.com/ionos-cloud/sdk-resources/workflows/[%20CI%20]%20DBaaS%20Postgres%20/%20Python/badge.svg)
[![Gitter](https://img.shields.io/gitter/room/ionos-cloud/sdk-general)](https://gitter.im/ionos-cloud/sdk-general)
[![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=sdk-python-dbaas-postgres&metric=alert_status)](https://sonarcloud.io/summary?id=sdk-python-dbaas-postgres)
[![Bugs](https://sonarcloud.io/api/project_badges/measure?project=sdk-python-dbaas-postgres&metric=bugs)](https://sonarcloud.io/summary/new_code?id=sdk-python-dbaas-postgres)
[![Maintainability Rating](https://sonarcloud.io/api/project_badges/measure?project=sdk-python-dbaas-postgres&metric=sqale_rating)](https://sonarcloud.io/summary/new_code?id=sdk-python-dbaas-postgres)
[![Reliability Rating](https://sonarcloud.io/api/project_badges/measure?project=sdk-python-dbaas-postgres&metric=reliability_rating)](https://sonarcloud.io/summary/new_code?id=sdk-python-dbaas-postgres)
[![Security Rating](https://sonarcloud.io/api/project_badges/measure?project=sdk-python-dbaas-postgres&metric=security_rating)](https://sonarcloud.io/summary/new_code?id=sdk-python-dbaas-postgres)
[![Vulnerabilities](https://sonarcloud.io/api/project_badges/measure?project=sdk-python-dbaas-postgres&metric=vulnerabilities)](https://sonarcloud.io/summary/new_code?id=sdk-python-dbaas-postgres)
[![Release](https://img.shields.io/github/v/release/ionos-cloud/sdk-python-dbaas-postgres.svg)](https://github.com/ionos-cloud/sdk-python-dbaas-postgres/releases/latest)
[![Release Date](https://img.shields.io/github/release-date/ionos-cloud/sdk-python-dbaas-postgres.svg)](https://github.com/ionos-cloud/sdk-python-dbaas-postgres/releases/latest)
[![PyPI version](https://img.shields.io/pypi/v/ionoscloud-dbaas-postgres)](https://pypi.org/project/ionoscloud-dbaas-postgres/)

![Alt text](.github/IONOS.CLOUD.BLU.svg?raw=true "Title")


# Python API client for ionoscloud_dbaas_postgres

An enterprise-grade Database is provided as a Service (DBaaS) solution that
can be managed through a browser-based \"Data Center Designer\" (DCD) tool or
via an easy to use API.

The API allows you to create additional PostgreSQL database clusters or modify existing
ones. It is designed to allow users to leverage the same power and
flexibility found within the DCD visual tool. Both tools are consistent with
their concepts and lend well to making the experience smooth and intuitive.


## 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](https://pypi.org/) you can install it by using:

```bash
pip install ionoscloud-dbaas-postgres
```

If the python package is hosted on a repository, you can install directly using:

```bash
pip install git+https://github.com/ionos-cloud/sdk-python-dbaas-postgres.git
```

Note: you may need to run `pip` with root permission: `sudo pip install git+https://github.com/ionos-cloud/sdk-python-dbaas-postgres.git`

Then import the package:

```python
import ionoscloud_dbaas_postgres
```

### Setuptools

Install via [Setuptools](http://pypi.python.org/pypi/setuptools).

```bash
python setup.py install --user
```

or `sudo python setup.py install` to install the package for all users

Then import the package:

```python
import ionoscloud_dbaas_postgres
```

> **_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:

```python
configuration = ionoscloud_dbaas_postgres.Configuration(
                username='YOUR_USERNAME',
                password='YOUR_PASSWORD',
                token='YOUR_TOKEN'
                )
client = ionoscloud_dbaas_postgres.ApiClient(configuration)
```

Environment variables can also be used. This is an example of how one would do that:

```python
import os

configuration = ionoscloud_dbaas_postgres.Configuration(
                username=os.environ.get('IONOS_USERNAME'),
                password=os.environ.get('IONOS_PASSWORD'),
                token=os.environ.get('IONOS_TOKEN')
                )
client = ionoscloud_dbaas_postgres.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 URL
- `IONOS_HTTP_PROXY_HEADERS` - proxy headers

### Changing the base URL

Base URL for the HTTP operation can be changed in the following way:

```python
import os

configuration = ionoscloud_dbaas_postgres.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_postgres.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/postgresql*
<details >
    <summary title="Click to toggle">API Endpoints table</summary>


| Class | Method | HTTP request | Description |
| ------------- | ------------- | ------------- | ------------- |
| BackupsApi | [**cluster_backups_get**](docs/api/BackupsApi.md#cluster_backups_get) | **GET** /clusters/{clusterId}/backups | List backups of cluster |
| BackupsApi | [**clusters_backups_find_by_id**](docs/api/BackupsApi.md#clusters_backups_find_by_id) | **GET** /clusters/backups/{backupId} | Fetch a cluster backup |
| BackupsApi | [**clusters_backups_get**](docs/api/BackupsApi.md#clusters_backups_get) | **GET** /clusters/backups | List cluster backups |
| ClustersApi | [**cluster_postgres_versions_get**](docs/api/ClustersApi.md#cluster_postgres_versions_get) | **GET** /clusters/{clusterId}/postgresversions | List PostgreSQL versions |
| ClustersApi | [**clusters_delete**](docs/api/ClustersApi.md#clusters_delete) | **DELETE** /clusters/{clusterId} | Delete a cluster |
| ClustersApi | [**clusters_find_by_id**](docs/api/ClustersApi.md#clusters_find_by_id) | **GET** /clusters/{clusterId} | Fetch a cluster |
| ClustersApi | [**clusters_get**](docs/api/ClustersApi.md#clusters_get) | **GET** /clusters | List clusters |
| ClustersApi | [**clusters_patch**](docs/api/ClustersApi.md#clusters_patch) | **PATCH** /clusters/{clusterId} | Patch a cluster |
| ClustersApi | [**clusters_post**](docs/api/ClustersApi.md#clusters_post) | **POST** /clusters | Create a cluster |
| ClustersApi | [**postgres_versions_get**](docs/api/ClustersApi.md#postgres_versions_get) | **GET** /clusters/postgresversions | List PostgreSQL versions |
| DatabasesApi | [**databases_delete**](docs/api/DatabasesApi.md#databases_delete) | **DELETE** /clusters/{clusterId}/databases/{databasename} | Delete database |
| DatabasesApi | [**databases_get**](docs/api/DatabasesApi.md#databases_get) | **GET** /clusters/{clusterId}/databases/{databasename} | Get database |
| DatabasesApi | [**databases_list**](docs/api/DatabasesApi.md#databases_list) | **GET** /clusters/{clusterId}/databases | List databases |
| DatabasesApi | [**databases_post**](docs/api/DatabasesApi.md#databases_post) | **POST** /clusters/{clusterId}/databases | Create a database |
| LogsApi | [**cluster_logs_get**](docs/api/LogsApi.md#cluster_logs_get) | **GET** /clusters/{clusterId}/logs | Get logs of your cluster |
| MetadataApi | [**infos_version_get**](docs/api/MetadataApi.md#infos_version_get) | **GET** /infos/version | Get the current API version |
| MetadataApi | [**infos_versions_get**](docs/api/MetadataApi.md#infos_versions_get) | **GET** /infos/versions | Fetch all API versions |
| RestoresApi | [**cluster_restore_post**](docs/api/RestoresApi.md#cluster_restore_post) | **POST** /clusters/{clusterId}/restore | In-place restore of a cluster |
| UsersApi | [**users_delete**](docs/api/UsersApi.md#users_delete) | **DELETE** /clusters/{clusterId}/users/{username} | Delete user |
| UsersApi | [**users_get**](docs/api/UsersApi.md#users_get) | **GET** /clusters/{clusterId}/users/{username} | Get user |
| UsersApi | [**users_list**](docs/api/UsersApi.md#users_list) | **GET** /clusters/{clusterId}/users | List users |
| UsersApi | [**users_patch**](docs/api/UsersApi.md#users_patch) | **PATCH** /clusters/{clusterId}/users/{username} | Patch user |
| UsersApi | [**users_post**](docs/api/UsersApi.md#users_post) | **POST** /clusters/{clusterId}/users | Create a user |

</details>

## Documentation For Models

All URIs are relative to *https://api.ionos.com/databases/postgresql*
<details >
<summary title="Click to toggle">API models list</summary>

 - [APIVersion](docs/models/APIVersion)
 - [BackupMetadata](docs/models/BackupMetadata)
 - [BackupResponse](docs/models/BackupResponse)
 - [ClusterBackup](docs/models/ClusterBackup)
 - [ClusterBackupList](docs/models/ClusterBackupList)
 - [ClusterBackupListAllOf](docs/models/ClusterBackupListAllOf)
 - [ClusterList](docs/models/ClusterList)
 - [ClusterListAllOf](docs/models/ClusterListAllOf)
 - [ClusterLogs](docs/models/ClusterLogs)
 - [ClusterLogsInstances](docs/models/ClusterLogsInstances)
 - [ClusterLogsInstancesMessages](docs/models/ClusterLogsInstancesMessages)
 - [ClusterMetadata](docs/models/ClusterMetadata)
 - [ClusterProperties](docs/models/ClusterProperties)
 - [ClusterResponse](docs/models/ClusterResponse)
 - [Connection](docs/models/Connection)
 - [CreateClusterProperties](docs/models/CreateClusterProperties)
 - [CreateClusterRequest](docs/models/CreateClusterRequest)
 - [CreateRestoreRequest](docs/models/CreateRestoreRequest)
 - [DBUser](docs/models/DBUser)
 - [Database](docs/models/Database)
 - [DatabaseItems](docs/models/DatabaseItems)
 - [DatabaseList](docs/models/DatabaseList)
 - [DatabaseProperties](docs/models/DatabaseProperties)
 - [DatabaseResource](docs/models/DatabaseResource)
 - [DayOfTheWeek](docs/models/DayOfTheWeek)
 - [DeprecatedPagination](docs/models/DeprecatedPagination)
 - [ErrorMessage](docs/models/ErrorMessage)
 - [ErrorResponse](docs/models/ErrorResponse)
 - [MaintenanceWindow](docs/models/MaintenanceWindow)
 - [Metadata](docs/models/Metadata)
 - [Pagination](docs/models/Pagination)
 - [PaginationLinks](docs/models/PaginationLinks)
 - [PatchClusterProperties](docs/models/PatchClusterProperties)
 - [PatchClusterRequest](docs/models/PatchClusterRequest)
 - [PatchUserProperties](docs/models/PatchUserProperties)
 - [PostgresVersionList](docs/models/PostgresVersionList)
 - [PostgresVersionListData](docs/models/PostgresVersionListData)
 - [Resource](docs/models/Resource)
 - [ResourceMetadata](docs/models/ResourceMetadata)
 - [ResourceType](docs/models/ResourceType)
 - [State](docs/models/State)
 - [StorageType](docs/models/StorageType)
 - [SynchronizationMode](docs/models/SynchronizationMode)
 - [User](docs/models/User)
 - [UserItems](docs/models/UserItems)
 - [UserList](docs/models/UserList)
 - [UserProperties](docs/models/UserProperties)
 - [UserResource](docs/models/UserResource)
 - [UsersPatchRequest](docs/models/UsersPatchRequest)


[[Back to API list]](#documentation-for-api-endpoints) [[Back to Model list]](#documentation-for-models)

</details>

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/ionos-cloud/sdk-python-dbaas-postgres",
    "name": "ionoscloud-dbaas-postgres",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "OpenAPI,OpenAPI-Generator,IONOS DBaaS PostgreSQL REST API",
    "author": "Ionos Cloud",
    "author_email": "sdk@cloud.ionos.com",
    "download_url": "https://files.pythonhosted.org/packages/d3/26/f17bd9c1b4172d25a9abb75cfa93d854234e6ead4127362cd074db19e0ab/ionoscloud-dbaas-postgres-1.2.0.tar.gz",
    "platform": null,
    "description": "![CI Python DBaaS Postgres](https://github.com/ionos-cloud/sdk-resources/workflows/[%20CI%20]%20DBaaS%20Postgres%20/%20Python/badge.svg)\n[![Gitter](https://img.shields.io/gitter/room/ionos-cloud/sdk-general)](https://gitter.im/ionos-cloud/sdk-general)\n[![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=sdk-python-dbaas-postgres&metric=alert_status)](https://sonarcloud.io/summary?id=sdk-python-dbaas-postgres)\n[![Bugs](https://sonarcloud.io/api/project_badges/measure?project=sdk-python-dbaas-postgres&metric=bugs)](https://sonarcloud.io/summary/new_code?id=sdk-python-dbaas-postgres)\n[![Maintainability Rating](https://sonarcloud.io/api/project_badges/measure?project=sdk-python-dbaas-postgres&metric=sqale_rating)](https://sonarcloud.io/summary/new_code?id=sdk-python-dbaas-postgres)\n[![Reliability Rating](https://sonarcloud.io/api/project_badges/measure?project=sdk-python-dbaas-postgres&metric=reliability_rating)](https://sonarcloud.io/summary/new_code?id=sdk-python-dbaas-postgres)\n[![Security Rating](https://sonarcloud.io/api/project_badges/measure?project=sdk-python-dbaas-postgres&metric=security_rating)](https://sonarcloud.io/summary/new_code?id=sdk-python-dbaas-postgres)\n[![Vulnerabilities](https://sonarcloud.io/api/project_badges/measure?project=sdk-python-dbaas-postgres&metric=vulnerabilities)](https://sonarcloud.io/summary/new_code?id=sdk-python-dbaas-postgres)\n[![Release](https://img.shields.io/github/v/release/ionos-cloud/sdk-python-dbaas-postgres.svg)](https://github.com/ionos-cloud/sdk-python-dbaas-postgres/releases/latest)\n[![Release Date](https://img.shields.io/github/release-date/ionos-cloud/sdk-python-dbaas-postgres.svg)](https://github.com/ionos-cloud/sdk-python-dbaas-postgres/releases/latest)\n[![PyPI version](https://img.shields.io/pypi/v/ionoscloud-dbaas-postgres)](https://pypi.org/project/ionoscloud-dbaas-postgres/)\n\n![Alt text](.github/IONOS.CLOUD.BLU.svg?raw=true \"Title\")\n\n\n# Python API client for ionoscloud_dbaas_postgres\n\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 PostgreSQL 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## Overview\nThe 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.\n\n\n### Installation & Usage\n\n**Requirements:**\n- Python >= 3.5\n\n### pip install\n\nSince this package is hosted on [Pypi](https://pypi.org/) you can install it by using:\n\n```bash\npip install ionoscloud-dbaas-postgres\n```\n\nIf the python package is hosted on a repository, you can install directly using:\n\n```bash\npip install git+https://github.com/ionos-cloud/sdk-python-dbaas-postgres.git\n```\n\nNote: you may need to run `pip` with root permission: `sudo pip install git+https://github.com/ionos-cloud/sdk-python-dbaas-postgres.git`\n\nThen import the package:\n\n```python\nimport ionoscloud_dbaas_postgres\n```\n\n### Setuptools\n\nInstall via [Setuptools](http://pypi.python.org/pypi/setuptools).\n\n```bash\npython setup.py install --user\n```\n\nor `sudo python setup.py install` to install the package for all users\n\nThen import the package:\n\n```python\nimport ionoscloud_dbaas_postgres\n```\n\n> **_NOTE:_**  The Python SDK does not support Python 2. It only supports Python >= 3.5.\n\n### Authentication\n\nThe username and password **or** the authentication token can be manually specified when initializing the SDK client:\n\n```python\nconfiguration = ionoscloud_dbaas_postgres.Configuration(\n                username='YOUR_USERNAME',\n                password='YOUR_PASSWORD',\n                token='YOUR_TOKEN'\n                )\nclient = ionoscloud_dbaas_postgres.ApiClient(configuration)\n```\n\nEnvironment variables can also be used. This is an example of how one would do that:\n\n```python\nimport os\n\nconfiguration = ionoscloud_dbaas_postgres.Configuration(\n                username=os.environ.get('IONOS_USERNAME'),\n                password=os.environ.get('IONOS_PASSWORD'),\n                token=os.environ.get('IONOS_TOKEN')\n                )\nclient = ionoscloud_dbaas_postgres.ApiClient(configuration)\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\n### HTTP proxies\n\nYou can use http proxies by setting the following environment variables:\n- `IONOS_HTTP_PROXY` - proxy URL\n- `IONOS_HTTP_PROXY_HEADERS` - proxy headers\n\n### Changing the base URL\n\nBase URL for the HTTP operation can be changed in the following way:\n\n```python\nimport os\n\nconfiguration = ionoscloud_dbaas_postgres.Configuration(\n                username=os.environ.get('IONOS_USERNAME'),\n                password=os.environ.get('IONOS_PASSWORD'),\n                host=os.environ.get('IONOS_API_URL'),\n                server_index=None,\n                )\nclient = ionoscloud_dbaas_postgres.ApiClient(configuration)\n```\n\n## Certificate pinning:\n\nYou can enable certificate pinning if you want to bypass the normal certificate checking procedure,\nby doing the following:\n\nSet env variable IONOS_PINNED_CERT=<insert_sha256_public_fingerprint_here>\n\nYou can get the sha256 fingerprint most easily from the browser by inspecting the certificate.\n\n\n## Documentation for API Endpoints\n\nAll URIs are relative to *https://api.ionos.com/databases/postgresql*\n<details >\n    <summary title=\"Click to toggle\">API Endpoints table</summary>\n\n\n| Class | Method | HTTP request | Description |\n| ------------- | ------------- | ------------- | ------------- |\n| BackupsApi | [**cluster_backups_get**](docs/api/BackupsApi.md#cluster_backups_get) | **GET** /clusters/{clusterId}/backups | List backups of cluster |\n| BackupsApi | [**clusters_backups_find_by_id**](docs/api/BackupsApi.md#clusters_backups_find_by_id) | **GET** /clusters/backups/{backupId} | Fetch a cluster backup |\n| BackupsApi | [**clusters_backups_get**](docs/api/BackupsApi.md#clusters_backups_get) | **GET** /clusters/backups | List cluster backups |\n| ClustersApi | [**cluster_postgres_versions_get**](docs/api/ClustersApi.md#cluster_postgres_versions_get) | **GET** /clusters/{clusterId}/postgresversions | List PostgreSQL versions |\n| ClustersApi | [**clusters_delete**](docs/api/ClustersApi.md#clusters_delete) | **DELETE** /clusters/{clusterId} | Delete a cluster |\n| ClustersApi | [**clusters_find_by_id**](docs/api/ClustersApi.md#clusters_find_by_id) | **GET** /clusters/{clusterId} | Fetch a cluster |\n| ClustersApi | [**clusters_get**](docs/api/ClustersApi.md#clusters_get) | **GET** /clusters | List clusters |\n| ClustersApi | [**clusters_patch**](docs/api/ClustersApi.md#clusters_patch) | **PATCH** /clusters/{clusterId} | Patch a cluster |\n| ClustersApi | [**clusters_post**](docs/api/ClustersApi.md#clusters_post) | **POST** /clusters | Create a cluster |\n| ClustersApi | [**postgres_versions_get**](docs/api/ClustersApi.md#postgres_versions_get) | **GET** /clusters/postgresversions | List PostgreSQL versions |\n| DatabasesApi | [**databases_delete**](docs/api/DatabasesApi.md#databases_delete) | **DELETE** /clusters/{clusterId}/databases/{databasename} | Delete database |\n| DatabasesApi | [**databases_get**](docs/api/DatabasesApi.md#databases_get) | **GET** /clusters/{clusterId}/databases/{databasename} | Get database |\n| DatabasesApi | [**databases_list**](docs/api/DatabasesApi.md#databases_list) | **GET** /clusters/{clusterId}/databases | List databases |\n| DatabasesApi | [**databases_post**](docs/api/DatabasesApi.md#databases_post) | **POST** /clusters/{clusterId}/databases | Create a database |\n| LogsApi | [**cluster_logs_get**](docs/api/LogsApi.md#cluster_logs_get) | **GET** /clusters/{clusterId}/logs | Get logs of your cluster |\n| MetadataApi | [**infos_version_get**](docs/api/MetadataApi.md#infos_version_get) | **GET** /infos/version | Get the current API version |\n| MetadataApi | [**infos_versions_get**](docs/api/MetadataApi.md#infos_versions_get) | **GET** /infos/versions | Fetch all API versions |\n| RestoresApi | [**cluster_restore_post**](docs/api/RestoresApi.md#cluster_restore_post) | **POST** /clusters/{clusterId}/restore | In-place restore of a cluster |\n| UsersApi | [**users_delete**](docs/api/UsersApi.md#users_delete) | **DELETE** /clusters/{clusterId}/users/{username} | Delete user |\n| UsersApi | [**users_get**](docs/api/UsersApi.md#users_get) | **GET** /clusters/{clusterId}/users/{username} | Get user |\n| UsersApi | [**users_list**](docs/api/UsersApi.md#users_list) | **GET** /clusters/{clusterId}/users | List users |\n| UsersApi | [**users_patch**](docs/api/UsersApi.md#users_patch) | **PATCH** /clusters/{clusterId}/users/{username} | Patch user |\n| UsersApi | [**users_post**](docs/api/UsersApi.md#users_post) | **POST** /clusters/{clusterId}/users | Create a user |\n\n</details>\n\n## Documentation For Models\n\nAll URIs are relative to *https://api.ionos.com/databases/postgresql*\n<details >\n<summary title=\"Click to toggle\">API models list</summary>\n\n - [APIVersion](docs/models/APIVersion)\n - [BackupMetadata](docs/models/BackupMetadata)\n - [BackupResponse](docs/models/BackupResponse)\n - [ClusterBackup](docs/models/ClusterBackup)\n - [ClusterBackupList](docs/models/ClusterBackupList)\n - [ClusterBackupListAllOf](docs/models/ClusterBackupListAllOf)\n - [ClusterList](docs/models/ClusterList)\n - [ClusterListAllOf](docs/models/ClusterListAllOf)\n - [ClusterLogs](docs/models/ClusterLogs)\n - [ClusterLogsInstances](docs/models/ClusterLogsInstances)\n - [ClusterLogsInstancesMessages](docs/models/ClusterLogsInstancesMessages)\n - [ClusterMetadata](docs/models/ClusterMetadata)\n - [ClusterProperties](docs/models/ClusterProperties)\n - [ClusterResponse](docs/models/ClusterResponse)\n - [Connection](docs/models/Connection)\n - [CreateClusterProperties](docs/models/CreateClusterProperties)\n - [CreateClusterRequest](docs/models/CreateClusterRequest)\n - [CreateRestoreRequest](docs/models/CreateRestoreRequest)\n - [DBUser](docs/models/DBUser)\n - [Database](docs/models/Database)\n - [DatabaseItems](docs/models/DatabaseItems)\n - [DatabaseList](docs/models/DatabaseList)\n - [DatabaseProperties](docs/models/DatabaseProperties)\n - [DatabaseResource](docs/models/DatabaseResource)\n - [DayOfTheWeek](docs/models/DayOfTheWeek)\n - [DeprecatedPagination](docs/models/DeprecatedPagination)\n - [ErrorMessage](docs/models/ErrorMessage)\n - [ErrorResponse](docs/models/ErrorResponse)\n - [MaintenanceWindow](docs/models/MaintenanceWindow)\n - [Metadata](docs/models/Metadata)\n - [Pagination](docs/models/Pagination)\n - [PaginationLinks](docs/models/PaginationLinks)\n - [PatchClusterProperties](docs/models/PatchClusterProperties)\n - [PatchClusterRequest](docs/models/PatchClusterRequest)\n - [PatchUserProperties](docs/models/PatchUserProperties)\n - [PostgresVersionList](docs/models/PostgresVersionList)\n - [PostgresVersionListData](docs/models/PostgresVersionListData)\n - [Resource](docs/models/Resource)\n - [ResourceMetadata](docs/models/ResourceMetadata)\n - [ResourceType](docs/models/ResourceType)\n - [State](docs/models/State)\n - [StorageType](docs/models/StorageType)\n - [SynchronizationMode](docs/models/SynchronizationMode)\n - [User](docs/models/User)\n - [UserItems](docs/models/UserItems)\n - [UserList](docs/models/UserList)\n - [UserProperties](docs/models/UserProperties)\n - [UserResource](docs/models/UserResource)\n - [UsersPatchRequest](docs/models/UsersPatchRequest)\n\n\n[[Back to API list]](#documentation-for-api-endpoints) [[Back to Model list]](#documentation-for-models)\n\n</details>\n",
    "bugtrack_url": null,
    "license": "",
    "summary": "Python SDK for the Ionos DBaaS Postgres API",
    "version": "1.2.0",
    "project_urls": {
        "Homepage": "https://github.com/ionos-cloud/sdk-python-dbaas-postgres"
    },
    "split_keywords": [
        "openapi",
        "openapi-generator",
        "ionos dbaas postgresql rest api"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7cd547da7980442338236766b7f23e89aa7b36273db89b30abbb3c20c8b2ea27",
                "md5": "c070d58586a10c14ec5e146395564154",
                "sha256": "1a2d948c8ee93ddc520e87c1d1e29146f2983f59b58de9a6153d102e86d35ada"
            },
            "downloads": -1,
            "filename": "ionoscloud_dbaas_postgres-1.2.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "c070d58586a10c14ec5e146395564154",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 144069,
            "upload_time": "2023-07-27T12:29:02",
            "upload_time_iso_8601": "2023-07-27T12:29:02.133745Z",
            "url": "https://files.pythonhosted.org/packages/7c/d5/47da7980442338236766b7f23e89aa7b36273db89b30abbb3c20c8b2ea27/ionoscloud_dbaas_postgres-1.2.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d326f17bd9c1b4172d25a9abb75cfa93d854234e6ead4127362cd074db19e0ab",
                "md5": "6aa7fc99c0100f3823ce6f0c812596d0",
                "sha256": "1feb93d8190f98bac35d33beabaae44a476b8ad25b6b66a8cbd6f202db31ce58"
            },
            "downloads": -1,
            "filename": "ionoscloud-dbaas-postgres-1.2.0.tar.gz",
            "has_sig": false,
            "md5_digest": "6aa7fc99c0100f3823ce6f0c812596d0",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 61013,
            "upload_time": "2023-07-27T12:29:03",
            "upload_time_iso_8601": "2023-07-27T12:29:03.482392Z",
            "url": "https://files.pythonhosted.org/packages/d3/26/f17bd9c1b4172d25a9abb75cfa93d854234e6ead4127362cd074db19e0ab/ionoscloud-dbaas-postgres-1.2.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-07-27 12:29:03",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "ionos-cloud",
    "github_project": "sdk-python-dbaas-postgres",
    "travis_ci": true,
    "coveralls": false,
    "github_actions": true,
    "requirements": [
        {
            "name": "certifi",
            "specs": [
                [
                    ">=",
                    "14.05.14"
                ]
            ]
        },
        {
            "name": "future",
            "specs": []
        },
        {
            "name": "six",
            "specs": [
                [
                    ">=",
                    "1.10"
                ]
            ]
        },
        {
            "name": "python_dateutil",
            "specs": [
                [
                    ">=",
                    "2.5.3"
                ]
            ]
        },
        {
            "name": "setuptools",
            "specs": [
                [
                    ">=",
                    "21.0.0"
                ]
            ]
        },
        {
            "name": "urllib3",
            "specs": [
                [
                    ">=",
                    "1.15.1"
                ]
            ]
        },
        {
            "name": "asn1crypto",
            "specs": [
                [
                    ">=",
                    "1.5.1"
                ]
            ]
        },
        {
            "name": "pydantic",
            "specs": [
                [
                    "<",
                    "2"
                ],
                [
                    ">=",
                    "1.10.5"
                ]
            ]
        }
    ],
    "tox": true,
    "lcname": "ionoscloud-dbaas-postgres"
}
        
Elapsed time: 0.10742s