python-troveclient/doc/source/user/index.rst
Lingxian Kong 27cf71299e Remove flavor API
Change-Id: I5a35911b5658fdf6bc08844b31cc1325b749526a
2020-05-08 00:30:49 -06:00

876 B

Trove Client User Guide

Command-line Interface

Installing this package allows you to use openstack command to interact with Trove. Refer to https://docs.openstack.org/python-openstackclient/latest for how to install openstack command and configuration.

You can find all supported Trove commands in openstack.database.v1 entry_points section in setup.cfg file of the repo.

Python API

There's also a complete Python API.

Quick-start using keystone:

>>> from troveclient import client
>>> trove_client = client.Client('1.0', session=keystone_session, endpoint_type='public', service_type='database', region_name='RegionOne')
>>> trove_client.datastores.list()
[...]
>>> trove_client.instances.list()
[...]

api