<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/openstack/python-openstackclient.git/doc/source/command-objects, branch 3.10.0</title>
<subtitle>opendev.org: openstack/python-openstackclient
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-openstackclient.git/'/>
<entry>
<title>Fix Nova-net netowrk commands</title>
<updated>2017-04-27T20:36:00+00:00</updated>
<author>
<name>Dean Troyer</name>
<email>dtroyer@gmail.com</email>
</author>
<published>2017-04-27T15:26:07+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-openstackclient.git/commit/?id=589a65c3fee2d61a13eaa53785afd3525d9ae80d'/>
<id>589a65c3fee2d61a13eaa53785afd3525d9ae80d</id>
<content type='text'>
In cleaning up functional tests for nova-net, I discovered some
problems in network create:
* --subnet option is required in network create command
* Switch API to use /os-networks rather than /os-tenant-networks as this
  is what we were actually using via novaclient
* Fix functional tests for nova-net
* Normalize some private function names in network/v2/network.py

Change-Id: I426b864406756d58d140575a3a45ee9aee67ce84
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
In cleaning up functional tests for nova-net, I discovered some
problems in network create:
* --subnet option is required in network create command
* Switch API to use /os-networks rather than /os-tenant-networks as this
  is what we were actually using via novaclient
* Fix functional tests for nova-net
* Normalize some private function names in network/v2/network.py

Change-Id: I426b864406756d58d140575a3a45ee9aee67ce84
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix NoneType error for volume snapshot create command</title>
<updated>2017-04-26T16:07:08+00:00</updated>
<author>
<name>Huanxuan Ao</name>
<email>huanxuan.ao@easystack.cn</email>
</author>
<published>2017-03-08T02:01:16+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-openstackclient.git/commit/?id=1c49a1f01da73b8eed701809de88b408e738dfed'/>
<id>1c49a1f01da73b8eed701809de88b408e738dfed</id>
<content type='text'>
In volume snapshot command, &lt;volume&gt; is the same
as &lt;snapshot-name&gt; when --volume is not specified,
but &lt;volume&gt; cannot be None, so when &lt;snapshot-name&gt;
is not specified (&lt;snapshot-name&gt; is None), a NoneType
error appears.
So make &lt;snapshot-name&gt; no longer optional, it should
be always present.

Change-Id: I3d9f10753a8ef601e70816421c160598e2cc811f
Closes-bug: #1659894
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
In volume snapshot command, &lt;volume&gt; is the same
as &lt;snapshot-name&gt; when --volume is not specified,
but &lt;volume&gt; cannot be None, so when &lt;snapshot-name&gt;
is not specified (&lt;snapshot-name&gt; is None), a NoneType
error appears.
So make &lt;snapshot-name&gt; no longer optional, it should
be always present.

Change-Id: I3d9f10753a8ef601e70816421c160598e2cc811f
Closes-bug: #1659894
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge "Add --network and --port to server create"</title>
<updated>2017-04-25T13:54:46+00:00</updated>
<author>
<name>Jenkins</name>
<email>jenkins@review.openstack.org</email>
</author>
<published>2017-04-25T13:54:46+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-openstackclient.git/commit/?id=7977f7df1887de570e17ed37bbb7da7b226e303d'/>
<id>7977f7df1887de570e17ed37bbb7da7b226e303d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge "Allow override of distributed router flag"</title>
<updated>2017-04-17T15:18:20+00:00</updated>
<author>
<name>Jenkins</name>
<email>jenkins@review.openstack.org</email>
</author>
<published>2017-04-17T15:18:20+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-openstackclient.git/commit/?id=62d71aa2435b2257670480dce73d2192652bb14d'/>
<id>62d71aa2435b2257670480dce73d2192652bb14d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add --network and --port to server create</title>
<updated>2017-04-07T14:36:18+00:00</updated>
<author>
<name>David Rabel</name>
<email>rabel@b1-systems.de</email>
</author>
<published>2017-03-13T14:16:48+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-openstackclient.git/commit/?id=8549071363805a9eef815dd2429b6b860db11a2c'/>
<id>8549071363805a9eef815dd2429b6b860db11a2c</id>
<content type='text'>
--nic option is quite unhandy. It is better to have
two seperate options --network and --port to add a
network to a new server.

Change-Id: I523abdc83ca2dd4c5dd3871f8f109c2bf57c2e02
Closes-Bug: #1612898
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
--nic option is quite unhandy. It is better to have
two seperate options --network and --port to add a
network to a new server.

Change-Id: I523abdc83ca2dd4c5dd3871f8f109c2bf57c2e02
Closes-Bug: #1612898
</pre>
</div>
</content>
</entry>
<entry>
<title>Allow override of distributed router flag</title>
<updated>2017-04-06T14:37:14+00:00</updated>
<author>
<name>venkata anil</name>
<email>anilvenkata@redhat.com</email>
</author>
<published>2017-02-14T05:05:20+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-openstackclient.git/commit/?id=fe59e339ae6dd6a5e9075773fb5c2a0fea9c2e53'/>
<id>fe59e339ae6dd6a5e9075773fb5c2a0fea9c2e53</id>
<content type='text'>
When router_distributed=True is set in neutron.conf,
user can't override this and create a centralized router
through openstack client. Openstack client allows modifying
routers from distributed to centralized after creation but
not supporting centralized flag during creation. We allow
centralized and distributed flags during router creation
with this change.

Closes-bug: #1664255
Change-Id: I75f72ca695338ad8c381cfa89fbb9d8e61ee7bc5
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
When router_distributed=True is set in neutron.conf,
user can't override this and create a centralized router
through openstack client. Openstack client allows modifying
routers from distributed to centralized after creation but
not supporting centralized flag during creation. We allow
centralized and distributed flags during router creation
with this change.

Closes-bug: #1664255
Change-Id: I75f72ca695338ad8c381cfa89fbb9d8e61ee7bc5
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge ""floating ip set/unset port" for OSC"</title>
<updated>2017-04-06T01:55:24+00:00</updated>
<author>
<name>Jenkins</name>
<email>jenkins@review.openstack.org</email>
</author>
<published>2017-04-06T01:55:24+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-openstackclient.git/commit/?id=80726b1340631b2b7d1c962d22a122e0c36486ac'/>
<id>80726b1340631b2b7d1c962d22a122e0c36486ac</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge "Add "qos-policy" option to "port create" &amp; "port set""</title>
<updated>2017-04-06T01:43:44+00:00</updated>
<author>
<name>Jenkins</name>
<email>jenkins@review.openstack.org</email>
</author>
<published>2017-04-06T01:43:44+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-openstackclient.git/commit/?id=8983373e52e49ee8d6fa603f689957a915191759'/>
<id>8983373e52e49ee8d6fa603f689957a915191759</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge "Enable to create legacy router"</title>
<updated>2017-04-05T17:00:49+00:00</updated>
<author>
<name>Jenkins</name>
<email>jenkins@review.openstack.org</email>
</author>
<published>2017-04-05T17:00:49+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-openstackclient.git/commit/?id=27f96a3a7a5515ff621300a917872b5ec62f41de'/>
<id>27f96a3a7a5515ff621300a917872b5ec62f41de</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>"floating ip set/unset port" for OSC</title>
<updated>2017-04-05T16:12:40+00:00</updated>
<author>
<name>Sindhu Devale</name>
<email>sindhu.devale@intel.com</email>
</author>
<published>2016-10-06T15:01:59+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-openstackclient.git/commit/?id=763c8c5670f238920398165e670592e006213f32'/>
<id>763c8c5670f238920398165e670592e006213f32</id>
<content type='text'>
Implements Neutron feature of floating ip associate/disassociate
into OpenStack Client.

Previously, network.find_ip() function only supported to
search floating ip by UUID. Hence, _find_floating_ip()
function is used in floating_ip.py, to search fip both by UUID
and ip_address. [1] adds the ability to find fip object using both UUID
and ip_address. This functionality however, won't be available until
the SDK is released. Hence, we continue to use _find_floating_ip()
method, which was cleaned up by [2] to remove the use of ip_cache.
Once, the SDK is released, we will remove all the usage of
_find_floating_ip() method and instead only use network.find_ip().

[1] https://review.openstack.org/#/c/449879/2
[2] https://review.openstack.org/#/c/447938/

Change-Id: I6c5222287c46ca42365917d2deae70bdb626347
Co-Authored-By: Reedip&lt;reedip.banerjee@nectechnologies.in&gt;
Co-Authored-By: RuiChen&lt;chenrui.momo@gmail.com&gt;
Closes-Bug: #1560297
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Implements Neutron feature of floating ip associate/disassociate
into OpenStack Client.

Previously, network.find_ip() function only supported to
search floating ip by UUID. Hence, _find_floating_ip()
function is used in floating_ip.py, to search fip both by UUID
and ip_address. [1] adds the ability to find fip object using both UUID
and ip_address. This functionality however, won't be available until
the SDK is released. Hence, we continue to use _find_floating_ip()
method, which was cleaned up by [2] to remove the use of ip_cache.
Once, the SDK is released, we will remove all the usage of
_find_floating_ip() method and instead only use network.find_ip().

[1] https://review.openstack.org/#/c/449879/2
[2] https://review.openstack.org/#/c/447938/

Change-Id: I6c5222287c46ca42365917d2deae70bdb626347
Co-Authored-By: Reedip&lt;reedip.banerjee@nectechnologies.in&gt;
Co-Authored-By: RuiChen&lt;chenrui.momo@gmail.com&gt;
Closes-Bug: #1560297
</pre>
</div>
</content>
</entry>
</feed>
