summaryrefslogtreecommitdiff
path: root/releasenotes
diff options
context:
space:
mode:
authorSheel Rana <ranasheel2000@gmail.com>2016-04-16 23:00:00 +0530
committerSheel Rana <ranasheel2000@gmail.com>2016-04-16 23:01:19 +0530
commit92950b6f5fcaae972ef51235223394b501844354 (patch)
treec7b40ffa52f6d3fe833d8c15d4dcbd84ebd640aa /releasenotes
parente80048de09044adad3ad7bd8d323b025856bf94e (diff)
downloadpython-openstackclient-92950b6f5fcaae972ef51235223394b501844354.tar.gz
Add support for removing volume-type-access
OSC does not support to remove volume type access to project. This feature will provide support to remove volume type access from project. Closes-Bug:#1554890 Implements: bp cinder-command-support Change-Id: I029a4292da05f028e8937962cb845ec6e00b0279
Diffstat (limited to 'releasenotes')
-rw-r--r--releasenotes/notes/type_access_remove-a6a55921d2dae48d.yaml18
1 files changed, 18 insertions, 0 deletions
diff --git a/releasenotes/notes/type_access_remove-a6a55921d2dae48d.yaml b/releasenotes/notes/type_access_remove-a6a55921d2dae48d.yaml
new file mode 100644
index 00000000..7dfc949b
--- /dev/null
+++ b/releasenotes/notes/type_access_remove-a6a55921d2dae48d.yaml
@@ -0,0 +1,18 @@
+---
+features:
+ - |
+ Added support for removing volume type access to project.
+
+ By default, volumes types are public.
+ To create a private volume type the ``--private`` option must be included
+ in the ``volume type create`` command.
+
+ To control access to a private volume type, user needs to add or remove
+ access of a private volume type to project.
+
+ This feature enables user to remove private volume type access to a
+ project using below command:
+
+ ``volume type unset --project <project> <volume_type>``
+
+ [Bug 1554890 'https://bugs.launchpad.net/python-openstackclient/+bug/1554890'_]