Latest commits for file setup.cfg https://opendev.org/openstack/python-openstackclient/branch/master/setup.cfg Client for OpenStack services Thu, 18 Jun 2026 11:05:57 +0000 Migrate setup configuration to pyproject.toml https://opendev.org/openstack/python-openstackclient/commit/1b4fe6fac10cabfc54c990e19530f7fc10b93377 Migrate setup configuration to pyproject.toml Change-Id: If7a6252ce751e875881654965762f6f514a15342 Signed-off-by: Stephen Finucane <[email protected]> <![CDATA[Migrate setup configuration to pyproject.toml Change-Id: If7a6252ce751e875881654965762f6f514a15342 Signed-off-by: Stephen Finucane ]]> Stephen Finucane 1b4fe6fac10cabfc54c990e19530f7fc10b93377 Fri, 27 Jun 2025 09:22:45 +0100 volume: Add v3-specific volume snapshot module https://opendev.org/openstack/python-openstackclient/commit/e1ff450e342e031d469028c828a2da4f6681914c volume: Add v3-specific volume snapshot module Change-Id: I23026abbb909c082fbc0fe0c9b2efcc89f4d464a Signed-off-by: Stephen Finucane <[email protected]> <![CDATA[volume: Add v3-specific volume snapshot module Change-Id: I23026abbb909c082fbc0fe0c9b2efcc89f4d464a Signed-off-by: Stephen Finucane ]]> Stephen Finucane e1ff450e342e031d469028c828a2da4f6681914c Mon, 19 May 2025 13:20:15 +0100 volume: Add v3-specific volume service module https://opendev.org/openstack/python-openstackclient/commit/1ee3ef33d7a805bde562c782c08574dddaa979be volume: Add v3-specific volume service module Ease migration. Change-Id: Ibcdb157ba1bf370c63320d3a1afcf3c400370624 Signed-off-by: Stephen Finucane <[email protected]> <![CDATA[volume: Add v3-specific volume service module Ease migration. Change-Id: Ibcdb157ba1bf370c63320d3a1afcf3c400370624 Signed-off-by: Stephen Finucane ]]> Stephen Finucane 1ee3ef33d7a805bde562c782c08574dddaa979be Mon, 19 May 2025 13:20:09 +0100 Merge "Drop support for Python 3.9" https://opendev.org/openstack/python-openstackclient/commit/05accdde9a468dc24686bf424550f2edcd804aea Merge "Drop support for Python 3.9" <![CDATA[Merge "Drop support for Python 3.9"]]> Zuul 05accdde9a468dc24686bf424550f2edcd804aea Fri, 09 May 2025 16:13:08 +0000 Drop support for Python 3.9 https://opendev.org/openstack/python-openstackclient/commit/ce2a253d5ac8603c61f4e868e2126354e1cfe4db Drop support for Python 3.9 Change-Id: If7d8ce2be7081fdcd609c54a211c91439cddce6b Signed-off-by: Stephen Finucane <[email protected]> <![CDATA[Drop support for Python 3.9 Change-Id: If7d8ce2be7081fdcd609c54a211c91439cddce6b Signed-off-by: Stephen Finucane ]]> Stephen Finucane ce2a253d5ac8603c61f4e868e2126354e1cfe4db Wed, 07 May 2025 17:55:31 +0100 Add support for spice-direct console types. https://opendev.org/openstack/python-openstackclient/commit/5d730f374b63bbc2121a025638b7abe79f156f53 Add support for spice-direct console types. This patch adds support for Nova microversion 2.99 which exposes the new spice-direct console type and the pre-existing /os-console-auth-token/ API. +----------+----------------------------------------------------------+ | Field | Value | +----------+----------------------------------------------------------+ | protocol | spice | | type | spice-direct | | url | http://127.0.0.1:13002/nova?token=f78009fb-41ad-... | +----------+----------------------------------------------------------+ +----------------------+--------------------------------------+ | Field | Value | +----------------------+--------------------------------------+ | host | 127.0.0.1 | | instance_uuid | f2477018-aa93-... | | internal_access_path | None | | port | 5900 | | tls_port | 5901 | +----------------------+--------------------------------------+ Change-Id: I2d33646d6ac9b25076d69be76dcef8f5c465cd1b Depends-On: https://review.opendev.org/c/openstack/openstacksdk/+/940479 <![CDATA[Add support for spice-direct console types. This patch adds support for Nova microversion 2.99 which exposes the new spice-direct console type and the pre-existing /os-console-auth-token/ API. +----------+----------------------------------------------------------+ | Field | Value | +----------+----------------------------------------------------------+ | protocol | spice | | type | spice-direct | | url | http://127.0.0.1:13002/nova?token=f78009fb-41ad-... | +----------+----------------------------------------------------------+ +----------------------+--------------------------------------+ | Field | Value | +----------------------+--------------------------------------+ | host | 127.0.0.1 | | instance_uuid | f2477018-aa93-... | | internal_access_path | None | | port | 5900 | | tls_port | 5901 | +----------------------+--------------------------------------+ Change-Id: I2d33646d6ac9b25076d69be76dcef8f5c465cd1b Depends-On: https://review.opendev.org/c/openstack/openstacksdk/+/940479 ]]> Michael Still 5d730f374b63bbc2121a025638b7abe79f156f53 Wed, 07 May 2025 19:34:17 +1000 volume: Remove Cinder v1 support https://opendev.org/openstack/python-openstackclient/commit/e6be9a3edf0904762cb6816a04b8d3d146a1f639 volume: Remove Cinder v1 support The Cinder v1 API was removed in Queens [1]. Its replacement, the v2 API, has existed since Grizzly [2]. More importantly, the v1 commands are implemented using python-cinderclient but support for the v1 API was removed from python-cinderclient in Train [3], meaning none of these have worked since then. Clearly if no one has noticed or cared in the 6 years or so since that happened, it's safe to say we can delete these commands. [1] https://opendev.org/openstack/cinder/commit/3e91de956e1947a7014709010b99df380242ac74 [2] https://opendev.org/openstack/cinder/commit/75ca60f619c953df1d95ff2eab7de78f7d5aebe8 [3] https://opendev.org/openstack/python-cinderclient/commit/2189e5702b7ba91a87e1db21024799e1520d8ad0 Change-Id: Ibe1cd6461d2cb78826467078aa17272f171746aa Signed-off-by: Stephen Finucane <[email protected]> <![CDATA[volume: Remove Cinder v1 support The Cinder v1 API was removed in Queens [1]. Its replacement, the v2 API, has existed since Grizzly [2]. More importantly, the v1 commands are implemented using python-cinderclient but support for the v1 API was removed from python-cinderclient in Train [3], meaning none of these have worked since then. Clearly if no one has noticed or cared in the 6 years or so since that happened, it's safe to say we can delete these commands. [1] https://opendev.org/openstack/cinder/commit/3e91de956e1947a7014709010b99df380242ac74 [2] https://opendev.org/openstack/cinder/commit/75ca60f619c953df1d95ff2eab7de78f7d5aebe8 [3] https://opendev.org/openstack/python-cinderclient/commit/2189e5702b7ba91a87e1db21024799e1520d8ad0 Change-Id: Ibe1cd6461d2cb78826467078aa17272f171746aa Signed-off-by: Stephen Finucane ]]> Stephen Finucane e6be9a3edf0904762cb6816a04b8d3d146a1f639 Tue, 01 Apr 2025 10:46:03 +0100 Replace description-content-type by its underscore name https://opendev.org/openstack/python-openstackclient/commit/2e5a830276902ff4d17baa2f4b53d33b61998401 Replace description-content-type by its underscore name Since v78.0.0, setuptools no longer accepts options containing uppercase or dash characters in setup.cfg [1]. [1] https://github.com/pypa/setuptools/blob/main/NEWS.rst#v7800 Closes-Bug: #2104030 Change-Id: Id88b9c73a4cd9511750f38da9393dae3adbc5c1e <![CDATA[Replace description-content-type by its underscore name Since v78.0.0, setuptools no longer accepts options containing uppercase or dash characters in setup.cfg [1]. [1] https://github.com/pypa/setuptools/blob/main/NEWS.rst#v7800 Closes-Bug: #2104030 Change-Id: Id88b9c73a4cd9511750f38da9393dae3adbc5c1e ]]> Alfredo Moralejo 2e5a830276902ff4d17baa2f4b53d33b61998401 Mon, 24 Mar 2025 17:03:44 +0100 Update README for use python3 https://opendev.org/openstack/python-openstackclient/commit/3de1ac66e02e62a964104a0b9085ae75475cb2dc Update README for use python3 And small change for `long_description_content_type` missing. Change-Id: I042a319bfc5009ce625565effa7ccf634222be28 <![CDATA[Update README for use python3 And small change for `long_description_content_type` missing. Change-Id: I042a319bfc5009ce625565effa7ccf634222be28 ]]> Ivan Anfimov 3de1ac66e02e62a964104a0b9085ae75475cb2dc Sun, 26 Jan 2025 11:27:13 +0000 Merge "Drop support for Python 3.8" https://opendev.org/openstack/python-openstackclient/commit/e60ca0f898af803346a98080e599089604c9c873 Merge "Drop support for Python 3.8" <![CDATA[Merge "Drop support for Python 3.8"]]> Zuul e60ca0f898af803346a98080e599089604c9c873 Thu, 12 Sep 2024 16:28:24 +0000 Merge "Add Python 3.12 classifier" https://opendev.org/openstack/python-openstackclient/commit/1aa077efeea269210656b4b6e602693afc646366 Merge "Add Python 3.12 classifier" <![CDATA[Merge "Add Python 3.12 classifier"]]> Zuul 1aa077efeea269210656b4b6e602693afc646366 Fri, 09 Aug 2024 13:10:32 +0000 Merge "Add DeleteVolumeSnapshot class to v3" https://opendev.org/openstack/python-openstackclient/commit/e650c3eeaa4695a71d4676ae584b89fca88e1dd5 Merge "Add DeleteVolumeSnapshot class to v3" <![CDATA[Merge "Add DeleteVolumeSnapshot class to v3"]]> Zuul e650c3eeaa4695a71d4676ae584b89fca88e1dd5 Tue, 23 Jul 2024 12:58:02 +0000 Drop support for Python 3.8 https://opendev.org/openstack/python-openstackclient/commit/7a92bc4abc4587c270fd86fdc44f231fdab7ab96 Drop support for Python 3.8 This goes EOL in October. We don't want to be supporting it past then. Drop it now. Change-Id: I6166678a35092760718d4fcd0357e7195bbe8be0 Signed-off-by: Stephen Finucane <[email protected]> <![CDATA[Drop support for Python 3.8 This goes EOL in October. We don't want to be supporting it past then. Drop it now. Change-Id: I6166678a35092760718d4fcd0357e7195bbe8be0 Signed-off-by: Stephen Finucane ]]> Stephen Finucane 7a92bc4abc4587c270fd86fdc44f231fdab7ab96 Fri, 19 Jul 2024 12:27:07 +0100 Add Python 3.12 classifier https://opendev.org/openstack/python-openstackclient/commit/f885a474507a97a3075fe0ebd50ebe3a78cf5497 Add Python 3.12 classifier We are testing this in CI and can support it going forward now. The osc-tox-py310-tips job is removed in a favour of a new osc-tox-py312-tips job. Change-Id: I87a726cb65223cba9975d0505c13fe42dcd7fa14 Signed-off-by: Stephen Finucane <[email protected]> <![CDATA[Add Python 3.12 classifier We are testing this in CI and can support it going forward now. The osc-tox-py310-tips job is removed in a favour of a new osc-tox-py312-tips job. Change-Id: I87a726cb65223cba9975d0505c13fe42dcd7fa14 Signed-off-by: Stephen Finucane ]]> Stephen Finucane f885a474507a97a3075fe0ebd50ebe3a78cf5497 Fri, 19 Jul 2024 12:24:47 +0100 volume: Add v3-specific volume transfer module https://opendev.org/openstack/python-openstackclient/commit/3f624295ecbb62a1d3deaa3e54a03258f9cb3e9a volume: Add v3-specific volume transfer module This makes testing easier. Change-Id: I515aa54750439a6c4ad5b16cffe004ba1c7cf5b2 Signed-off-by: Stephen Finucane <[email protected]> <![CDATA[volume: Add v3-specific volume transfer module This makes testing easier. Change-Id: I515aa54750439a6c4ad5b16cffe004ba1c7cf5b2 Signed-off-by: Stephen Finucane ]]> Stephen Finucane 3f624295ecbb62a1d3deaa3e54a03258f9cb3e9a Mon, 08 Jul 2024 09:59:21 +0100 volume: add v3-specific volume type module https://opendev.org/openstack/python-openstackclient/commit/f1f390f2aea4a582b30b8cf45646ebb9afce599b volume: add v3-specific volume type module This makes testing easier. Change-Id: If1ed8d5003160e45d503971ae722fd9983d3dd6d Signed-off-by: Stephen Finucane <[email protected]> <![CDATA[volume: add v3-specific volume type module This makes testing easier. Change-Id: If1ed8d5003160e45d503971ae722fd9983d3dd6d Signed-off-by: Stephen Finucane ]]> Stephen Finucane f1f390f2aea4a582b30b8cf45646ebb9afce599b Mon, 08 Jul 2024 09:59:21 +0100 volume: Add v3-specific volume module https://opendev.org/openstack/python-openstackclient/commit/65cce3943a26b0275266a1d619cd69a349f3d8e4 volume: Add v3-specific volume module This makes testing easier. Change-Id: I6b31026ae3c9dc66d828744534b35bb0a0d2ffbe Signed-off-by: Stephen Finucane <[email protected]> <![CDATA[volume: Add v3-specific volume module This makes testing easier. Change-Id: I6b31026ae3c9dc66d828744534b35bb0a0d2ffbe Signed-off-by: Stephen Finucane ]]> Stephen Finucane 65cce3943a26b0275266a1d619cd69a349f3d8e4 Mon, 08 Jul 2024 09:59:21 +0100 volume: Add v3-specific volume backup module https://opendev.org/openstack/python-openstackclient/commit/ca91c826e34afc1cf832ccc7d83d3faadd9dc3f4 volume: Add v3-specific volume backup module This makes testing easier. Change-Id: I71a13b34a85350af17612e12c03e6df8cb041f86 Signed-off-by: Stephen Finucane <[email protected]> <![CDATA[volume: Add v3-specific volume backup module This makes testing easier. Change-Id: I71a13b34a85350af17612e12c03e6df8cb041f86 Signed-off-by: Stephen Finucane ]]> Stephen Finucane ca91c826e34afc1cf832ccc7d83d3faadd9dc3f4 Mon, 08 Jul 2024 09:59:20 +0100 Add cluster to volume service list https://opendev.org/openstack/python-openstackclient/commit/ca81b1acf05d87871ae2c672d7900dfb67d52ec0 Add cluster to volume service list This patch adds the ``Cluster`` and ``Backend State`` columns to the ``openstack volume service list`` command. Note that you need to provide the appropriate microversion to show these columns. Cluster: openstack --os-volume-api-version 3.7 volume service list Backend State: openstack --os-volume-api-version 3.49 volume service list Change-Id: Ie7727d0001307b5d5a40d7ea0348bdb9626f9e03 <![CDATA[Add cluster to volume service list This patch adds the ``Cluster`` and ``Backend State`` columns to the ``openstack volume service list`` command. Note that you need to provide the appropriate microversion to show these columns. Cluster: openstack --os-volume-api-version 3.7 volume service list Backend State: openstack --os-volume-api-version 3.49 volume service list Change-Id: Ie7727d0001307b5d5a40d7ea0348bdb9626f9e03 ]]> Rajat Dhasmana ca81b1acf05d87871ae2c672d7900dfb67d52ec0 Thu, 27 Jun 2024 19:37:15 +0530 Add DeleteVolumeSnapshot class to v3 https://opendev.org/openstack/python-openstackclient/commit/49c42c73a29f6381e6dbf94fb1a0f96329c6a1f4 Add DeleteVolumeSnapshot class to v3 This is done to support the snapshot unmanage command. Change-Id: I174ad08c7c03fe7a9206d40645a6916f104212c6 <![CDATA[Add DeleteVolumeSnapshot class to v3 This is done to support the snapshot unmanage command. Change-Id: I174ad08c7c03fe7a9206d40645a6916f104212c6 ]]> Rajat Dhasmana 49c42c73a29f6381e6dbf94fb1a0f96329c6a1f4 Tue, 25 Jun 2024 01:40:55 +0530 Add DeleteVolume class to v3 https://opendev.org/openstack/python-openstackclient/commit/00af14b3f207db101b08ff9add5bab03a70da8b8 Add DeleteVolume class to v3 This is done to support the volume unmanage command. Change-Id: Ib59b1f599be152a25c4b6a31988c28079f552ba9 <![CDATA[Add DeleteVolume class to v3 This is done to support the volume unmanage command. Change-Id: Ib59b1f599be152a25c4b6a31988c28079f552ba9 ]]> Rajat Dhasmana 00af14b3f207db101b08ff9add5bab03a70da8b8 Wed, 15 May 2024 11:55:50 +0530 Add CreateVolume class to v3 https://opendev.org/openstack/python-openstackclient/commit/0d9ace64250f8ba9d07102f602c47f118d38ef51 Add CreateVolume class to v3 This patch acts as a base framework to add the parameters needed for manage volume support. This includes 2 changes: 1. Move get_parser and take_action code to common methods which can be utilized by both v2 and v3 2. Make _check_size_arg as a static method and move it inside CreateVolume class since it's not used by other classes. [2] was initially thought to be a follow up change but since we are implementing changes into the _check_size_arg method for v3, it makes sense to just include it in CreateVolume class to avoid adding a new additional method. Similar changes are done for v2 as well. Change-Id: I9315e457ebd6c5ba4cc67452f92c9dc8c139ee3c <![CDATA[Add CreateVolume class to v3 This patch acts as a base framework to add the parameters needed for manage volume support. This includes 2 changes: 1. Move get_parser and take_action code to common methods which can be utilized by both v2 and v3 2. Make _check_size_arg as a static method and move it inside CreateVolume class since it's not used by other classes. [2] was initially thought to be a follow up change but since we are implementing changes into the _check_size_arg method for v3, it makes sense to just include it in CreateVolume class to avoid adding a new additional method. Similar changes are done for v2 as well. Change-Id: I9315e457ebd6c5ba4cc67452f92c9dc8c139ee3c ]]> Rajat Dhasmana 0d9ace64250f8ba9d07102f602c47f118d38ef51 Wed, 15 May 2024 11:46:12 +0530 Merge "Add image metadef resource type association commands 'create', 'list', 'delete'" https://opendev.org/openstack/python-openstackclient/commit/a79cb608b0b75f1400a21ecc074de1056c50b29a Merge "Add image metadef resource type association commands 'create', 'list', 'delete'" <![CDATA[Merge "Add image metadef resource type association commands 'create', 'list', 'delete'"]]> Zuul a79cb608b0b75f1400a21ecc074de1056c50b29a Mon, 15 Apr 2024 14:01:02 +0000 Merge "Adds CLI support for ``glance md-object-property-show``" https://opendev.org/openstack/python-openstackclient/commit/7e3664ff0779514f5474d12a387aa794ea7d2842 Merge "Adds CLI support for ``glance md-object-property-show``" <![CDATA[Merge "Adds CLI support for ``glance md-object-property-show``"]]> Zuul 7e3664ff0779514f5474d12a387aa794ea7d2842 Mon, 15 Apr 2024 13:00:41 +0000 Add image metadef resource type association commands https://opendev.org/openstack/python-openstackclient/commit/276dbb6f5630cf96f260c8e347e85293b86a876f Add image metadef resource type association commands 'create', 'list', 'delete' Change-Id: I2c860427b0b2693076cfe57841f0e512ad1f6388 <![CDATA[Add image metadef resource type association commands 'create', 'list', 'delete' Change-Id: I2c860427b0b2693076cfe57841f0e512ad1f6388 ]]> Antonia Gaete 276dbb6f5630cf96f260c8e347e85293b86a876f Mon, 15 Apr 2024 11:42:45 +0000 Add support for managing external gateways https://opendev.org/openstack/python-openstackclient/commit/16c695045c5618a733574fd2a5558d672a2df553 Add support for managing external gateways This change implements the logic to call the new API for managing external gateways. Relevant Neutron core change: https://review.opendev.org/c/openstack/neutron/+/873593 Co-Authored-by: Frode Nordahl <[email protected]> Related-Bug: #2002687 Change-Id: Ib45f30f552934a0a5c035c3b7fadfc0d522219ba <![CDATA[Add support for managing external gateways This change implements the logic to call the new API for managing external gateways. Relevant Neutron core change: https://review.opendev.org/c/openstack/neutron/+/873593 Co-Authored-by: Frode Nordahl Related-Bug: #2002687 Change-Id: Ib45f30f552934a0a5c035c3b7fadfc0d522219ba ]]> Dmitrii Shcherbakov 16c695045c5618a733574fd2a5558d672a2df553 Tue, 05 Mar 2024 16:14:56 +0100 Adds CLI support for ``glance md-object-property-show`` https://opendev.org/openstack/python-openstackclient/commit/2a90a6f07b52760b9442493d4c382d7e6ee1ced2 Adds CLI support for ``glance md-object-property-show`` This patch adds a command "image metadef object property show" which describe a specific metadata definitions property inside an object. Change-Id: I738e2e3c27c9819290d5a2a8781878b81f03b5f9 <![CDATA[Adds CLI support for ``glance md-object-property-show`` This patch adds a command "image metadef object property show" which describe a specific metadata definitions property inside an object. Change-Id: I738e2e3c27c9819290d5a2a8781878b81f03b5f9 ]]> Mridula Joshi 2a90a6f07b52760b9442493d4c382d7e6ee1ced2 Thu, 15 Feb 2024 14:16:34 +0000 Adds CLI support for ``glance md-object-update`` https://opendev.org/openstack/python-openstackclient/commit/3cd5ad2c1babc9bddc85c1faf5005728a909725c Adds CLI support for ``glance md-object-update`` This patch adds a command "image metadef object update" which update metadata definitions object inside a namespace. Change-Id: I2dd8f54f9224abda5adc7a1b6a1c270c49d473a7 <![CDATA[Adds CLI support for ``glance md-object-update`` This patch adds a command "image metadef object update" which update metadata definitions object inside a namespace. Change-Id: I2dd8f54f9224abda5adc7a1b6a1c270c49d473a7 ]]> Mridula Joshi 3cd5ad2c1babc9bddc85c1faf5005728a909725c Tue, 13 Feb 2024 18:28:00 +0000 image: Trivial fixes https://opendev.org/openstack/python-openstackclient/commit/8a63b51039ababa3327900a3b46f2392351e14a6 image: Trivial fixes Mostly stylistic, with the exception that we now allow deleting multiple metadef properties in a given namespace. Change-Id: Ib0c243f0d647ce74c0165ee666beed6eb5d5c5a7 Signed-off-by: Stephen Finucane <[email protected]> <![CDATA[image: Trivial fixes Mostly stylistic, with the exception that we now allow deleting multiple metadef properties in a given namespace. Change-Id: Ib0c243f0d647ce74c0165ee666beed6eb5d5c5a7 Signed-off-by: Stephen Finucane ]]> Stephen Finucane 8a63b51039ababa3327900a3b46f2392351e14a6 Mon, 29 Jan 2024 13:53:34 +0000 Merge "Adding CLI command for ``glance member-get``" https://opendev.org/openstack/python-openstackclient/commit/dc8d9d3541d785684a4629763b401b8286d1ce55 Merge "Adding CLI command for ``glance member-get``" <![CDATA[Merge "Adding CLI command for ``glance member-get``"]]> Zuul dc8d9d3541d785684a4629763b401b8286d1ce55 Fri, 26 Jan 2024 17:37:15 +0000 Update python classifier in setup.cfg https://opendev.org/openstack/python-openstackclient/commit/37b420142852c3875097859c47ceba7c5e4cc0b6 Update python classifier in setup.cfg As per the current release tested runtime, we test python version from 3.8 to 3.11 so updating the same in python classifier in setup.cfg Change-Id: Ic137b2eecee65d43afeca2c936e195a8652237af <![CDATA[Update python classifier in setup.cfg As per the current release tested runtime, we test python version from 3.8 to 3.11 so updating the same in python classifier in setup.cfg Change-Id: Ic137b2eecee65d43afeca2c936e195a8652237af ]]> Ghanshyam Mann 37b420142852c3875097859c47ceba7c5e4cc0b6 Thu, 11 Jan 2024 15:37:00 -0800 Adding CLI command for ``glance member-get`` https://opendev.org/openstack/python-openstackclient/commit/93b2e66d2dd245d36774a2725d6786ef325ae35b Adding CLI command for ``glance member-get`` This patch adds a command ``image member get`` which displays a particular member associated to the image. Change-Id: I48d3151f8e204e1eb5cfff67ce1e333d1cfb9322 <![CDATA[Adding CLI command for ``glance member-get`` This patch adds a command ``image member get`` which displays a particular member associated to the image. Change-Id: I48d3151f8e204e1eb5cfff67ce1e333d1cfb9322 ]]> Mridula Joshi 93b2e66d2dd245d36774a2725d6786ef325ae35b Wed, 20 Dec 2023 05:03:40 +0000 Merge "Adds command ``image metadef object delete``" https://opendev.org/openstack/python-openstackclient/commit/19896ec7203d02d4545fe7a71ef3e8562693aeea Merge "Adds command ``image metadef object delete``" <![CDATA[Merge "Adds command ``image metadef object delete``"]]> Zuul 19896ec7203d02d4545fe7a71ef3e8562693aeea Wed, 22 Nov 2023 11:05:26 +0000 Adds command ``image metadef object delete`` https://opendev.org/openstack/python-openstackclient/commit/5d1afcee68e01d81019a9195f683507371aebfaf Adds command ``image metadef object delete`` Change-Id: Ib94b7ba625ca0679ae4ae841e217ea251baff371 <![CDATA[Adds command ``image metadef object delete`` Change-Id: Ib94b7ba625ca0679ae4ae841e217ea251baff371 ]]> Mridula Joshi 5d1afcee68e01d81019a9195f683507371aebfaf Fri, 17 Nov 2023 10:46:35 +0000 Merge "Adds command ``image metadef object list``" https://opendev.org/openstack/python-openstackclient/commit/1ac5d63c53e1fc31aa4479b809df52bfafcf37c2 Merge "Adds command ``image metadef object list``" <![CDATA[Merge "Adds command ``image metadef object list``"]]> Zuul 1ac5d63c53e1fc31aa4479b809df52bfafcf37c2 Wed, 08 Nov 2023 18:01:44 +0000 Merge "Adds command ``image metadef object show``" https://opendev.org/openstack/python-openstackclient/commit/8aee1a2889f4d926226cb0534a5606831e79dd99 Merge "Adds command ``image metadef object show``" <![CDATA[Merge "Adds command ``image metadef object show``"]]> Zuul 8aee1a2889f4d926226cb0534a5606831e79dd99 Wed, 08 Nov 2023 18:01:42 +0000 Merge "Add "image metadef property set" command" https://opendev.org/openstack/python-openstackclient/commit/71f232aafa77b0c4d16ef4977633788e078f1156 Merge "Add "image metadef property set" command" <![CDATA[Merge "Add "image metadef property set" command"]]> Zuul 71f232aafa77b0c4d16ef4977633788e078f1156 Wed, 08 Nov 2023 10:46:35 +0000 Adds command ``image metadef object list`` https://opendev.org/openstack/python-openstackclient/commit/4bb6efa8f8ec60f288b1e7a246e97dacb0f6ad33 Adds command ``image metadef object list`` Depends-on: https://review.opendev.org/c/openstack/openstacksdk/+/858350 Change-Id: I0691f7519e8fb9f01836e6232e0bcebd2c428ac3 <![CDATA[Adds command ``image metadef object list`` Depends-on: https://review.opendev.org/c/openstack/openstacksdk/+/858350 Change-Id: I0691f7519e8fb9f01836e6232e0bcebd2c428ac3 ]]> Mridula Joshi 4bb6efa8f8ec60f288b1e7a246e97dacb0f6ad33 Wed, 08 Nov 2023 10:44:31 +0000 Merge "Add "image metadef property delete" command" https://opendev.org/openstack/python-openstackclient/commit/c09c1fbf51a42732caf32b3f3c32bbf33de0ed6b Merge "Add "image metadef property delete" command" <![CDATA[Merge "Add "image metadef property delete" command"]]> Zuul c09c1fbf51a42732caf32b3f3c32bbf33de0ed6b Wed, 08 Nov 2023 10:35:38 +0000 Adds command ``image metadef object show`` https://opendev.org/openstack/python-openstackclient/commit/78ef009a3aebe43583d6b93e65f53c49a1d818a6 Adds command ``image metadef object show`` Depends-on: https://review.opendev.org/c/openstack/openstacksdk/+/858350 Change-Id: I97bcb0ccee9d25fb26475ec9e10660556e6072a6 <![CDATA[Adds command ``image metadef object show`` Depends-on: https://review.opendev.org/c/openstack/openstacksdk/+/858350 Change-Id: I97bcb0ccee9d25fb26475ec9e10660556e6072a6 ]]> Mridula Joshi 78ef009a3aebe43583d6b93e65f53c49a1d818a6 Wed, 08 Nov 2023 09:57:02 +0000 Merge "image: Add support for cache commands" https://opendev.org/openstack/python-openstackclient/commit/0439f17ed38fc177039f2a90aa3b6d6f724f0ac4 Merge "image: Add support for cache commands" <![CDATA[Merge "image: Add support for cache commands"]]> Zuul 0439f17ed38fc177039f2a90aa3b6d6f724f0ac4 Tue, 07 Nov 2023 09:31:24 +0000 Adds command ``image metadef object create`` https://opendev.org/openstack/python-openstackclient/commit/f8c708900c7c522d12b2ca95e0c335219db75bf8 Adds command ``image metadef object create`` Depends-on: https://review.opendev.org/c/openstack/openstacksdk/+/858350 Change-Id: Ie74231c823d6128d149d5f01c90a66ed3afa3d1a <![CDATA[Adds command ``image metadef object create`` Depends-on: https://review.opendev.org/c/openstack/openstacksdk/+/858350 Change-Id: Ie74231c823d6128d149d5f01c90a66ed3afa3d1a ]]> Mridula Joshi f8c708900c7c522d12b2ca95e0c335219db75bf8 Wed, 01 Nov 2023 07:15:59 +0000 Add "image metadef property set" command https://opendev.org/openstack/python-openstackclient/commit/705ecef7a949ef6df0401fe98b66d1c8d96de1d6 Add "image metadef property set" command Change-Id: I8fbe8ef5b5119fb500df0ed1b6e645ea00eadf01 <![CDATA[Add "image metadef property set" command Change-Id: I8fbe8ef5b5119fb500df0ed1b6e645ea00eadf01 ]]> Cyril Roelandt 705ecef7a949ef6df0401fe98b66d1c8d96de1d6 Wed, 18 Oct 2023 14:02:34 +0000 Add "image metadef property delete" command https://opendev.org/openstack/python-openstackclient/commit/9094e540b582073f62635c64d762b3a19db7a8e5 Add "image metadef property delete" command Change-Id: I2e13b26139424c421ae609804c546a6b42add5a4 <![CDATA[Add "image metadef property delete" command Change-Id: I2e13b26139424c421ae609804c546a6b42add5a4 ]]> Cyril Roelandt 9094e540b582073f62635c64d762b3a19db7a8e5 Wed, 18 Oct 2023 13:27:02 +0000 Add "image metadef property create" command https://opendev.org/openstack/python-openstackclient/commit/d9c4c43a409977ed593169011b103b618302cc08 Add "image metadef property create" command Change-Id: Icb4fab0aef13b28212771da3a3b7c4a0775bb38e <![CDATA[Add "image metadef property create" command Change-Id: Icb4fab0aef13b28212771da3a3b7c4a0775bb38e ]]> Cyril Roelandt d9c4c43a409977ed593169011b103b618302cc08 Wed, 18 Oct 2023 13:26:15 +0000 Add "image metadef property show" command https://opendev.org/openstack/python-openstackclient/commit/190f06a9633f2804a0aeff5d3effac8b7255d26c Add "image metadef property show" command Change-Id: I326735014dfcb4477b109a99aa31f71b07b91c7b <![CDATA[Add "image metadef property show" command Change-Id: I326735014dfcb4477b109a99aa31f71b07b91c7b ]]> Cyril Roelandt 190f06a9633f2804a0aeff5d3effac8b7255d26c Wed, 18 Oct 2023 12:39:39 +0000 Add "image metadef property list" command. https://opendev.org/openstack/python-openstackclient/commit/5fb922e46953963ffbdadeef3e4854e7ae3c37b5 Add "image metadef property list" command. Depends-On: https://review.opendev.org/c/openstack/openstacksdk/+/857727 Change-Id: I8f6692e779c4721225052d348b4b947a545bd6c0 <![CDATA[Add "image metadef property list" command. Depends-On: https://review.opendev.org/c/openstack/openstacksdk/+/857727 Change-Id: I8f6692e779c4721225052d348b4b947a545bd6c0 ]]> Cyril Roelandt 5fb922e46953963ffbdadeef3e4854e7ae3c37b5 Wed, 18 Oct 2023 12:39:35 +0000 Add support for default security group rule CRUDs https://opendev.org/openstack/python-openstackclient/commit/7b99b5716544bccf455ad0bf6d8a0ccfe2788331 Add support for default security group rule CRUDs Change-Id: I1c18c2ec5eb4923e1ab8b3fc6199ef6f329b4a4d <![CDATA[Add support for default security group rule CRUDs Change-Id: I1c18c2ec5eb4923e1ab8b3fc6199ef6f329b4a4d ]]> Slawek Kaplonski 7b99b5716544bccf455ad0bf6d8a0ccfe2788331 Thu, 19 Oct 2023 16:04:22 +0200 image: Add support for cache commands https://opendev.org/openstack/python-openstackclient/commit/c628c2dcd3efb6cde7d6322ce7fa405508e2e487 image: Add support for cache commands Depends-on: https://review.opendev.org/c/openstack/openstacksdk/+/874372 Depends-on: https://review.opendev.org/c/openstack/openstacksdk/+/874940 Change-Id: I96b95cb93d298602b6d4b0cd35a213478babff5f <![CDATA[image: Add support for cache commands Depends-on: https://review.opendev.org/c/openstack/openstacksdk/+/874372 Depends-on: https://review.opendev.org/c/openstack/openstacksdk/+/874940 Change-Id: I96b95cb93d298602b6d4b0cd35a213478babff5f ]]> Mridula Joshi c628c2dcd3efb6cde7d6322ce7fa405508e2e487 Tue, 10 Oct 2023 09:28:12 +0000 Remove project purge image commands https://opendev.org/openstack/python-openstackclient/commit/601d9717c2a5c125912ca27e43259c48e548939b Remove project purge image commands This was still using glanceclient-style calls despite us having switched all image command to SDK way back in 5.2.0 (Ussuri). It therefore hasn't worked since then, so we remove without deprecation. Change-Id: Ibea79ea10bb272cba194debfe4bcbaeebf3875b7 Signed-off-by: Stephen Finucane <[email protected]> <![CDATA[Remove project purge image commands This was still using glanceclient-style calls despite us having switched all image command to SDK way back in 5.2.0 (Ussuri). It therefore hasn't worked since then, so we remove without deprecation. Change-Id: Ibea79ea10bb272cba194debfe4bcbaeebf3875b7 Signed-off-by: Stephen Finucane ]]> Stephen Finucane 601d9717c2a5c125912ca27e43259c48e548939b Mon, 28 Aug 2023 13:52:23 +0100