<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/openstack/python-cinderclient.git/cinderclient, branch 2.1.0</title>
<subtitle>opendev.org: openstack/python-cinderclient.git
</subtitle>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/openstack/python-cinderclient.git/'/>
<entry>
<title>Merge "support global_request_id in constructor"</title>
<updated>2017-05-25T17:12:29+00:00</updated>
<author>
<name>Jenkins</name>
<email>jenkins@review.openstack.org</email>
</author>
<published>2017-05-25T17:12:29+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/openstack/python-cinderclient.git/commit/?id=db51b78a3d042418e7a4159b2d92c368f069fb58'/>
<id>db51b78a3d042418e7a4159b2d92c368f069fb58</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge "Eliminate function redefined pylint error"</title>
<updated>2017-05-25T10:40:07+00:00</updated>
<author>
<name>Jenkins</name>
<email>jenkins@review.openstack.org</email>
</author>
<published>2017-05-25T10:40:07+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/openstack/python-cinderclient.git/commit/?id=8cd147028f013b1565d2444f63f4944dc7eea1c9'/>
<id>8cd147028f013b1565d2444f63f4944dc7eea1c9</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>support global_request_id in constructor</title>
<updated>2017-05-25T10:08:30+00:00</updated>
<author>
<name>Sean Dague</name>
<email>sean@dague.net</email>
</author>
<published>2017-05-24T14:37:58+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/openstack/python-cinderclient.git/commit/?id=5075eb268e7518ffe70062a54ac80b01948aafcf'/>
<id>5075eb268e7518ffe70062a54ac80b01948aafcf</id>
<content type='text'>
This allows a global_request_id to be created in the constructor which
will be passed on all subsequent calls to support cross service
request tracking.

oslo spec I65de8261746b25d45e105394f4eeb95b9cb3bd42

Change-Id: Ib271ac01c2a4a36e611ae9181ae93305f2318680
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This allows a global_request_id to be created in the constructor which
will be passed on all subsequent calls to support cross service
request tracking.

oslo spec I65de8261746b25d45e105394f4eeb95b9cb3bd42

Change-Id: Ib271ac01c2a4a36e611ae9181ae93305f2318680
</pre>
</div>
</content>
</entry>
<entry>
<title>Eliminate function redefined pylint error</title>
<updated>2017-05-25T01:07:52+00:00</updated>
<author>
<name>TommyLike</name>
<email>tommylikehu@gmail.com</email>
</author>
<published>2017-05-24T02:15:53+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/openstack/python-cinderclient.git/commit/?id=8471c6cebde15227c55aeb3db58f2d2f36fad731'/>
<id>8471c6cebde15227c55aeb3db58f2d2f36fad731</id>
<content type='text'>
Disable function redefined pylint error when redefining
is desired in v3/shell.py, also fix some typos.

Change-Id: Ic86b14ab7286a8a76f0db551ac6330211a509ff3
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Disable function redefined pylint error when redefining
is desired in v3/shell.py, also fix some typos.

Change-Id: Ic86b14ab7286a8a76f0db551ac6330211a509ff3
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge "Handle dashes in encryption-type-create arguments"</title>
<updated>2017-05-24T15:46:56+00:00</updated>
<author>
<name>Jenkins</name>
<email>jenkins@review.openstack.org</email>
</author>
<published>2017-05-24T15:46:56+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/openstack/python-cinderclient.git/commit/?id=58c60e787f7b5a0fcc856f1114e5a2fe03beb364'/>
<id>58c60e787f7b5a0fcc856f1114e5a2fe03beb364</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Handle dashes in encryption-type-create arguments</title>
<updated>2017-05-24T13:04:50+00:00</updated>
<author>
<name>Eric Harney</name>
<email>eharney@redhat.com</email>
</author>
<published>2017-03-24T17:39:56+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/openstack/python-cinderclient.git/commit/?id=69f0090b65be88c93691f89dc1cd3e9f8e2a5ee0'/>
<id>69f0090b65be88c93691f89dc1cd3e9f8e2a5ee0</id>
<content type='text'>
encryption-type-create currently takes args "--key_size"
and "--control_location".

Our standard is to use dashes rather than underscores for
arguments like this, because it's easier to type them.

Additionally, encryption-type-update already uses
"--key-size" and "--control-location" for the same args.

This adds the dashed versions to the CLI and makes them the
default shown in the help.  The underscore versions are
retained for compatibility.

Also removes redundant "(Optional)" text for arguments listed
under "Optional Arguments".  This matches other commands.

Change-Id: I1bd2b7657ec577b9775eacd163cfdf6eb6b6eab2
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
encryption-type-create currently takes args "--key_size"
and "--control_location".

Our standard is to use dashes rather than underscores for
arguments like this, because it's easier to type them.

Additionally, encryption-type-update already uses
"--key-size" and "--control-location" for the same args.

This adds the dashed versions to the CLI and makes them the
default shown in the help.  The underscore versions are
retained for compatibility.

Also removes redundant "(Optional)" text for arguments listed
under "Optional Arguments".  This matches other commands.

Change-Id: I1bd2b7657ec577b9775eacd163cfdf6eb6b6eab2
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge "Cinder client reset-state improvements"</title>
<updated>2017-05-23T19:28:58+00:00</updated>
<author>
<name>Jenkins</name>
<email>jenkins@review.openstack.org</email>
</author>
<published>2017-05-23T19:28:58+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/openstack/python-cinderclient.git/commit/?id=0470ec8c518e496e1402180c17bf5b006bef54dc'/>
<id>0470ec8c518e496e1402180c17bf5b006bef54dc</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Cinder client reset-state improvements</title>
<updated>2017-05-19T22:52:24+00:00</updated>
<author>
<name>TommyLike</name>
<email>tommylikehu@gmail.com</email>
</author>
<published>2017-03-16T08:32:06+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/openstack/python-cinderclient.git/commit/?id=af921bb6b4301a073ad9bed4231a6ced9c82be61'/>
<id>af921bb6b4301a073ad9bed4231a6ced9c82be61</id>
<content type='text'>
Now we can use 'cinder reset-state' command for 'volume',
'snapshot', 'backup', 'group' and 'group-snapshot'.
Also change volume's default status from 'available' to
'None' when not any status is specified.

Co-Authored-By: Eric Harney &lt;eharney@redhat.com&gt;

Change-Id: I0aefeaf5ece74f1f2bc4b72d5705c8c088921e20
Partial-implements: blueprint client-reset-state-improvements
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Now we can use 'cinder reset-state' command for 'volume',
'snapshot', 'backup', 'group' and 'group-snapshot'.
Also change volume's default status from 'available' to
'None' when not any status is specified.

Co-Authored-By: Eric Harney &lt;eharney@redhat.com&gt;

Change-Id: I0aefeaf5ece74f1f2bc4b72d5705c8c088921e20
Partial-implements: blueprint client-reset-state-improvements
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix the wrong help message of marker</title>
<updated>2017-05-19T02:12:13+00:00</updated>
<author>
<name>wangxiyuan</name>
<email>wangxiyuan@huawei.com</email>
</author>
<published>2017-05-19T02:12:13+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/openstack/python-cinderclient.git/commit/?id=990527ea79b17110aad48d5600cb6dde397b30c1'/>
<id>990527ea79b17110aad48d5600cb6dde397b30c1</id>
<content type='text'>
The marker for list manageable resources should be the resources'
"reference" property, not "volume id"

Change-Id: Icfe10b9a041daa6a9333f71fae15eba86d330b7b
Closes-bug: #1657992
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The marker for list manageable resources should be the resources'
"reference" property, not "volume id"

Change-Id: Icfe10b9a041daa6a9333f71fae15eba86d330b7b
Closes-bug: #1657992
</pre>
</div>
</content>
</entry>
<entry>
<title>Pretty print 'extra_specs' and 'group_specs'</title>
<updated>2017-05-12T07:44:39+00:00</updated>
<author>
<name>TommyLike</name>
<email>tommylikehu@gmail.com</email>
</author>
<published>2017-05-12T07:35:20+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/openstack/python-cinderclient.git/commit/?id=16af9f72b6ff7eba91258e71cf05504de5ba6f7f'/>
<id>16af9f72b6ff7eba91258e71cf05504de5ba6f7f</id>
<content type='text'>
Now we have 'extra_specs', 'group_specs' pretty
printed.

+-------------+---------------+
| other_key   | value         |
| extra_specs | key1 : value1 |
|             | key2 : value2 |
+-------------+---------------+

Change-Id: I3500f148f29bad89aacc89ad12a993edf4f7d460
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Now we have 'extra_specs', 'group_specs' pretty
printed.

+-------------+---------------+
| other_key   | value         |
| extra_specs | key1 : value1 |
|             | key2 : value2 |
+-------------+---------------+

Change-Id: I3500f148f29bad89aacc89ad12a993edf4f7d460
</pre>
</div>
</content>
</entry>
</feed>
