<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/openstack/python-designateclient.git/designateclient, branch stable/kilo</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>Move all_tenants and edit_managed attributes to designate Client</title>
<updated>2015-06-10T12:19:08+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=7f61582cacc755cfe4be2ba7b1fe9e2fddb1ed68'/>
<id>7f61582cacc755cfe4be2ba7b1fe9e2fddb1ed68</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>Add --edit-managed flag to cli</title>
<updated>2015-06-10T12:19:08+00:00</updated>
<author>
<name>Graham Hayes</name>
<email>graham.hayes@hp.com</email>
</author>
<published>2015-05-06T13:30:20+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-designateclient.git/commit/?id=feb621a56cf8f77e0cee4df206735819d55457ea'/>
<id>feb621a56cf8f77e0cee4df206735819d55457ea</id>
<content type='text'>
Allows users with the right role to edit managed records

Change-Id: I5502da0ca1f04e428b2723038d369d317338ce51
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Allows users with the right role to edit managed records

Change-Id: I5502da0ca1f04e428b2723038d369d317338ce51
</pre>
</div>
</content>
</entry>
<entry>
<title>Added extra previllege to list all domains from all tenants</title>
<updated>2015-06-10T12:19:08+00:00</updated>
<author>
<name>Satyanarayana Patibandla</name>
<email>satya.patibandla@gmail.com</email>
</author>
<published>2015-02-23T15:11:22+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-designateclient.git/commit/?id=eba7c2e58472638c5675f4b7dac95415daf23ec8'/>
<id>eba7c2e58472638c5675f4b7dac95415daf23ec8</id>
<content type='text'>
The user has to use the command "designate --all-tenants domain-list" to list all domains from all tenants.
When the above command is used "X-Auth-All-Projects" value is set to true and it is passed as a header to
designate.This will allow us to list all domains from all tenants.

Change-Id: I4cd4dd5427f5f35cdec95dbdf36c7386b60a2949
Fixes: bug #1418156
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The user has to use the command "designate --all-tenants domain-list" to list all domains from all tenants.
When the above command is used "X-Auth-All-Projects" value is set to true and it is passed as a header to
designate.This will allow us to list all domains from all tenants.

Change-Id: I4cd4dd5427f5f35cdec95dbdf36c7386b60a2949
Fixes: bug #1418156
</pre>
</div>
</content>
</entry>
<entry>
<title>Refactor KS session creation and support CA certs</title>
<updated>2014-11-26T23:07:38+00:00</updated>
<author>
<name>Kiall Mac Innes</name>
<email>kiall@hp.com</email>
</author>
<published>2014-11-26T21:54:24+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-designateclient.git/commit/?id=7363e3b4e98839aaffe20c3a5618d2ef77181304'/>
<id>7363e3b4e98839aaffe20c3a5618d2ef77181304</id>
<content type='text'>
Change-Id: Ib3fc33b1825b16cc4537d979d5ab5ed0b39633d5
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Change-Id: Ib3fc33b1825b16cc4537d979d5ab5ed0b39633d5
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge "Move session creation up to shell"</title>
<updated>2014-11-20T20:13:32+00:00</updated>
<author>
<name>Jenkins</name>
<email>jenkins@review.openstack.org</email>
</author>
<published>2014-11-20T20:13:32+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-designateclient.git/commit/?id=14803b7ef09d511e0b365bee0216ad1fd09ec667'/>
<id>14803b7ef09d511e0b365bee0216ad1fd09ec667</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge "Move some useful code outside v1"</title>
<updated>2014-11-18T13:07:41+00:00</updated>
<author>
<name>Jenkins</name>
<email>jenkins@review.openstack.org</email>
</author>
<published>2014-11-18T13:07:41+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-designateclient.git/commit/?id=9cf81c9bf854582230afd0d7b5a06e3036b56878'/>
<id>9cf81c9bf854582230afd0d7b5a06e3036b56878</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Move some useful code outside v1</title>
<updated>2014-11-17T16:03:32+00:00</updated>
<author>
<name>Endre Karlson</name>
<email>endre.karlson@hp.com</email>
</author>
<published>2014-11-13T08:54:49+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-designateclient.git/commit/?id=6e174c5128df0c53a2ff008fdd1d15cb165e50c4'/>
<id>6e174c5128df0c53a2ff008fdd1d15cb165e50c4</id>
<content type='text'>
Change-Id: I5cdb4e0b57e00743cb1a4409a1fc8b519ae38ddb
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Change-Id: I5cdb4e0b57e00743cb1a4409a1fc8b519ae38ddb
</pre>
</div>
</content>
</entry>
<entry>
<title>Make token + endpoints work correctly</title>
<updated>2014-11-14T08:50:05+00:00</updated>
<author>
<name>Endre Karlson</name>
<email>endre.karlson@hp.com</email>
</author>
<published>2014-11-14T00:11:50+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-designateclient.git/commit/?id=cdf87e7fcaf2fe444904e785e1588bdb057f97de'/>
<id>cdf87e7fcaf2fe444904e785e1588bdb057f97de</id>
<content type='text'>
Change-Id: I3aa15cf2c3304c057fa22204475ac287de02e8eb
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Change-Id: I3aa15cf2c3304c057fa22204475ac287de02e8eb
</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>Set defaults for endpoint_type and service_type</title>
<updated>2014-11-11T22:42:23+00:00</updated>
<author>
<name>Endre Karlson</name>
<email>endre.karlson@hp.com</email>
</author>
<published>2014-11-11T22:42:23+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-designateclient.git/commit/?id=985f4c1eb6bfed23b14a7b70708f14a82622cb77'/>
<id>985f4c1eb6bfed23b14a7b70708f14a82622cb77</id>
<content type='text'>
Change-Id: I2fd3c45b3436e876b1f1873fbdb9dc6f77140323
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Change-Id: I2fd3c45b3436e876b1f1873fbdb9dc6f77140323
</pre>
</div>
</content>
</entry>
</feed>
