https://github.com/ultradns/python_rest_api_client
A sample Python client for communicating with the UltraDNS REST API
https://github.com/ultradns/python_rest_api_client
api-client devops-tools dns sdk-python ultradns
Last synced: 6 months ago
JSON representation
A sample Python client for communicating with the UltraDNS REST API
- Host: GitHub
- URL: https://github.com/ultradns/python_rest_api_client
- Owner: ultradns
- License: apache-2.0
- Created: 2014-02-13T23:16:49.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2025-03-05T14:56:07.000Z (7 months ago)
- Last Synced: 2025-03-29T21:04:07.202Z (7 months ago)
- Topics: api-client, devops-tools, dns, sdk-python, ultradns
- Language: Python
- Homepage: https://docs.ultradns.com
- Size: 110 KB
- Stars: 25
- Watchers: 14
- Forks: 24
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# UltraDNS REST API Client for Python
This is a Python client for communicating with the UltraDNS REST API. It provides a simple and intuitive interface for interacting with the UltraDNS services.
Jump To:
* [Getting Started](#Getting-Started)
* [Usage](#Usage)
* [Functionality](#Functionality)
* [API Reference](#API-Reference)
* [Contributing](#Contributing)
* [License](#License)
* [Questions](#Questions)## Getting Started
### Dependencies and Installation
This sample code depends on the requests library, which can be found at: http://docs.python-requests.org/en/latest/
If you have pip installed, you can add the client and requests to your environment with:
```
pip install ultra_rest_client
```Once installed, you can use the `ultra_rest_client` module in your Python scripts:
```python
from ultra_rest_client import RestApiClient
client = RestApiClient(args)
```## Usage
### Authentication
#### Authenticating using Username and Password
```python
from ultra_rest_client import RestApiClient
import os# Fetch credentials from environment variables
username = os.getenv('USERNAME')
password = os.getenv('PASSWORD')# Check if credentials are available
if not username or not password:
raise ValueError("Username and password must be set in environment variables.")client = RestApiClient(username, password)
domain = "udns-python-rest-client-test.com."
# Get Zone Metadata
print(f"Get metadata for zone {domain}: {client.get_zone_metadata(domain)}")
```#### Authenticating using Bearer Token and Refresh Token
```python
from ultra_rest_client import RestApiClient
import os# Fetch tokens from environment variables
access_token = os.getenv('ACCESS_TOKEN')
refresh_token = os.getenv('REFRESH_TOKEN')# Check if tokens are available
if not access_token or not refresh_token:
raise ValueError("Access token and refresh token must be set in environment variables.")client = RestApiClient(access_token, refresh_token, use_token=True)
domain = "udns-python-rest-client-test.com."
# Get Zone Metadata
print(f"Get metadata for zone {domain}: {client.get_zone_metadata(domain)}")
```#### Authenticating using Bearer Token
```python
from ultra_rest_client import RestApiClient
import os# Fetch token from environment variables
access_token = os.getenv('ACCESS_TOKEN')# Check if token are available
if not access_token:
raise ValueError("Access token must be set in environment variables.")client = RestApiClient(access_token, use_token=True)
domain = "udns-python-rest-client-test.com."
# Get Zone Metadata
print(f"Get metadata for zone {domain}: {client.get_zone_metadata(domain)}")
```### Custom Headers
Custom headers can be defined when instantiating the client:
```python
from ultra_rest_client import RestApiClient
client = RestApiClient('username', 'password', custom_headers={"foo":"bar", "user-agent":"hello"})
```Headers can also be modified after instantiation using the `set_custom_headers()` method on the connection:
```python
client.rest_api_connection.set_custom_headers({"boo":"far","user-agent":"goodbye"})
```### Proxying Requests
In situations where the client needs to send requests from an application behind a proxy, proxy details can be supplied as part of the constructor:
```python
# Define proxy settings using the format required by the `requests` library
proxy_dict = {
"http": "http://proxy.example.com:8080",
"https": "http://proxy.example.com:8080"
}# Initialize the client with a proxy
client = RestApiClient(
"username",
"password",
proxy=proxy_dict
)# Make an API request with the proxy enabled
response = client.create_primary_zone("my_account", "example.com")# Update the proxy dynamically if needed
client.rest_api_connection.set_proxy({
"http": "http://newproxy.example.com:8080",
"https": "http://newproxy.example.com:8080"
})
```If desired, TLS validation may be disabled using the `verify_https` flag.
```python
client = RestApiClient(
"username",
"password",
proxy=proxy_dict,
verify_https=False
)
```### Quick Examples
This example shows a complete working python file which will create a primary zone in UltraDNS. This example highlights how to get services using client and make requests.```python
#!/usr/bin/env python3from ultra_rest_client import RestApiClient
import osdef create_zone(client, domain):
"""Create a zone in UltraDNS. This function will create a zone with the name specified in the domain argument.
It uses the accounts API to get the account name. This is required to create a zone.Args:
- client (RestApiClient): An instance of the RestApiClient class.
- domain (str): The domain name to be created.Returns:
- dict: The response body.
"""
account_details = client.get_account_details()
account_name = account_details['accounts'][0]['accountName']
return client.create_primary_zone(account_name, domain)def create_a_record(client, domain):
"""Create an A record in UltraDNS. This function will create an A record with the name specified in the domainArgs:
- client (RestApiClient): An instance of the RestApiClient class.
- domain (str): The domain name.
"""
return client.create_rrset(domain, "A", domain, 300, "192.0.2.1")def create_cname_record(client, domain):
"""Create a CNAME record in UltraDNS. This function will create a CNAME record with the name specified in the domainArgs:
- client (RestApiClient): An instance of the RestApiClient class.
- domain (str): The domain name.Returns:
- dict: The response body.
"""
return client.create_rrset(domain, "CNAME", f"www.{domain}", 300, [domain])def create_rd_pool(client, domain):
"""Create a pool of A records in UltraDNS. This function will create an RD pool within the specified domain.Args:
- client (RestApiClient): An instance of the RestApiClient class.
- domain (str): The domain name.Returns:
- dict: The response body.
"""
return client.create_rd_pool(
domain,
"pool",
300,
[
"192.0.2.2",
"192.0.2.3"
]
)def delete_zone(client, domain):
"""Delete the zone from UltraDNS.Args:
- client (RestApiClient): An instance of the RestApiClient class.
- domain (str): The domain name.
"""
client.delete_zone(domain)
return "Zone deleted Successfully"def main():
"""The main function. This is the entry point for the script. It parses the command line arguments and calls the
create_zone, create_a_record, and create_cname_record functions."""# Fetch credentials from environment variables
username = os.getenv('USERNAME')
password = os.getenv('PASSWORD')
domain = "ultra-rest-client-test.com."# Check if credentials are available
if not username or not password:
raise ValueError("Username and password must be set in environment variables.")# Create an instance of your client
client = RestApiClient(username, password)# Create the domain
print(f"Creating zone {domain}: {create_zone(client, domain)}")# Create an A record for the domain
print(f"Creating an A record pointing to 192.0.2.1: {create_a_record(client, domain)}")# Create a CNAME record for the domain
print(f"Creating a 'www' CNAME pointing to {domain}: {create_cname_record(client, domain)}")# Delete the domain
print(f"Deleting zone {domain}: {delete_zone(client, domain)}")if __name__ == "__main__":
main()
```To set the environment variables, use the following commands in your terminal:
```python
export USERNAME='your_username'
export PASSWORD='your_password'
```### Background Tasks
Utilities for handling long running tasks that process in the background, such as reports or exports, are available and documented [here](./src/ultra_rest_client/utils/README.md)
## Functionality
The sample code does not attempt to implement a client for all available UltraDNS REST API functionality. It provides access to basic functionality. Adding additional functionality should be relatively straightforward, and any contributions from the UltraDNS community would be greatly appreciated. See [sample.py](sample.py) for an example of how to use this library in your own code.
## API Reference
For detailed API reference, please refer to the UltraDNS API documentation.
## Contributing
Contributions are always welcome! Please open a pull request with your changes, or open an issue if you encounter any problems or have suggestions.
## License
This project is licensed under the Apache-2.0 license License. See the [LICENSE](LICENSE) file for more details.## Questions
Please contact UltraDNS support if you have any questions or encounter any issues with this code.