<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/openstack/python-designateclient.git/designateclient/cli/base.py, branch stable/liberty</title>
<subtitle>opendev.org: openstack/python-designateclient.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-designateclient.git/'/>
<entry>
<title>Added appropriate error message for designate cli</title>
<updated>2015-09-11T06:10:26+00:00</updated>
<author>
<name>sonu.kumar</name>
<email>sonu.kumar@nectechnologies.in</email>
</author>
<published>2015-09-11T06:10:26+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-designateclient.git/commit/?id=6952ecbec52684c0584823bc5442ae30564eb6da'/>
<id>6952ecbec52684c0584823bc5442ae30564eb6da</id>
<content type='text'>
This patch adds appropriate error message for Exception
generated when running cli without authentication and
endpoint.

Change-Id: I78fe2f8db9a2cfa716c0071a7da404817dd5fbdd
Closes-Bug: #1490843
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This patch adds appropriate error message for Exception
generated when running cli without authentication and
endpoint.

Change-Id: I78fe2f8db9a2cfa716c0071a7da404817dd5fbdd
Closes-Bug: #1490843
</pre>
</div>
</content>
</entry>
<entry>
<title>Solve some py3 compatibilty issues</title>
<updated>2015-07-24T02:35:55+00:00</updated>
<author>
<name>Pradeep Kumar Singh</name>
<email>pradeep.singh@nectechnologies.in</email>
</author>
<published>2015-07-24T02:28:50+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-designateclient.git/commit/?id=28715147df29256fab3e4df2283860c2f1fb78b1'/>
<id>28715147df29256fab3e4df2283860c2f1fb78b1</id>
<content type='text'>
1. replaced dict.keys() with six.iterkeys(dict)
2. replaced map with six.moves.map

Change-Id: I4b80e12a4686fd6f5857c2322de13b1245e72083
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
1. replaced dict.keys() with six.iterkeys(dict)
2. replaced map with six.moves.map

Change-Id: I4b80e12a4686fd6f5857c2322de13b1245e72083
</pre>
</div>
</content>
</entry>
<entry>
<title>Log error message from EndpointNotFound exceptions</title>
<updated>2015-07-06T14:43:48+00:00</updated>
<author>
<name>Federico Ceratto</name>
<email>federico.ceratto@gmail.com</email>
</author>
<published>2015-07-06T14:43:48+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-designateclient.git/commit/?id=649519d875c909f6f982d8b35f8ec4698eede25a'/>
<id>649519d875c909f6f982d8b35f8ec4698eede25a</id>
<content type='text'>
Change-Id: I1e87cea22d08c6591934ff79953e5adbd27e0064
Closes-Bug: 1268310
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Change-Id: I1e87cea22d08c6591934ff79953e5adbd27e0064
Closes-Bug: 1268310
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge "Log a more informative error upon EndpointNotFound"</title>
<updated>2015-05-26T17:09:17+00:00</updated>
<author>
<name>Jenkins</name>
<email>jenkins@review.openstack.org</email>
</author>
<published>2015-05-26T17:09:17+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-designateclient.git/commit/?id=39801cf94d35082e6079c5673a92d1ed2a5e2f59'/>
<id>39801cf94d35082e6079c5673a92d1ed2a5e2f59</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Move all_tenants and edit_managed attributes to designate Client</title>
<updated>2015-05-22T13:40:52+00:00</updated>
<author>
<name>Davide Guerri</name>
<email>davide.guerri@gmail.com</email>
</author>
<published>2015-05-22T10:22:23+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-designateclient.git/commit/?id=34d14b06d91b3d2e90d6531972bc25b8a8de53ab'/>
<id>34d14b06d91b3d2e90d6531972bc25b8a8de53ab</id>
<content type='text'>
Initializing designate client with a pre-existing keystone session
won't work as designate expects keystone session to have the
'all_tenants' and 'edit_managed' attributes:

Example code:

    keystone_session = ksc_session.Session(
      auth=keystone_auth,
      verify=True,
      cert=my_cert
    )

than later:

    self._designate_client = designate_client(
      session=keystone_session,
      region_name=region_name
    )

with that code, wrap_api_call() will raise an exception:

  AttributeError: 'Session' object has no attribute 'all_tenants'

Same goes for 'edit_managed'.

This patch moves both attributes from Keystone session to designate
Client.

Closes-Bug: 1457821
Change-Id: I13d6c9ed46406fefc8cfa5de46811e4be009f1af
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Initializing designate client with a pre-existing keystone session
won't work as designate expects keystone session to have the
'all_tenants' and 'edit_managed' attributes:

Example code:

    keystone_session = ksc_session.Session(
      auth=keystone_auth,
      verify=True,
      cert=my_cert
    )

than later:

    self._designate_client = designate_client(
      session=keystone_session,
      region_name=region_name
    )

with that code, wrap_api_call() will raise an exception:

  AttributeError: 'Session' object has no attribute 'all_tenants'

Same goes for 'edit_managed'.

This patch moves both attributes from Keystone session to designate
Client.

Closes-Bug: 1457821
Change-Id: I13d6c9ed46406fefc8cfa5de46811e4be009f1af
</pre>
</div>
</content>
</entry>
<entry>
<title>Log a more informative error upon EndpointNotFound</title>
<updated>2015-05-21T12:58:03+00:00</updated>
<author>
<name>Endre Karlson</name>
<email>endre.karlson@hp.com</email>
</author>
<published>2015-05-21T10:01:52+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-designateclient.git/commit/?id=a6577e297f06b7ef70ac318089d5cd19f2d09fdf'/>
<id>a6577e297f06b7ef70ac318089d5cd19f2d09fdf</id>
<content type='text'>
Change-Id: I2e3886a66ae57e810db1b5b4cb197bc7b8c157ed
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Change-Id: I2e3886a66ae57e810db1b5b4cb197bc7b8c157ed
</pre>
</div>
</content>
</entry>
<entry>
<title>Allow to use domain names instead of ids</title>
<updated>2015-04-14T15:52:34+00:00</updated>
<author>
<name>Cedric Brandily</name>
<email>zzelle@gmail.com</email>
</author>
<published>2015-04-14T12:46:47+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-designateclient.git/commit/?id=4f586cb0603c086c590106b661ed886cffffd57a'/>
<id>4f586cb0603c086c590106b661ed886cffffd57a</id>
<content type='text'>
Currently designate allows to identify a resource only by its id. This
change allows to identify domains by name or id. This change defines
the method find_resourceid_by_name_or_id which could be reused to
identify other resources by name or id.

Change-Id: I8e64cdbc5572623d05781d0c4e735ff0c429ea91
Closes-Bug: #1443858
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Currently designate allows to identify a resource only by its id. This
change allows to identify domains by name or id. This change defines
the method find_resourceid_by_name_or_id which could be reused to
identify other resources by name or id.

Change-Id: I8e64cdbc5572623d05781d0c4e735ff0c429ea91
Closes-Bug: #1443858
</pre>
</div>
</content>
</entry>
<entry>
<title>Move session creation up to shell</title>
<updated>2014-11-13T13:28:06+00:00</updated>
<author>
<name>Endre Karlson</name>
<email>endre.karlson@hp.com</email>
</author>
<published>2014-11-07T10:56:08+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-designateclient.git/commit/?id=04f627647fb3ed0f4219cdcfcdb0cdccf07b49b7'/>
<id>04f627647fb3ed0f4219cdcfcdb0cdccf07b49b7</id>
<content type='text'>
Change-Id: I65d3f37f60f97240b52b0234da6160121ec292e1
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Change-Id: I65d3f37f60f97240b52b0234da6160121ec292e1
</pre>
</div>
</content>
</entry>
<entry>
<title>Support Keystone V3 authentication</title>
<updated>2014-07-07T20:44:36+00:00</updated>
<author>
<name>Kiall Mac Innes</name>
<email>kiall@hp.com</email>
</author>
<published>2014-05-27T00:45:03+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-designateclient.git/commit/?id=11425c0d0105c221d1ec4f8b3886907907852b69'/>
<id>11425c0d0105c221d1ec4f8b3886907907852b69</id>
<content type='text'>
We now defer the majority of our auth to keystoneclient, rather
than continuing to maintain our custom code.

Change-Id: Ia8409940d3941bc82a8b54ec60e82efa6d043102
Closes-Bug: 1323435
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
We now defer the majority of our auth to keystoneclient, rather
than continuing to maintain our custom code.

Change-Id: Ia8409940d3941bc82a8b54ec60e82efa6d043102
Closes-Bug: 1323435
</pre>
</div>
</content>
</entry>
<entry>
<title>Update hacking package, fix/ignore new style errors</title>
<updated>2014-07-01T22:14:26+00:00</updated>
<author>
<name>Jordan Cazamias</name>
<email>jordan.cazamias@rackspace.com</email>
</author>
<published>2014-07-01T22:10:35+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-designateclient.git/commit/?id=9d4544fd51008e179f2497493b8f13de91724f7c'/>
<id>9d4544fd51008e179f2497493b8f13de91724f7c</id>
<content type='text'>
Change-Id: I49d26c3a9772c409b038b06e8256fb5823169c50
Implements: blueprint update-hacking
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Change-Id: I49d26c3a9772c409b038b06e8256fb5823169c50
Implements: blueprint update-hacking
</pre>
</div>
</content>
</entry>
</feed>
