From ecb69a47711a0023edaa608cda41b8e908f80985 Mon Sep 17 00:00:00 2001 From: Steve Martinelli Date: Thu, 1 Oct 2015 18:43:04 -0400 Subject: Rename swift account commands rename `os account` to `os object store account` Co-Authored-By: Lin Hua Cheng Closes-Bug: #1501943 Change-Id: I54fdcea7a48df16f20e17605110f8d33a20f713c --- doc/source/command-objects/account.rst | 45 ---------------------- .../command-objects/object-store-account.rst | 45 ++++++++++++++++++++++ setup.cfg | 6 +-- 3 files changed, 48 insertions(+), 48 deletions(-) delete mode 100644 doc/source/command-objects/account.rst create mode 100644 doc/source/command-objects/object-store-account.rst diff --git a/doc/source/command-objects/account.rst b/doc/source/command-objects/account.rst deleted file mode 100644 index db4ad9b1..00000000 --- a/doc/source/command-objects/account.rst +++ /dev/null @@ -1,45 +0,0 @@ -======= -account -======= - -Object Store v1 - -account set ------------ - -Set account properties - -.. program:: account set -.. code:: bash - - os account set - [--property [...] ] - -.. option:: --property - - Set a property on this account (repeat option to set multiple properties) - -account show ------------- - -Display account details - -.. program:: account show -.. code:: bash - - os account show - -account unset -------------- - -Unset account properties - -.. program:: account unset -.. code:: bash - - os account unset - [--property ] - -.. option:: --property - - Property to remove from account (repeat option to remove multiple properties) diff --git a/doc/source/command-objects/object-store-account.rst b/doc/source/command-objects/object-store-account.rst new file mode 100644 index 00000000..bdc9393e --- /dev/null +++ b/doc/source/command-objects/object-store-account.rst @@ -0,0 +1,45 @@ +==================== +object store account +==================== + +Object Store v1 + +object store account set +------------------------ + +Set account properties + +.. program:: object store account set +.. code:: bash + + os object store account set + [--property [...] ] + +.. option:: --property + + Set a property on this account (repeat option to set multiple properties) + +object store account show +------------------------- + +Display account details + +.. program:: object store account show +.. code:: bash + + os object store account show + +object store account unset +-------------------------- + +Unset account properties + +.. program:: object store account unset +.. code:: bash + + os object store account unset + [--property ] + +.. option:: --property + + Property to remove from account (repeat option to remove multiple properties) diff --git a/setup.cfg b/setup.cfg index c8432707..f40270c2 100644 --- a/setup.cfg +++ b/setup.cfg @@ -331,9 +331,9 @@ openstack.network.v2 = network_show = openstackclient.network.v2.network:ShowNetwork openstack.object_store.v1 = - account_set = openstackclient.object.v1.account:SetAccount - account_show = openstackclient.object.v1.account:ShowAccount - account_unset = openstackclient.object.v1.account:UnsetAccount + object_store_account_set = openstackclient.object.v1.account:SetAccount + object_store_account_show = openstackclient.object.v1.account:ShowAccount + object_store_account_unset = openstackclient.object.v1.account:UnsetAccount container_create = openstackclient.object.v1.container:CreateContainer container_delete = openstackclient.object.v1.container:DeleteContainer container_list = openstackclient.object.v1.container:ListContainer -- cgit v1.2.1