ionoscloud-dns


Nameionoscloud-dns JSON
Version 1.2.0 PyPI version JSON
download
home_pagehttps://github.com/ionos-cloud/sdk-python-dns
SummaryPython SDK for the ionoscloud-dns API
upload_time2024-05-15 14:31:47
maintainerNone
docs_urlNone
authorIonos Cloud
requires_pythonNone
licenseNone
keywords openapi openapi-generator ionos cloud - dns api
VCS
bugtrack_url
requirements certifi future six python_dateutil setuptools urllib3 asn1crypto pydantic
Travis-CI
coveralls test coverage No coveralls.
            [![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-dns&metric=alert_status)](https://sonarcloud.io/summary?id=sdk-python-dns)
[![Bugs](https://sonarcloud.io/api/project_badges/measure?project=sdk-python-dns&metric=bugs)](https://sonarcloud.io/summary/new_code?id=sdk-python-dns)
[![Maintainability Rating](https://sonarcloud.io/api/project_badges/measure?project=sdk-python-dns&metric=sqale_rating)](https://sonarcloud.io/summary/new_code?id=sdk-python-dns)
[![Reliability Rating](https://sonarcloud.io/api/project_badges/measure?project=sdk-python-dns&metric=reliability_rating)](https://sonarcloud.io/summary/new_code?id=sdk-python-dns)
[![Security Rating](https://sonarcloud.io/api/project_badges/measure?project=sdk-python-dns&metric=security_rating)](https://sonarcloud.io/summary/new_code?id=sdk-python-dns)
[![Vulnerabilities](https://sonarcloud.io/api/project_badges/measure?project=sdk-python-dns&metric=vulnerabilities)](https://sonarcloud.io/summary/new_code?id=sdk-python-dns)
[![Release](https://img.shields.io/github/v/release/ionos-cloud/sdk-python-dns.svg)](https://github.com/ionos-cloud/sdk-python-dns/releases/latest)
[![Release Date](https://img.shields.io/github/release-date/ionos-cloud/sdk-python-dns.svg)](https://github.com/ionos-cloud/sdk-python-dns/releases/latest)
[![PyPI version](https://img.shields.io/pypi/v/ionoscloud-dns)](https://pypi.org/project/ionoscloud-dns/)

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


# Python API client for ionoscloud_dns

Cloud DNS service helps IONOS Cloud customers to automate DNS Zone and Record management.


## Overview
The IONOS Cloud SDK for Python provides you with access to the IONOS Cloud 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-dns
```

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-dns.git
```

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

Then import the package:

```python
import ionoscloud_dns
```

### 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_dns
```

> **_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_dns.Configuration(
                username='YOUR_USERNAME',
                password='YOUR_PASSWORD',
                token='YOUR_TOKEN'
                )
client = ionoscloud_dns.ApiClient(configuration)
```

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

```python
import os

configuration = ionoscloud_dns.Configuration(
                username=os.environ.get('IONOS_USERNAME'),
                password=os.environ.get('IONOS_PASSWORD'),
                token=os.environ.get('IONOS_TOKEN')
                )
client = ionoscloud_dns.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

Each line in `IONOS_HTTP_PROXY_HEADERS` represents one header, where the header name and value is separated by a colon. Newline characters within a value need to be escaped. See this example:
```
Connection: Keep-Alive
User-Info: MyID
User-Group: my long\nheader value
```


### Changing the base URL

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

```python
import os

configuration = ionoscloud_dns.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_dns.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://dns.de-fra.ionos.com*
<details >
    <summary title="Click to toggle">API Endpoints table</summary>


| Class | Method | HTTP request | Description |
| ------------- | ------------- | ------------- | ------------- |
| DNSSECApi | [**zones_keys_delete**](docs/api/DNSSECApi.md#zones_keys_delete) | **DELETE** /zones/{zoneId}/keys | Delete a DNSSEC key |
| DNSSECApi | [**zones_keys_get**](docs/api/DNSSECApi.md#zones_keys_get) | **GET** /zones/{zoneId}/keys | Retrieve a DNSSEC key |
| DNSSECApi | [**zones_keys_post**](docs/api/DNSSECApi.md#zones_keys_post) | **POST** /zones/{zoneId}/keys | Create a DNSSEC key |
| QuotaApi | [**quota_get**](docs/api/QuotaApi.md#quota_get) | **GET** /quota | Retrieve resources quota |
| RecordsApi | [**records_get**](docs/api/RecordsApi.md#records_get) | **GET** /records | Retrieve all records from primary zones |
| RecordsApi | [**secondaryzones_records_get**](docs/api/RecordsApi.md#secondaryzones_records_get) | **GET** /secondaryzones/{secondaryZoneId}/records | Retrieve records for a secondary zone |
| RecordsApi | [**zones_records_delete**](docs/api/RecordsApi.md#zones_records_delete) | **DELETE** /zones/{zoneId}/records/{recordId} | Delete a record |
| RecordsApi | [**zones_records_find_by_id**](docs/api/RecordsApi.md#zones_records_find_by_id) | **GET** /zones/{zoneId}/records/{recordId} | Retrieve a record |
| RecordsApi | [**zones_records_get**](docs/api/RecordsApi.md#zones_records_get) | **GET** /zones/{zoneId}/records | Retrieve records |
| RecordsApi | [**zones_records_post**](docs/api/RecordsApi.md#zones_records_post) | **POST** /zones/{zoneId}/records | Create a record |
| RecordsApi | [**zones_records_put**](docs/api/RecordsApi.md#zones_records_put) | **PUT** /zones/{zoneId}/records/{recordId} | Update a record |
| ReverseRecordsApi | [**reverserecords_delete**](docs/api/ReverseRecordsApi.md#reverserecords_delete) | **DELETE** /reverserecords/{reverserecordId} | Delete a reverse DNS record |
| ReverseRecordsApi | [**reverserecords_find_by_id**](docs/api/ReverseRecordsApi.md#reverserecords_find_by_id) | **GET** /reverserecords/{reverserecordId} | Retrieve a reverse DNS record |
| ReverseRecordsApi | [**reverserecords_get**](docs/api/ReverseRecordsApi.md#reverserecords_get) | **GET** /reverserecords | Retrieves existing reverse DNS records |
| ReverseRecordsApi | [**reverserecords_post**](docs/api/ReverseRecordsApi.md#reverserecords_post) | **POST** /reverserecords | Create a reverse DNS record |
| ReverseRecordsApi | [**reverserecords_put**](docs/api/ReverseRecordsApi.md#reverserecords_put) | **PUT** /reverserecords/{reverserecordId} | Update a reverse DNS record |
| SecondaryZonesApi | [**secondaryzones_axfr_get**](docs/api/SecondaryZonesApi.md#secondaryzones_axfr_get) | **GET** /secondaryzones/{secondaryZoneId}/axfr | Get status of zone transfer |
| SecondaryZonesApi | [**secondaryzones_axfr_put**](docs/api/SecondaryZonesApi.md#secondaryzones_axfr_put) | **PUT** /secondaryzones/{secondaryZoneId}/axfr | Start zone transfer |
| SecondaryZonesApi | [**secondaryzones_delete**](docs/api/SecondaryZonesApi.md#secondaryzones_delete) | **DELETE** /secondaryzones/{secondaryZoneId} | Delete a secondary zone |
| SecondaryZonesApi | [**secondaryzones_find_by_id**](docs/api/SecondaryZonesApi.md#secondaryzones_find_by_id) | **GET** /secondaryzones/{secondaryZoneId} | Retrieve a secondary zone |
| SecondaryZonesApi | [**secondaryzones_get**](docs/api/SecondaryZonesApi.md#secondaryzones_get) | **GET** /secondaryzones | Retrieve secondary zones |
| SecondaryZonesApi | [**secondaryzones_post**](docs/api/SecondaryZonesApi.md#secondaryzones_post) | **POST** /secondaryzones | Create a secondary zone |
| SecondaryZonesApi | [**secondaryzones_put**](docs/api/SecondaryZonesApi.md#secondaryzones_put) | **PUT** /secondaryzones/{secondaryZoneId} | Update a secondary zone |
| ZoneFilesApi | [**zones_zonefile_get**](docs/api/ZoneFilesApi.md#zones_zonefile_get) | **GET** /zones/{zoneId}/zonefile | Retrieve a zone file |
| ZoneFilesApi | [**zones_zonefile_put**](docs/api/ZoneFilesApi.md#zones_zonefile_put) | **PUT** /zones/{zoneId}/zonefile | Updates a zone with a file |
| ZonesApi | [**zones_delete**](docs/api/ZonesApi.md#zones_delete) | **DELETE** /zones/{zoneId} | Delete a zone |
| ZonesApi | [**zones_find_by_id**](docs/api/ZonesApi.md#zones_find_by_id) | **GET** /zones/{zoneId} | Retrieve a zone |
| ZonesApi | [**zones_get**](docs/api/ZonesApi.md#zones_get) | **GET** /zones | Retrieve zones |
| ZonesApi | [**zones_post**](docs/api/ZonesApi.md#zones_post) | **POST** /zones | Create a zone |
| ZonesApi | [**zones_put**](docs/api/ZonesApi.md#zones_put) | **PUT** /zones/{zoneId} | Update a zone |

</details>

## Documentation For Models

All URIs are relative to *https://dns.de-fra.ionos.com*
<details >
<summary title="Click to toggle">API models list</summary>

 - [Algorithm](docs/models/Algorithm)
 - [CommonZone](docs/models/CommonZone)
 - [CommonZoneRead](docs/models/CommonZoneRead)
 - [CommonZoneReadList](docs/models/CommonZoneReadList)
 - [DnssecKey](docs/models/DnssecKey)
 - [DnssecKeyCreate](docs/models/DnssecKeyCreate)
 - [DnssecKeyParameters](docs/models/DnssecKeyParameters)
 - [DnssecKeyReadCreation](docs/models/DnssecKeyReadCreation)
 - [DnssecKeyReadList](docs/models/DnssecKeyReadList)
 - [DnssecKeyReadListMetadata](docs/models/DnssecKeyReadListMetadata)
 - [DnssecKeyReadListProperties](docs/models/DnssecKeyReadListProperties)
 - [DnssecKeyReadListPropertiesKeyParameters](docs/models/DnssecKeyReadListPropertiesKeyParameters)
 - [DnssecKeyReadListPropertiesNsecParameters](docs/models/DnssecKeyReadListPropertiesNsecParameters)
 - [Error](docs/models/Error)
 - [ErrorMessages](docs/models/ErrorMessages)
 - [KeyData](docs/models/KeyData)
 - [KeyParameters](docs/models/KeyParameters)
 - [KskBits](docs/models/KskBits)
 - [Links](docs/models/Links)
 - [Metadata](docs/models/Metadata)
 - [MetadataForSecondaryZoneRecords](docs/models/MetadataForSecondaryZoneRecords)
 - [MetadataWithStateFqdnZoneId](docs/models/MetadataWithStateFqdnZoneId)
 - [MetadataWithStateFqdnZoneIdAllOf](docs/models/MetadataWithStateFqdnZoneIdAllOf)
 - [MetadataWithStateNameservers](docs/models/MetadataWithStateNameservers)
 - [MetadataWithStateNameserversAllOf](docs/models/MetadataWithStateNameserversAllOf)
 - [NsecMode](docs/models/NsecMode)
 - [NsecParameters](docs/models/NsecParameters)
 - [ProvisioningState](docs/models/ProvisioningState)
 - [Quota](docs/models/Quota)
 - [QuotaDetail](docs/models/QuotaDetail)
 - [Record](docs/models/Record)
 - [RecordCreate](docs/models/RecordCreate)
 - [RecordEnsure](docs/models/RecordEnsure)
 - [RecordRead](docs/models/RecordRead)
 - [RecordReadList](docs/models/RecordReadList)
 - [ReverseRecord](docs/models/ReverseRecord)
 - [ReverseRecordCreate](docs/models/ReverseRecordCreate)
 - [ReverseRecordEnsure](docs/models/ReverseRecordEnsure)
 - [ReverseRecordRead](docs/models/ReverseRecordRead)
 - [ReverseRecordsReadList](docs/models/ReverseRecordsReadList)
 - [SecondaryZone](docs/models/SecondaryZone)
 - [SecondaryZoneAllOf](docs/models/SecondaryZoneAllOf)
 - [SecondaryZoneCreate](docs/models/SecondaryZoneCreate)
 - [SecondaryZoneEnsure](docs/models/SecondaryZoneEnsure)
 - [SecondaryZoneRead](docs/models/SecondaryZoneRead)
 - [SecondaryZoneReadAllOf](docs/models/SecondaryZoneReadAllOf)
 - [SecondaryZoneReadList](docs/models/SecondaryZoneReadList)
 - [SecondaryZoneReadListAllOf](docs/models/SecondaryZoneReadListAllOf)
 - [SecondaryZoneRecordRead](docs/models/SecondaryZoneRecordRead)
 - [SecondaryZoneRecordReadList](docs/models/SecondaryZoneRecordReadList)
 - [SecondaryZoneRecordReadListMetadata](docs/models/SecondaryZoneRecordReadListMetadata)
 - [Zone](docs/models/Zone)
 - [ZoneAllOf](docs/models/ZoneAllOf)
 - [ZoneCreate](docs/models/ZoneCreate)
 - [ZoneEnsure](docs/models/ZoneEnsure)
 - [ZoneRead](docs/models/ZoneRead)
 - [ZoneReadAllOf](docs/models/ZoneReadAllOf)
 - [ZoneReadList](docs/models/ZoneReadList)
 - [ZoneReadListAllOf](docs/models/ZoneReadListAllOf)
 - [ZoneTransferPrimaryIpStatus](docs/models/ZoneTransferPrimaryIpStatus)
 - [ZoneTransferPrimaryIpsStatus](docs/models/ZoneTransferPrimaryIpsStatus)
 - [ZskBits](docs/models/ZskBits)


[[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-dns",
    "name": "ionoscloud-dns",
    "maintainer": null,
    "docs_url": null,
    "requires_python": null,
    "maintainer_email": null,
    "keywords": "OpenAPI, OpenAPI-Generator, IONOS Cloud - DNS API",
    "author": "Ionos Cloud",
    "author_email": "sdk@cloud.ionos.com",
    "download_url": "https://files.pythonhosted.org/packages/04/6f/999d11e1f1cac3fdae32bfaa9170822f923218b17c42d3f7d2bf1e1c13c3/ionoscloud-dns-1.2.0.tar.gz",
    "platform": null,
    "description": "[![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-dns&metric=alert_status)](https://sonarcloud.io/summary?id=sdk-python-dns)\n[![Bugs](https://sonarcloud.io/api/project_badges/measure?project=sdk-python-dns&metric=bugs)](https://sonarcloud.io/summary/new_code?id=sdk-python-dns)\n[![Maintainability Rating](https://sonarcloud.io/api/project_badges/measure?project=sdk-python-dns&metric=sqale_rating)](https://sonarcloud.io/summary/new_code?id=sdk-python-dns)\n[![Reliability Rating](https://sonarcloud.io/api/project_badges/measure?project=sdk-python-dns&metric=reliability_rating)](https://sonarcloud.io/summary/new_code?id=sdk-python-dns)\n[![Security Rating](https://sonarcloud.io/api/project_badges/measure?project=sdk-python-dns&metric=security_rating)](https://sonarcloud.io/summary/new_code?id=sdk-python-dns)\n[![Vulnerabilities](https://sonarcloud.io/api/project_badges/measure?project=sdk-python-dns&metric=vulnerabilities)](https://sonarcloud.io/summary/new_code?id=sdk-python-dns)\n[![Release](https://img.shields.io/github/v/release/ionos-cloud/sdk-python-dns.svg)](https://github.com/ionos-cloud/sdk-python-dns/releases/latest)\n[![Release Date](https://img.shields.io/github/release-date/ionos-cloud/sdk-python-dns.svg)](https://github.com/ionos-cloud/sdk-python-dns/releases/latest)\n[![PyPI version](https://img.shields.io/pypi/v/ionoscloud-dns)](https://pypi.org/project/ionoscloud-dns/)\n\n![Alt text](.github/IONOS.CLOUD.BLU.svg?raw=true \"Title\")\n\n\n# Python API client for ionoscloud_dns\n\nCloud DNS service helps IONOS Cloud customers to automate DNS Zone and Record management.\n\n\n## Overview\nThe IONOS Cloud SDK for Python provides you with access to the IONOS Cloud 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-dns\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-dns.git\n```\n\nNote: you may need to run `pip` with root permission: `sudo pip install git+https://github.com/ionos-cloud/sdk-python-dns.git`\n\nThen import the package:\n\n```python\nimport ionoscloud_dns\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_dns\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_dns.Configuration(\n                username='YOUR_USERNAME',\n                password='YOUR_PASSWORD',\n                token='YOUR_TOKEN'\n                )\nclient = ionoscloud_dns.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_dns.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_dns.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\nEach line in `IONOS_HTTP_PROXY_HEADERS` represents one header, where the header name and value is separated by a colon. Newline characters within a value need to be escaped. See this example:\n```\nConnection: Keep-Alive\nUser-Info: MyID\nUser-Group: my long\\nheader value\n```\n\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_dns.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_dns.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://dns.de-fra.ionos.com*\n<details >\n    <summary title=\"Click to toggle\">API Endpoints table</summary>\n\n\n| Class | Method | HTTP request | Description |\n| ------------- | ------------- | ------------- | ------------- |\n| DNSSECApi | [**zones_keys_delete**](docs/api/DNSSECApi.md#zones_keys_delete) | **DELETE** /zones/{zoneId}/keys | Delete a DNSSEC key |\n| DNSSECApi | [**zones_keys_get**](docs/api/DNSSECApi.md#zones_keys_get) | **GET** /zones/{zoneId}/keys | Retrieve a DNSSEC key |\n| DNSSECApi | [**zones_keys_post**](docs/api/DNSSECApi.md#zones_keys_post) | **POST** /zones/{zoneId}/keys | Create a DNSSEC key |\n| QuotaApi | [**quota_get**](docs/api/QuotaApi.md#quota_get) | **GET** /quota | Retrieve resources quota |\n| RecordsApi | [**records_get**](docs/api/RecordsApi.md#records_get) | **GET** /records | Retrieve all records from primary zones |\n| RecordsApi | [**secondaryzones_records_get**](docs/api/RecordsApi.md#secondaryzones_records_get) | **GET** /secondaryzones/{secondaryZoneId}/records | Retrieve records for a secondary zone |\n| RecordsApi | [**zones_records_delete**](docs/api/RecordsApi.md#zones_records_delete) | **DELETE** /zones/{zoneId}/records/{recordId} | Delete a record |\n| RecordsApi | [**zones_records_find_by_id**](docs/api/RecordsApi.md#zones_records_find_by_id) | **GET** /zones/{zoneId}/records/{recordId} | Retrieve a record |\n| RecordsApi | [**zones_records_get**](docs/api/RecordsApi.md#zones_records_get) | **GET** /zones/{zoneId}/records | Retrieve records |\n| RecordsApi | [**zones_records_post**](docs/api/RecordsApi.md#zones_records_post) | **POST** /zones/{zoneId}/records | Create a record |\n| RecordsApi | [**zones_records_put**](docs/api/RecordsApi.md#zones_records_put) | **PUT** /zones/{zoneId}/records/{recordId} | Update a record |\n| ReverseRecordsApi | [**reverserecords_delete**](docs/api/ReverseRecordsApi.md#reverserecords_delete) | **DELETE** /reverserecords/{reverserecordId} | Delete a reverse DNS record |\n| ReverseRecordsApi | [**reverserecords_find_by_id**](docs/api/ReverseRecordsApi.md#reverserecords_find_by_id) | **GET** /reverserecords/{reverserecordId} | Retrieve a reverse DNS record |\n| ReverseRecordsApi | [**reverserecords_get**](docs/api/ReverseRecordsApi.md#reverserecords_get) | **GET** /reverserecords | Retrieves existing reverse DNS records |\n| ReverseRecordsApi | [**reverserecords_post**](docs/api/ReverseRecordsApi.md#reverserecords_post) | **POST** /reverserecords | Create a reverse DNS record |\n| ReverseRecordsApi | [**reverserecords_put**](docs/api/ReverseRecordsApi.md#reverserecords_put) | **PUT** /reverserecords/{reverserecordId} | Update a reverse DNS record |\n| SecondaryZonesApi | [**secondaryzones_axfr_get**](docs/api/SecondaryZonesApi.md#secondaryzones_axfr_get) | **GET** /secondaryzones/{secondaryZoneId}/axfr | Get status of zone transfer |\n| SecondaryZonesApi | [**secondaryzones_axfr_put**](docs/api/SecondaryZonesApi.md#secondaryzones_axfr_put) | **PUT** /secondaryzones/{secondaryZoneId}/axfr | Start zone transfer |\n| SecondaryZonesApi | [**secondaryzones_delete**](docs/api/SecondaryZonesApi.md#secondaryzones_delete) | **DELETE** /secondaryzones/{secondaryZoneId} | Delete a secondary zone |\n| SecondaryZonesApi | [**secondaryzones_find_by_id**](docs/api/SecondaryZonesApi.md#secondaryzones_find_by_id) | **GET** /secondaryzones/{secondaryZoneId} | Retrieve a secondary zone |\n| SecondaryZonesApi | [**secondaryzones_get**](docs/api/SecondaryZonesApi.md#secondaryzones_get) | **GET** /secondaryzones | Retrieve secondary zones |\n| SecondaryZonesApi | [**secondaryzones_post**](docs/api/SecondaryZonesApi.md#secondaryzones_post) | **POST** /secondaryzones | Create a secondary zone |\n| SecondaryZonesApi | [**secondaryzones_put**](docs/api/SecondaryZonesApi.md#secondaryzones_put) | **PUT** /secondaryzones/{secondaryZoneId} | Update a secondary zone |\n| ZoneFilesApi | [**zones_zonefile_get**](docs/api/ZoneFilesApi.md#zones_zonefile_get) | **GET** /zones/{zoneId}/zonefile | Retrieve a zone file |\n| ZoneFilesApi | [**zones_zonefile_put**](docs/api/ZoneFilesApi.md#zones_zonefile_put) | **PUT** /zones/{zoneId}/zonefile | Updates a zone with a file |\n| ZonesApi | [**zones_delete**](docs/api/ZonesApi.md#zones_delete) | **DELETE** /zones/{zoneId} | Delete a zone |\n| ZonesApi | [**zones_find_by_id**](docs/api/ZonesApi.md#zones_find_by_id) | **GET** /zones/{zoneId} | Retrieve a zone |\n| ZonesApi | [**zones_get**](docs/api/ZonesApi.md#zones_get) | **GET** /zones | Retrieve zones |\n| ZonesApi | [**zones_post**](docs/api/ZonesApi.md#zones_post) | **POST** /zones | Create a zone |\n| ZonesApi | [**zones_put**](docs/api/ZonesApi.md#zones_put) | **PUT** /zones/{zoneId} | Update a zone |\n\n</details>\n\n## Documentation For Models\n\nAll URIs are relative to *https://dns.de-fra.ionos.com*\n<details >\n<summary title=\"Click to toggle\">API models list</summary>\n\n - [Algorithm](docs/models/Algorithm)\n - [CommonZone](docs/models/CommonZone)\n - [CommonZoneRead](docs/models/CommonZoneRead)\n - [CommonZoneReadList](docs/models/CommonZoneReadList)\n - [DnssecKey](docs/models/DnssecKey)\n - [DnssecKeyCreate](docs/models/DnssecKeyCreate)\n - [DnssecKeyParameters](docs/models/DnssecKeyParameters)\n - [DnssecKeyReadCreation](docs/models/DnssecKeyReadCreation)\n - [DnssecKeyReadList](docs/models/DnssecKeyReadList)\n - [DnssecKeyReadListMetadata](docs/models/DnssecKeyReadListMetadata)\n - [DnssecKeyReadListProperties](docs/models/DnssecKeyReadListProperties)\n - [DnssecKeyReadListPropertiesKeyParameters](docs/models/DnssecKeyReadListPropertiesKeyParameters)\n - [DnssecKeyReadListPropertiesNsecParameters](docs/models/DnssecKeyReadListPropertiesNsecParameters)\n - [Error](docs/models/Error)\n - [ErrorMessages](docs/models/ErrorMessages)\n - [KeyData](docs/models/KeyData)\n - [KeyParameters](docs/models/KeyParameters)\n - [KskBits](docs/models/KskBits)\n - [Links](docs/models/Links)\n - [Metadata](docs/models/Metadata)\n - [MetadataForSecondaryZoneRecords](docs/models/MetadataForSecondaryZoneRecords)\n - [MetadataWithStateFqdnZoneId](docs/models/MetadataWithStateFqdnZoneId)\n - [MetadataWithStateFqdnZoneIdAllOf](docs/models/MetadataWithStateFqdnZoneIdAllOf)\n - [MetadataWithStateNameservers](docs/models/MetadataWithStateNameservers)\n - [MetadataWithStateNameserversAllOf](docs/models/MetadataWithStateNameserversAllOf)\n - [NsecMode](docs/models/NsecMode)\n - [NsecParameters](docs/models/NsecParameters)\n - [ProvisioningState](docs/models/ProvisioningState)\n - [Quota](docs/models/Quota)\n - [QuotaDetail](docs/models/QuotaDetail)\n - [Record](docs/models/Record)\n - [RecordCreate](docs/models/RecordCreate)\n - [RecordEnsure](docs/models/RecordEnsure)\n - [RecordRead](docs/models/RecordRead)\n - [RecordReadList](docs/models/RecordReadList)\n - [ReverseRecord](docs/models/ReverseRecord)\n - [ReverseRecordCreate](docs/models/ReverseRecordCreate)\n - [ReverseRecordEnsure](docs/models/ReverseRecordEnsure)\n - [ReverseRecordRead](docs/models/ReverseRecordRead)\n - [ReverseRecordsReadList](docs/models/ReverseRecordsReadList)\n - [SecondaryZone](docs/models/SecondaryZone)\n - [SecondaryZoneAllOf](docs/models/SecondaryZoneAllOf)\n - [SecondaryZoneCreate](docs/models/SecondaryZoneCreate)\n - [SecondaryZoneEnsure](docs/models/SecondaryZoneEnsure)\n - [SecondaryZoneRead](docs/models/SecondaryZoneRead)\n - [SecondaryZoneReadAllOf](docs/models/SecondaryZoneReadAllOf)\n - [SecondaryZoneReadList](docs/models/SecondaryZoneReadList)\n - [SecondaryZoneReadListAllOf](docs/models/SecondaryZoneReadListAllOf)\n - [SecondaryZoneRecordRead](docs/models/SecondaryZoneRecordRead)\n - [SecondaryZoneRecordReadList](docs/models/SecondaryZoneRecordReadList)\n - [SecondaryZoneRecordReadListMetadata](docs/models/SecondaryZoneRecordReadListMetadata)\n - [Zone](docs/models/Zone)\n - [ZoneAllOf](docs/models/ZoneAllOf)\n - [ZoneCreate](docs/models/ZoneCreate)\n - [ZoneEnsure](docs/models/ZoneEnsure)\n - [ZoneRead](docs/models/ZoneRead)\n - [ZoneReadAllOf](docs/models/ZoneReadAllOf)\n - [ZoneReadList](docs/models/ZoneReadList)\n - [ZoneReadListAllOf](docs/models/ZoneReadListAllOf)\n - [ZoneTransferPrimaryIpStatus](docs/models/ZoneTransferPrimaryIpStatus)\n - [ZoneTransferPrimaryIpsStatus](docs/models/ZoneTransferPrimaryIpsStatus)\n - [ZskBits](docs/models/ZskBits)\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": null,
    "summary": "Python SDK for the ionoscloud-dns API",
    "version": "1.2.0",
    "project_urls": {
        "Homepage": "https://github.com/ionos-cloud/sdk-python-dns"
    },
    "split_keywords": [
        "openapi",
        " openapi-generator",
        " ionos cloud - dns api"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "38bd2f541b1caee62eebc94b227afd26abf82d68998ba9fe373e719b08047ac8",
                "md5": "2773b1ed93574150f24c7b3fd70d2b4f",
                "sha256": "977824d337c836e0f3fcdfbdb004063d1602c47010c62db4f06d013183d6f4d8"
            },
            "downloads": -1,
            "filename": "ionoscloud_dns-1.2.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "2773b1ed93574150f24c7b3fd70d2b4f",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 146195,
            "upload_time": "2024-05-15T14:31:45",
            "upload_time_iso_8601": "2024-05-15T14:31:45.898536Z",
            "url": "https://files.pythonhosted.org/packages/38/bd/2f541b1caee62eebc94b227afd26abf82d68998ba9fe373e719b08047ac8/ionoscloud_dns-1.2.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "046f999d11e1f1cac3fdae32bfaa9170822f923218b17c42d3f7d2bf1e1c13c3",
                "md5": "629ec9f255473383f9ae3bdefea02af7",
                "sha256": "de4859891a79ab51d6568a2ca784646e4704c3420d9fda4c52b6df7d2af9bd9e"
            },
            "downloads": -1,
            "filename": "ionoscloud-dns-1.2.0.tar.gz",
            "has_sig": false,
            "md5_digest": "629ec9f255473383f9ae3bdefea02af7",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 62906,
            "upload_time": "2024-05-15T14:31:47",
            "upload_time_iso_8601": "2024-05-15T14:31:47.802515Z",
            "url": "https://files.pythonhosted.org/packages/04/6f/999d11e1f1cac3fdae32bfaa9170822f923218b17c42d3f7d2bf1e1c13c3/ionoscloud-dns-1.2.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-05-15 14:31:47",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "ionos-cloud",
    "github_project": "sdk-python-dns",
    "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": [
                [
                    ">=",
                    "1.10.5"
                ],
                [
                    "<",
                    "2"
                ]
            ]
        }
    ],
    "tox": true,
    "lcname": "ionoscloud-dns"
}
        
Elapsed time: 0.29576s