69f4597bf1
As keystoneclient's Session and auth plugins have been deprecated in favor of keystoneauth, the documentation examples must reflect that. This patch updates all examples in order to show keystoneauth Session usage instead of deprecated keystoneclient Session. Also, the python API bindings were updated too. Change-Id: I4b64fee4f526cc5b4a5e36cc8edb61164ceded51
40 lines
910 B
Python
40 lines
910 B
Python
from __future__ import print_function
|
|
import logging
|
|
|
|
from keystoneauth1.identity import generic
|
|
from keystoneauth1 import session as keystone_session
|
|
|
|
from designateclient import shell
|
|
from designateclient.v2 import client
|
|
|
|
logging.basicConfig(level='DEBUG')
|
|
|
|
auth = generic.Password(
|
|
auth_url=shell.env('OS_AUTH_URL'),
|
|
username=shell.env('OS_USERNAME'),
|
|
password=shell.env('OS_PASSWORD'),
|
|
project_name=shell.env('OS_PROJECT_NAME'),
|
|
project_domain_id='default',
|
|
user_domain_id='default')
|
|
|
|
session = keystone_session.Session(auth=auth, timeout=10)
|
|
|
|
client = client.Client(session=session)
|
|
|
|
|
|
pages = []
|
|
|
|
fetch = 1
|
|
while fetch:
|
|
kw = {'limit': 3}
|
|
if pages:
|
|
# marker is the latest page with the last item.
|
|
kw['marker'] = pages[-1][-1]['id']
|
|
page = client.zones.list(**kw)
|
|
if not page:
|
|
break
|
|
pages.append(page)
|
|
|
|
for page in pages:
|
|
print(page)
|