summaryrefslogtreecommitdiff
path: root/openstackclient/volume/v3
diff options
context:
space:
mode:
authorStephen Finucane <sfinucan@redhat.com>2021-06-03 14:38:55 +0100
committerStephen Finucane <sfinucan@redhat.com>2021-06-03 18:00:50 +0100
commit83551d2a0c7604179c0988c13d58455a6b289cc8 (patch)
treeff4a46ab80575520d4b4b736a8ef7bdd25293167 /openstackclient/volume/v3
parent4c2e8523a98a0dd33e0203c47e94384420c14f9c (diff)
downloadpython-openstackclient-83551d2a0c7604179c0988c13d58455a6b289cc8.tar.gz
volume: Add 'volume group type *' commands
These mirror the 'cinder group-type-*' commands, with arguments copied across essentially verbatim. The only significant departure is the merging of some commands, such as 'group-type-default' and 'group-type-list' into 'group type list', and 'group-type-update' and 'group-type-key' into 'group type set/unset'. volume group type create volume group type delete volume group type list volume group type show volume group type set volume group type unset Change-Id: Iee6ee2f1f276e6ef6f75a74f8f2980f14c0d5e2f Signed-off-by: Stephen Finucane <sfinucan@redhat.com>
Diffstat (limited to 'openstackclient/volume/v3')
-rw-r--r--openstackclient/volume/v3/volume_group_type.py410
1 files changed, 410 insertions, 0 deletions
diff --git a/openstackclient/volume/v3/volume_group_type.py b/openstackclient/volume/v3/volume_group_type.py
new file mode 100644
index 00000000..860fa544
--- /dev/null
+++ b/openstackclient/volume/v3/volume_group_type.py
@@ -0,0 +1,410 @@
+# Licensed under the Apache License, Version 2.0 (the "License"); you may
+# not use this file except in compliance with the License. You may obtain
+# a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
+# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
+# License for the specific language governing permissions and limitations
+# under the License.
+
+import logging
+
+from cinderclient import api_versions
+from osc_lib.cli import format_columns
+from osc_lib.cli import parseractions
+from osc_lib.command import command
+from osc_lib import exceptions
+from osc_lib import utils
+
+from openstackclient.i18n import _
+
+LOG = logging.getLogger(__name__)
+
+
+def _format_group_type(group):
+ columns = (
+ 'id',
+ 'name',
+ 'description',
+ 'is_public',
+ 'group_specs',
+ )
+ column_headers = (
+ 'ID',
+ 'Name',
+ 'Description',
+ 'Is Public',
+ 'Properties',
+ )
+
+ # TODO(stephenfin): Consider using a formatter for volume_types since it's
+ # a list
+ return (
+ column_headers,
+ utils.get_item_properties(
+ group,
+ columns,
+ formatters={
+ 'group_specs': format_columns.DictColumn,
+ },
+ ),
+ )
+
+
+class CreateVolumeGroupType(command.ShowOne):
+ """Create a volume group type.
+
+ This command requires ``--os-volume-api-version`` 3.11 or greater.
+ """
+
+ def get_parser(self, prog_name):
+ parser = super().get_parser(prog_name)
+ parser.add_argument(
+ 'name',
+ metavar='<name>',
+ help=_('Name of new volume group type.'),
+ )
+ parser.add_argument(
+ '--description',
+ metavar='<description>',
+ help=_('Description of the volume group type.')
+ )
+ type_group = parser.add_mutually_exclusive_group()
+ type_group.add_argument(
+ '--public',
+ dest='is_public',
+ action='store_true',
+ default=True,
+ help=_(
+ 'Volume group type is available to other projects (default)'
+ ),
+ )
+ type_group.add_argument(
+ '--private',
+ dest='is_public',
+ action='store_false',
+ help=_('Volume group type is not available to other projects')
+ )
+ return parser
+
+ def take_action(self, parsed_args):
+ volume_client = self.app.client_manager.volume
+
+ if volume_client.api_version < api_versions.APIVersion('3.11'):
+ msg = _(
+ "--os-volume-api-version 3.11 or greater is required to "
+ "support the 'volume group type create' command"
+ )
+ raise exceptions.CommandError(msg)
+
+ group_type = volume_client.group_types.create(
+ parsed_args.name,
+ parsed_args.description,
+ parsed_args.is_public)
+
+ return _format_group_type(group_type)
+
+
+class DeleteVolumeGroupType(command.Command):
+ """Delete a volume group type.
+
+ This command requires ``--os-volume-api-version`` 3.11 or greater.
+ """
+
+ def get_parser(self, prog_name):
+ parser = super().get_parser(prog_name)
+ parser.add_argument(
+ 'group_type',
+ metavar='<group_type>',
+ help=_('Name or ID of volume group type to delete'),
+ )
+ return parser
+
+ def take_action(self, parsed_args):
+ volume_client = self.app.client_manager.volume
+
+ if volume_client.api_version < api_versions.APIVersion('3.11'):
+ msg = _(
+ "--os-volume-api-version 3.11 or greater is required to "
+ "support the 'volume group type delete' command"
+ )
+ raise exceptions.CommandError(msg)
+
+ group_type = utils.find_resource(
+ volume_client.group_types,
+ parsed_args.group_type,
+ )
+
+ volume_client.group_types.delete(group_type.id)
+
+
+class SetVolumeGroupType(command.ShowOne):
+ """Update a volume group type.
+
+ This command requires ``--os-volume-api-version`` 3.11 or greater.
+ """
+
+ def get_parser(self, prog_name):
+ parser = super().get_parser(prog_name)
+ parser.add_argument(
+ 'group_type',
+ metavar='<group_type>',
+ help=_('Name or ID of volume group type.'),
+ )
+ parser.add_argument(
+ '--name',
+ metavar='<name>',
+ help=_('New name for volume group type.'),
+ )
+ parser.add_argument(
+ '--description',
+ metavar='<description>',
+ help=_('New description for volume group type.'),
+ )
+ type_group = parser.add_mutually_exclusive_group()
+ type_group.add_argument(
+ '--public',
+ dest='is_public',
+ action='store_true',
+ default=None,
+ help=_('Make volume group type available to other projects.'),
+ )
+ type_group.add_argument(
+ '--private',
+ dest='is_public',
+ action='store_false',
+ help=_('Make volume group type unavailable to other projects.')
+ )
+ parser.add_argument(
+ '--no-property',
+ action='store_true',
+ help=_(
+ 'Remove all properties from this volume group type '
+ '(specify both --no-property and --property '
+ 'to remove the current properties before setting '
+ 'new properties)'
+ ),
+ )
+ parser.add_argument(
+ '--property',
+ metavar='<key=value>',
+ action=parseractions.KeyValueAction,
+ dest='properties',
+ help=_(
+ 'Property to add or modify for this volume group type '
+ '(repeat option to set multiple properties)'
+ ),
+ )
+ return parser
+
+ def take_action(self, parsed_args):
+ volume_client = self.app.client_manager.volume
+
+ if volume_client.api_version < api_versions.APIVersion('3.11'):
+ msg = _(
+ "--os-volume-api-version 3.11 or greater is required to "
+ "support the 'volume group type set' command"
+ )
+ raise exceptions.CommandError(msg)
+
+ group_type = utils.find_resource(
+ volume_client.group_types,
+ parsed_args.group_type,
+ )
+
+ kwargs = {}
+ errors = 0
+
+ if parsed_args.name is not None:
+ kwargs['name'] = parsed_args.name
+
+ if parsed_args.description is not None:
+ kwargs['description'] = parsed_args.description
+
+ if parsed_args.is_public is not None:
+ kwargs['is_public'] = parsed_args.is_public
+
+ if kwargs:
+ try:
+ group_type = volume_client.group_types.update(
+ group_type.id, **kwargs)
+ except Exception as e:
+ LOG.error(_("Failed to update group type: %s"), e)
+ errors += 1
+
+ if parsed_args.no_property:
+ try:
+ keys = group_type.get_keys().keys()
+ group_type.unset_keys(keys)
+ except Exception as e:
+ LOG.error(_("Failed to clear group type properties: %s"), e)
+ errors += 1
+
+ if parsed_args.properties:
+ try:
+ group_type.set_keys(parsed_args.properties)
+ except Exception as e:
+ LOG.error(_("Failed to set group type properties: %s"), e)
+ errors += 1
+
+ if errors > 0:
+ msg = _(
+ "Command Failed: One or more of the operations failed"
+ )
+ raise exceptions.CommandError()
+
+ return _format_group_type(group_type)
+
+
+class UnsetVolumeGroupType(command.ShowOne):
+ """Unset properties of a volume group type.
+
+ This command requires ``--os-volume-api-version`` 3.11 or greater.
+ """
+
+ def get_parser(self, prog_name):
+ parser = super().get_parser(prog_name)
+ parser.add_argument(
+ 'group_type',
+ metavar='<group_type>',
+ help=_('Name or ID of volume group type.'),
+ )
+ parser.add_argument(
+ '--property',
+ metavar='<key>',
+ action='append',
+ dest='properties',
+ help=_(
+ 'Property to remove from this volume group type '
+ '(repeat option to unset multiple properties)'
+ ),
+ )
+ return parser
+
+ def take_action(self, parsed_args):
+ volume_client = self.app.client_manager.volume
+
+ if volume_client.api_version < api_versions.APIVersion('3.11'):
+ msg = _(
+ "--os-volume-api-version 3.11 or greater is required to "
+ "support the 'volume group type unset' command"
+ )
+ raise exceptions.CommandError(msg)
+
+ group_type = utils.find_resource(
+ volume_client.group_types,
+ parsed_args.group_type,
+ )
+
+ group_type.unset_keys(parsed_args.properties)
+
+ group_type = utils.find_resource(
+ volume_client.group_types,
+ parsed_args.group_type,
+ )
+
+ return _format_group_type(group_type)
+
+
+class ListVolumeGroupType(command.Lister):
+ """Lists all volume group types.
+
+ This command requires ``--os-volume-api-version`` 3.11 or greater.
+ """
+
+ def get_parser(self, prog_name):
+ parser = super().get_parser(prog_name)
+ parser.add_argument(
+ '--default',
+ action='store_true',
+ dest='show_default',
+ default=False,
+ help=_('List the default volume group type.'),
+ )
+ # TODO(stephenfin): Add once we have an equivalent command for
+ # 'cinder list-filters'
+ # parser.add_argument(
+ # '--filter',
+ # metavar='<key=value>',
+ # action=parseractions.KeyValueAction,
+ # dest='filters',
+ # help=_(
+ # "Filter key and value pairs. Use 'foo' to "
+ # "check enabled filters from server. Use 'key~=value' for "
+ # "inexact filtering if the key supports "
+ # "(supported by --os-volume-api-version 3.33 or above)"
+ # ),
+ # )
+ return parser
+
+ def take_action(self, parsed_args):
+ volume_client = self.app.client_manager.volume
+
+ if volume_client.api_version < api_versions.APIVersion('3.11'):
+ msg = _(
+ "--os-volume-api-version 3.11 or greater is required to "
+ "support the 'volume group type list' command"
+ )
+ raise exceptions.CommandError(msg)
+
+ if parsed_args.show_default:
+ group_types = [volume_client.group_types.default()]
+ else:
+ group_types = volume_client.group_types.list()
+
+ column_headers = (
+ 'ID',
+ 'Name',
+ 'Is Public',
+ 'Properties',
+ )
+ columns = (
+ 'id',
+ 'name',
+ 'is_public',
+ 'group_specs',
+ )
+
+ return (
+ column_headers,
+ (
+ utils.get_item_properties(a, columns)
+ for a in group_types
+ ),
+ )
+
+
+class ShowVolumeGroupType(command.ShowOne):
+ """Show detailed information for a volume group type.
+
+ This command requires ``--os-volume-api-version`` 3.11 or greater.
+ """
+
+ def get_parser(self, prog_name):
+ parser = super().get_parser(prog_name)
+ parser.add_argument(
+ 'group_type',
+ metavar='<group_type>',
+ help=_('Name or ID of volume group type.'),
+ )
+ return parser
+
+ def take_action(self, parsed_args):
+ volume_client = self.app.client_manager.volume
+
+ if volume_client.api_version < api_versions.APIVersion('3.11'):
+ msg = _(
+ "--os-volume-api-version 3.11 or greater is required to "
+ "support the 'volume group type show' command"
+ )
+ raise exceptions.CommandError(msg)
+
+ group_type = utils.find_resource(
+ volume_client.group_types,
+ parsed_args.group,
+ )
+
+ return _format_group_type(group_type)