2013-03-19 00:24:32 -06:00
|
|
|
Python API
|
|
|
|
==========
|
2017-08-22 11:41:50 +01:00
|
|
|
|
|
|
|
In order to use the Python api directly, you must first obtain an auth token
|
|
|
|
and identify which endpoint you wish to speak to. Once you have done so, you
|
|
|
|
can use the API like so::
|
2013-03-19 00:24:32 -06:00
|
|
|
|
|
|
|
>>> from cinderclient import client
|
2019-04-18 16:01:39 -05:00
|
|
|
>>> cinder = client.Client('1', $OS_USER_NAME, $OS_PASSWORD, $OS_PROJECT_NAME, $OS_AUTH_URL)
|
2013-03-19 00:24:32 -06:00
|
|
|
>>> cinder.volumes.list()
|
|
|
|
[]
|
|
|
|
>>> myvol = cinder.volumes.create(display_name="test-vol", size=1)
|
|
|
|
>>> myvol.id
|
|
|
|
ce06d0a8-5c1b-4e2c-81d2-39eca6bbfb70
|
|
|
|
>>> cinder.volumes.list()
|
|
|
|
[<Volume: ce06d0a8-5c1b-4e2c-81d2-39eca6bbfb70>]
|
2020-09-15 21:50:14 +05:30
|
|
|
>>> myvol.delete()
|
2013-03-19 00:24:32 -06:00
|
|
|
|
2017-08-22 11:41:50 +01:00
|
|
|
Alternatively, you can create a client instance using the keystoneauth session
|
|
|
|
API::
|
2016-11-23 12:14:31 -05:00
|
|
|
|
|
|
|
>>> from keystoneauth1 import loading
|
|
|
|
>>> from keystoneauth1 import session
|
|
|
|
>>> from cinderclient import client
|
|
|
|
>>> loader = loading.get_plugin_loader('password')
|
|
|
|
>>> auth = loader.load_from_options(auth_url=AUTH_URL,
|
|
|
|
... username=USERNAME,
|
|
|
|
... password=PASSWORD,
|
2018-03-22 10:50:51 -06:00
|
|
|
... project_id=PROJECT_ID,
|
|
|
|
... user_domain_name=USER_DOMAIN_NAME)
|
2016-11-23 12:14:31 -05:00
|
|
|
>>> sess = session.Session(auth=auth)
|
|
|
|
>>> cinder = client.Client(VERSION, session=sess)
|
|
|
|
>>> cinder.volumes.list()
|
|
|
|
[]
|
|
|
|
|
2017-07-26 08:05:58 +00:00
|
|
|
User Guides
|
2018-12-04 17:32:19 -05:00
|
|
|
~~~~~~~~~~~
|
2013-07-31 13:07:14 -04:00
|
|
|
|
2017-07-26 08:05:58 +00:00
|
|
|
.. toctree::
|
|
|
|
:maxdepth: 2
|
|
|
|
|
2018-12-04 17:32:19 -05:00
|
|
|
user/shell
|
|
|
|
user/no_auth
|
2017-07-26 08:05:58 +00:00
|
|
|
|
|
|
|
Command-Line Reference
|
2018-12-04 17:32:19 -05:00
|
|
|
~~~~~~~~~~~~~~~~~~~~~~
|
2017-07-26 08:05:58 +00:00
|
|
|
|
|
|
|
.. toctree::
|
|
|
|
:maxdepth: 2
|
|
|
|
|
2017-08-22 11:41:50 +01:00
|
|
|
cli/index
|
|
|
|
cli/details
|
2017-07-26 08:05:58 +00:00
|
|
|
|
|
|
|
Developer Guides
|
2018-12-04 17:32:19 -05:00
|
|
|
~~~~~~~~~~~~~~~~
|
2017-07-26 08:05:58 +00:00
|
|
|
|
|
|
|
.. toctree::
|
|
|
|
:maxdepth: 2
|
|
|
|
|
2020-03-03 08:42:23 -05:00
|
|
|
contributor/contributing
|
2017-07-26 08:05:58 +00:00
|
|
|
contributor/functional_tests
|
|
|
|
contributor/unit_tests
|
2013-03-19 00:24:32 -06:00
|
|
|
|
|
|
|
Release Notes
|
2018-12-04 17:32:19 -05:00
|
|
|
~~~~~~~~~~~~~
|
2014-01-31 08:33:15 -07:00
|
|
|
|
2017-08-22 11:41:50 +01:00
|
|
|
All python-cinderclient release notes can now be found on the `release notes`_
|
|
|
|
page.
|
2016-10-28 09:53:56 -05:00
|
|
|
|
2017-07-20 15:19:18 +08:00
|
|
|
.. _`release notes`: https://docs.openstack.org/releasenotes/python-cinderclient/
|
2016-10-28 09:53:56 -05:00
|
|
|
|
|
|
|
The following are kept for historical purposes.
|
2014-04-21 09:17:26 -06:00
|
|
|
|
2015-10-07 09:50:15 -05:00
|
|
|
1.4.0
|
|
|
|
-----
|
|
|
|
|
|
|
|
* Improved error reporting on reaching quota.
|
|
|
|
* Volume status management for volume migration.
|
|
|
|
* Added command to fetch specified backend capabilities.
|
|
|
|
* Added commands for modifying image metadata.
|
|
|
|
* Support for non-disruptive backup.
|
|
|
|
* Support for cloning consistency groups.
|
|
|
|
|
2017-08-22 11:41:50 +01:00
|
|
|
.. _1493612: https://bugs.launchpad.net/python-cinderclient/+bug/1493612
|
|
|
|
.. _1482988: https://bugs.launchpad.net/python-cinderclient/+bug/1482988
|
|
|
|
.. _1422046: https://bugs.launchpad.net/python-cinderclient/+bug/1422046
|
|
|
|
.. _1481478: https://bugs.launchpad.net/python-cinderclient/+bug/1481478
|
|
|
|
.. _1475430: https://bugs.launchpad.net/python-cinderclient/+bug/1475430
|
2015-10-07 09:50:15 -05:00
|
|
|
|
|
|
|
1.3.1
|
|
|
|
-----
|
|
|
|
|
|
|
|
* Fixed usage of the --debug option.
|
|
|
|
* Documentation and API example improvements.
|
2019-04-18 16:01:39 -05:00
|
|
|
* Set max volume size limit for the project.
|
2015-10-07 09:50:15 -05:00
|
|
|
* Added encryption-type-update to cinderclient.
|
|
|
|
* Added volume multi attach support.
|
|
|
|
* Support host-attach of volumes.
|
|
|
|
|
2017-08-22 11:41:50 +01:00
|
|
|
.. _1467628: https://bugs.launchpad.net/python-cinderclient/+bug/1467628
|
|
|
|
.. _1454436: https://bugs.launchpad.net/cinder/+bug/1454436
|
|
|
|
.. _1423884: https://bugs.launchpad.net/python-cinderclient/+bug/1423884
|
2015-10-07 09:50:15 -05:00
|
|
|
|
2015-07-07 13:19:36 -07:00
|
|
|
1.3.0
|
|
|
|
-----
|
|
|
|
|
|
|
|
* Revert version discovery support due to this breaking deployments using
|
|
|
|
proxies. We will revisit this once the Kilo config option 'public_endpoint'
|
|
|
|
has been available longer to allow these deployments to work again with
|
|
|
|
version discovery available from the Cinder client.
|
|
|
|
* Add volume multi-attach support.
|
|
|
|
* Add encryption-type-update to update volume encryption types.
|
|
|
|
|
2017-08-22 11:41:50 +01:00
|
|
|
.. _1454276: http://bugs.launchpad.net/python-cinderclient/+bug/1454276
|
|
|
|
.. _1462104: http://bugs.launchpad.net/python-cinderclient/+bug/1462104
|
|
|
|
.. _1418580: http://bugs.launchpad.net/python-cinderclient/+bug/1418580
|
|
|
|
.. _1464160: http://bugs.launchpad.net/python-cinderclient/+bug/1464160
|
2015-07-07 13:19:36 -07:00
|
|
|
|
2015-06-05 08:29:50 -06:00
|
|
|
1.2.2
|
|
|
|
-----
|
|
|
|
|
2015-10-07 13:48:33 +00:00
|
|
|
* IMPORTANT: version discovery breaks deployments using proxies and has been
|
|
|
|
reverted in v1.3.0 . Do not use this version.
|
2015-06-05 08:29:50 -06:00
|
|
|
* Update requirements to resolve conflicts with other OpenStack projects
|
|
|
|
|
2015-05-06 21:17:25 -07:00
|
|
|
1.2.1
|
|
|
|
-----
|
|
|
|
|
2015-10-07 13:48:33 +00:00
|
|
|
* IMPORTANT: version discovery breaks deployments using proxies and has been
|
|
|
|
reverted in v1.3.0 . Do not use this version.
|
2015-05-06 21:17:25 -07:00
|
|
|
* Remove warnings about Keystone unable to contact endpoint for discovery.
|
|
|
|
* backup-create subcommand allows specifying --incremental to do an incremental
|
|
|
|
backup.
|
|
|
|
* Modify consistency groups using the consisgroup-update subcommand. Change the
|
|
|
|
name, description, add volumes, or remove volumes.
|
|
|
|
* Create consistency group from consistency group snapshot using the
|
|
|
|
consisgroup-create-from-src subcommand.
|
|
|
|
* --force no longer needs a boolean to be specified.
|
|
|
|
|
2017-08-22 11:41:50 +01:00
|
|
|
.. _1341411: http://bugs.launchpad.net/python-cinderclient/+bug/1341411
|
|
|
|
.. _1429102: http://bugs.launchpad.net/python-cinderclient/+bug/1429102
|
|
|
|
.. _1447589: http://bugs.launchpad.net/python-cinderclient/+bug/1447589
|
|
|
|
.. _1447162: http://bugs.launchpad.net/python-cinderclient/+bug/1447162
|
|
|
|
.. _1448244: http://bugs.launchpad.net/python-cinderclient/+bug/1448244
|
|
|
|
.. _1244453: http://bugs.launchpad.net/python-cinderclient/+bug/1244453
|
2015-05-06 21:17:25 -07:00
|
|
|
|
|
|
|
1.2.0
|
|
|
|
-----
|
|
|
|
|
2015-10-07 13:48:33 +00:00
|
|
|
* IMPORTANT: version discovery breaks deployments using proxies and has been
|
|
|
|
reverted in v1.3.0 . Do not use this version.
|
2015-05-06 21:17:25 -07:00
|
|
|
* Add metadata during snapshot create.
|
|
|
|
* Add TTY password entry when no password is environment vars or --os-password.
|
|
|
|
* Ability to set backup quota in quota-update subcommand.
|
|
|
|
* Force the client to use a particular Cinder API endpoint with --bypass-url.
|
|
|
|
* Create a volume from an image by image name.
|
|
|
|
* New type-default subcommand will display the default volume type.
|
|
|
|
* New type-update subcommand allows updating a volume type's description.
|
|
|
|
* type-list subcommand displays volume type description.
|
|
|
|
* type-create subcommand allows setting the description.
|
|
|
|
* Show pools to a backend when doing a service-list subcommand.
|
|
|
|
* List and update consistency group quotas.
|
|
|
|
* Create volume types that are non-public and have particular project access.
|
|
|
|
* -d is available as a shorter option to --debug.
|
|
|
|
* transfer-list subcommand has an option for --all-tenants.
|
|
|
|
* --sort option available instead of --sort-key and --sort-dir. E.q. --sort
|
|
|
|
<key>[:<direction>].
|
|
|
|
* Volume type name can now be updated via subcommand type-update.
|
2016-11-08 03:40:34 +00:00
|
|
|
* bash completion gives subcommands when using 'cinder help'.
|
2015-05-06 21:17:25 -07:00
|
|
|
* Version discovery is now available. You no longer need a volumev2 service
|
|
|
|
type in your keystone catalog.
|
|
|
|
* Filter by tenant in list subcommand.
|
|
|
|
|
2017-08-22 11:41:50 +01:00
|
|
|
.. _1373662: http://bugs.launchpad.net/python-cinderclient/+bug/1373662
|
|
|
|
.. _1376311: http://bugs.launchpad.net/python-cinderclient/+bug/1376311
|
|
|
|
.. _1368910: http://bugs.launchpad.net/python-cinderclient/+bug/1368910
|
|
|
|
.. _1374211: http://bugs.launchpad.net/python-cinderclient/+bug/1374211
|
|
|
|
.. _1379505: http://bugs.launchpad.net/python-cinderclient/+bug/1379505
|
|
|
|
.. _1282324: http://bugs.launchpad.net/python-cinderclient/+bug/1282324
|
|
|
|
.. _1358926: http://bugs.launchpad.net/python-cinderclient/+bug/1358926
|
|
|
|
.. _1342192: http://bugs.launchpad.net/python-cinderclient/+bug/1342192
|
|
|
|
.. _1386232: http://bugs.launchpad.net/python-cinderclient/+bug/1386232
|
|
|
|
.. _1402846: http://bugs.launchpad.net/python-cinderclient/+bug/1402846
|
|
|
|
.. _1373766: http://bugs.launchpad.net/python-cinderclient/+bug/1373766
|
|
|
|
.. _1403902: http://bugs.launchpad.net/python-cinderclient/+bug/1403902
|
|
|
|
.. _1377823: http://bugs.launchpad.net/python-cinderclient/+bug/1377823
|
|
|
|
.. _1350702: http://bugs.launchpad.net/python-cinderclient/+bug/1350702
|
|
|
|
.. _1357559: http://bugs.launchpad.net/python-cinderclient/+bug/1357559
|
|
|
|
.. _1341424: http://bugs.launchpad.net/python-cinderclient/+bug/1341424
|
|
|
|
.. _1365273: http://bugs.launchpad.net/python-cinderclient/+bug/1365273
|
|
|
|
.. _1404020: http://bugs.launchpad.net/python-cinderclient/+bug/1404020
|
|
|
|
.. _1380729: http://bugs.launchpad.net/python-cinderclient/+bug/1380729
|
|
|
|
.. _1417273: http://bugs.launchpad.net/python-cinderclient/+bug/1417273
|
|
|
|
.. _1420238: http://bugs.launchpad.net/python-cinderclient/+bug/1420238
|
|
|
|
.. _1421210: http://bugs.launchpad.net/python-cinderclient/+bug/1421210
|
|
|
|
.. _1351084: http://bugs.launchpad.net/python-cinderclient/+bug/1351084
|
|
|
|
.. _1366289: http://bugs.launchpad.net/python-cinderclient/+bug/1366289
|
|
|
|
.. _1309086: http://bugs.launchpad.net/python-cinderclient/+bug/1309086
|
|
|
|
.. _1379486: http://bugs.launchpad.net/python-cinderclient/+bug/1379486
|
|
|
|
.. _1422244: http://bugs.launchpad.net/python-cinderclient/+bug/1422244
|
|
|
|
.. _1399747: http://bugs.launchpad.net/python-cinderclient/+bug/1399747
|
|
|
|
.. _1431693: http://bugs.launchpad.net/python-cinderclient/+bug/1431693
|
|
|
|
.. _1428764: http://bugs.launchpad.net/python-cinderclient/+bug/1428764
|
2015-05-06 21:17:25 -07:00
|
|
|
|
|
|
|
** Python 2.4 support removed.
|
2017-08-22 11:41:50 +01:00
|
|
|
|
2015-05-06 21:17:25 -07:00
|
|
|
** --sort-key and --sort-dir are deprecated. Use --sort instead.
|
2017-08-22 11:41:50 +01:00
|
|
|
|
2015-05-06 21:17:25 -07:00
|
|
|
** A dash will be displayed of None when there is no data to display under
|
|
|
|
a column.
|
|
|
|
|
2014-09-23 18:17:40 -06:00
|
|
|
1.1.1
|
|
|
|
------
|
2017-08-22 11:41:50 +01:00
|
|
|
|
|
|
|
.. _1370152: http://bugs.launchpad.net/python-cinderclient/+bug/1370152
|
2014-09-23 18:17:40 -06:00
|
|
|
|
2014-09-09 19:45:18 -06:00
|
|
|
1.1.0
|
|
|
|
------
|
|
|
|
|
|
|
|
* Add support for ConsistencyGroups
|
|
|
|
* Use Adapter from keystoneclient
|
|
|
|
* Add support for Replication feature
|
|
|
|
* Add pagination for Volume List
|
2020-05-14 16:15:15 -05:00
|
|
|
* Note Connection refused --> Connection error commit:
|
|
|
|
c9e7818f3f90ce761ad8ccd09181c705880a4266
|
|
|
|
* Note Mask Passwords in log output commit:
|
|
|
|
80582f2b860b2dadef7ae07bdbd8395bf03848b1
|
|
|
|
|
2014-09-09 19:45:18 -06:00
|
|
|
|
2017-08-22 11:41:50 +01:00
|
|
|
.. _1325773: http://bugs.launchpad.net/python-cinderclient/+bug/1325773
|
|
|
|
.. _1333257: http://bugs.launchpad.net/python-cinderclient/+bug/1333257
|
|
|
|
.. _1268480: http://bugs.launchpad.net/python-cinderclient/+bug/1268480
|
|
|
|
.. _1275025: http://bugs.launchpad.net/python-cinderclient/+bug/1275025
|
|
|
|
.. _1258489: http://bugs.launchpad.net/python-cinderclient/+bug/1258489
|
|
|
|
.. _1241682: http://bugs.launchpad.net/python-cinderclient/+bug/1241682
|
|
|
|
.. _1203471: http://bugs.launchpad.net/python-cinderclient/+bug/1203471
|
|
|
|
.. _1210874: http://bugs.launchpad.net/python-cinderclient/+bug/1210874
|
|
|
|
.. _1200214: http://bugs.launchpad.net/python-cinderclient/+bug/1200214
|
|
|
|
.. _1130572: http://bugs.launchpad.net/python-cinderclient/+bug/1130572
|
|
|
|
.. _1156994: http://bugs.launchpad.net/python-cinderclient/+bug/1156994
|
2014-09-09 19:45:18 -06:00
|
|
|
|
2014-04-21 09:17:26 -06:00
|
|
|
1.0.9
|
2014-02-05 11:57:13 +05:30
|
|
|
------
|
2017-08-22 11:41:50 +01:00
|
|
|
|
2014-02-05 11:57:13 +05:30
|
|
|
.. _1255905: http://bugs.launchpad.net/python-cinderclient/+bug/1255905
|
2014-02-11 08:36:41 -05:00
|
|
|
.. _1267168: http://bugs.launchpad.net/python-cinderclient/+bug/1267168
|
2014-02-25 10:25:24 +01:00
|
|
|
.. _1284540: http://bugs.launchpad.net/python-cinderclient/+bug/1284540
|
2014-02-05 11:57:13 +05:30
|
|
|
|
2014-01-31 08:33:15 -07:00
|
|
|
1.0.8
|
|
|
|
-----
|
2017-08-22 11:41:50 +01:00
|
|
|
|
2013-12-02 18:05:54 -05:00
|
|
|
* Add support for reset-state on multiple volumes or snapshots at once
|
2014-01-26 09:28:48 +02:00
|
|
|
* Add volume retype command
|
2013-12-02 18:05:54 -05:00
|
|
|
|
2014-01-25 08:13:25 +05:30
|
|
|
.. _966329: https://bugs.launchpad.net/python-cinderclient/+bug/966329
|
2013-11-28 16:56:53 +00:00
|
|
|
.. _1256043: https://bugs.launchpad.net/python-cinderclient/+bug/1256043
|
2013-11-26 11:42:17 +08:00
|
|
|
.. _1254951: http://bugs.launchpad.net/python-cinderclient/+bug/1254951
|
2013-11-25 18:08:01 +08:00
|
|
|
.. _1254587: http://bugs.launchpad.net/python-cinderclient/+bug/1254587
|
2013-10-29 18:01:41 +02:00
|
|
|
.. _1253142: http://bugs.launchpad.net/python-cinderclient/+bug/1253142
|
2013-11-20 04:34:38 -05:00
|
|
|
.. _1252665: http://bugs.launchpad.net/python-cinderclient/+bug/1252665
|
2013-11-28 22:13:47 +08:00
|
|
|
.. _1255876: http://bugs.launchpad.net/python-cinderclient/+bug/1255876
|
2013-11-14 18:50:30 +00:00
|
|
|
.. _1251385: http://bugs.launchpad.net/python-cinderclient/+bug/1251385
|
2013-12-27 10:32:11 +08:00
|
|
|
.. _1264415: http://bugs.launchpad.net/python-cinderclient/+bug/1264415
|
2013-12-03 15:47:58 +04:00
|
|
|
.. _1258489: http://bugs.launchpad.net/python-cinderclient/+bug/1258489
|
2014-01-20 15:29:55 +08:00
|
|
|
.. _1248519: http://bugs.launchpad.net/python-cinderclient/+bug/1248519
|
2013-12-02 18:56:45 -05:00
|
|
|
.. _1257747: http://bugs.launchpad.net/python-cinderclient/+bug/1257747
|
2013-11-14 19:30:46 +02:00
|
|
|
|
2013-10-30 11:36:37 -06:00
|
|
|
1.0.7
|
|
|
|
-----
|
2017-08-22 11:41:50 +01:00
|
|
|
|
2013-10-30 11:36:37 -06:00
|
|
|
* Add support for read-only volumes
|
|
|
|
* Add support for setting snapshot metadata
|
|
|
|
* Deprecate volume-id arg to backup restore in favor of --volume
|
|
|
|
* Add quota-usage command
|
|
|
|
* Fix exception deprecation warning message
|
|
|
|
* Report error when no args supplied to rename cmd
|
|
|
|
|
|
|
|
.. _1241941: http://bugs.launchpad.net/python-cinderclient/+bug/1241941
|
|
|
|
.. _1242816: http://bugs.launchpad.net/python-cinderclient/+bug/1242816
|
|
|
|
.. _1233311: http://bugs.launchpad.net/python-cinderclient/+bug/1233311
|
|
|
|
.. _1227307: http://bugs.launchpad.net/python-cinderclient/+bug/1227307
|
|
|
|
.. _1240151: http://bugs.launchpad.net/python-cinderclient/+bug/1240151
|
|
|
|
.. _1241682: http://bugs.launchpad.net/python-cinderclient/+bug/1241682
|
|
|
|
|
|
|
|
|
2013-10-03 17:22:34 -06:00
|
|
|
1.0.6
|
|
|
|
-----
|
2017-08-22 11:41:50 +01:00
|
|
|
|
2013-10-03 17:22:34 -06:00
|
|
|
* Add support for multiple endpoints
|
|
|
|
* Add response info for backup command
|
|
|
|
* Add metadata option to cinder list command
|
|
|
|
* Add timeout parameter for requests
|
|
|
|
* Add update action for snapshot metadata
|
|
|
|
* Add encryption metadata support
|
|
|
|
* Add volume migrate support
|
2013-10-30 11:36:37 -06:00
|
|
|
* Add support for QoS specs
|
2013-10-03 17:22:34 -06:00
|
|
|
|
|
|
|
.. _1221104: http://bugs.launchpad.net/python-cinderclient/+bug/1221104
|
|
|
|
.. _1220590: http://bugs.launchpad.net/python-cinderclient/+bug/1220590
|
|
|
|
.. _1220147: http://bugs.launchpad.net/python-cinderclient/+bug/1220147
|
|
|
|
.. _1214176: http://bugs.launchpad.net/python-cinderclient/+bug/1214176
|
|
|
|
.. _1210874: http://bugs.launchpad.net/python-cinderclient/+bug/1210874
|
|
|
|
.. _1210296: http://bugs.launchpad.net/python-cinderclient/+bug/1210296
|
|
|
|
.. _1210292: http://bugs.launchpad.net/python-cinderclient/+bug/1210292
|
|
|
|
.. _1207635: http://bugs.launchpad.net/python-cinderclient/+bug/1207635
|
|
|
|
.. _1207609: http://bugs.launchpad.net/python-cinderclient/+bug/1207609
|
|
|
|
.. _1207260: http://bugs.launchpad.net/python-cinderclient/+bug/1207260
|
|
|
|
.. _1206968: http://bugs.launchpad.net/python-cinderclient/+bug/1206968
|
|
|
|
.. _1203471: http://bugs.launchpad.net/python-cinderclient/+bug/1203471
|
|
|
|
.. _1200214: http://bugs.launchpad.net/python-cinderclient/+bug/1200214
|
|
|
|
.. _1195014: http://bugs.launchpad.net/python-cinderclient/+bug/1195014
|
|
|
|
|
2013-07-13 14:46:57 -06:00
|
|
|
1.0.5
|
|
|
|
-----
|
2017-08-22 11:41:50 +01:00
|
|
|
|
2013-08-06 16:00:51 -06:00
|
|
|
* Add CLI man page
|
|
|
|
* Add Availability Zone list command
|
2013-07-13 14:46:57 -06:00
|
|
|
* Add support for scheduler-hints
|
|
|
|
* Add support to extend volumes
|
|
|
|
* Add support to reset state on volumes and snapshots
|
|
|
|
* Add snapshot support for quota class
|
|
|
|
|
|
|
|
.. _1190853: http://bugs.launchpad.net/python-cinderclient/+bug/1190853
|
|
|
|
.. _1190731: http://bugs.launchpad.net/python-cinderclient/+bug/1190731
|
|
|
|
.. _1169455: http://bugs.launchpad.net/python-cinderclient/+bug/1169455
|
|
|
|
.. _1188452: http://bugs.launchpad.net/python-cinderclient/+bug/1188452
|
|
|
|
.. _1180393: http://bugs.launchpad.net/python-cinderclient/+bug/1180393
|
|
|
|
.. _1182678: http://bugs.launchpad.net/python-cinderclient/+bug/1182678
|
|
|
|
.. _1179008: http://bugs.launchpad.net/python-cinderclient/+bug/1179008
|
|
|
|
.. _1180059: http://bugs.launchpad.net/python-cinderclient/+bug/1180059
|
|
|
|
.. _1170565: http://bugs.launchpad.net/python-cinderclient/+bug/1170565
|
|
|
|
|
2013-05-01 17:25:58 -06:00
|
|
|
1.0.4
|
|
|
|
-----
|
2017-08-22 11:41:50 +01:00
|
|
|
|
2014-05-02 18:32:06 +02:00
|
|
|
* Added support for backup-service commands
|
2017-08-22 11:41:50 +01:00
|
|
|
|
2013-05-01 17:25:58 -06:00
|
|
|
.. _1163546: http://bugs.launchpad.net/python-cinderclient/+bug/1163546
|
|
|
|
.. _1161857: http://bugs.launchpad.net/python-cinderclient/+bug/1161857
|
|
|
|
.. _1160898: http://bugs.launchpad.net/python-cinderclient/+bug/1160898
|
|
|
|
.. _1161857: http://bugs.launchpad.net/python-cinderclient/+bug/1161857
|
|
|
|
.. _1156994: http://bugs.launchpad.net/python-cinderclient/+bug/1156994
|
|
|
|
|
|
|
|
1.0.3
|
2013-03-19 00:24:32 -06:00
|
|
|
-----
|
|
|
|
|
|
|
|
* Added support for V2 Cinder API
|
2014-05-02 18:32:06 +02:00
|
|
|
* Corrected upload-volume-to-image help messaging
|
2013-03-19 00:24:32 -06:00
|
|
|
* Align handling of metadata args for all methods
|
|
|
|
* Update OSLO version
|
|
|
|
* Correct parsing of volume metadata
|
|
|
|
* Enable force delete of volumes and snapshots in error state
|
|
|
|
* Implement clone volume API call
|
|
|
|
* Add list-extensions call to cinderclient
|
|
|
|
* Add bootable column to list output
|
|
|
|
* Add retries to cinderclient operations
|
|
|
|
* Add Type/Extra-Specs support
|
|
|
|
* Add volume and snapshot rename commands
|
2017-08-22 11:41:50 +01:00
|
|
|
|
2013-03-19 00:24:32 -06:00
|
|
|
.. _1155655: http://bugs.launchpad.net/python-cinderclient/+bug/1155655
|
|
|
|
.. _1130730: http://bugs.launchpad.net/python-cinderclient/+bug/1130730
|
|
|
|
.. _1068521: http://bugs.launchpad.net/python-cinderclient/+bug/1068521
|
|
|
|
.. _1052161: http://bugs.launchpad.net/python-cinderclient/+bug/1052161
|
|
|
|
.. _1071003: http://bugs.launchpad.net/python-cinderclient/+bug/1071003
|
|
|
|
.. _1065275: http://bugs.launchpad.net/python-cinderclient/+bug/1065275
|
|
|
|
.. _1053432: http://bugs.launchpad.net/python-cinderclient/+bug/1053432
|