pydo.databases.list_options()

Description

To list all of the options available for the offered database engines, send a GET request to /v2/databases/options. The result will be a JSON object with an options key.

Request Sample

import os
from pydo import Client

client = Client(token=os.environ.get("DIGITALOCEAN_TOKEN"))

get_resp = client.databases.list_options()

More Information

See the API spec for this endpoint to view additional detail on responses, headers, parameters, and more.