summaryrefslogtreecommitdiff
path: root/neutronclient/neutron/v2_0/flavor/flavor.py
blob: 36a052ef2bfdbba159cb62843bd32d1da21e9343 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
# Copyright 2015 Hewlett-Packard Development Company, L.P.
# All Rights Reserved
#
#    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 argparse

from neutronclient._i18n import _
from neutronclient.common import utils
from neutronclient.neutron import v2_0 as neutronV20


class ListFlavor(neutronV20.ListCommand):
    """List Neutron service flavors."""

    resource = 'flavor'
    list_columns = ['id', 'name', 'service_type', 'enabled']
    pagination_support = True
    sorting_support = True


class ShowFlavor(neutronV20.ShowCommand):
    """Show information about a given Neutron service flavor."""

    resource = 'flavor'


class CreateFlavor(neutronV20.CreateCommand):
    """Create a Neutron service flavor."""

    resource = 'flavor'

    def add_known_arguments(self, parser):
        parser.add_argument(
            'name',
            metavar='NAME',
            help=_('Name for the flavor.'))
        parser.add_argument(
            'service_type',
            metavar='SERVICE_TYPE',
            help=_('Service type to which the flavor applies to: e.g. VPN. '
                   '(See service-provider-list for loaded examples.)'))
        parser.add_argument(
            '--description',
            help=_('Description for the flavor.'))
        utils.add_boolean_argument(
            parser,
            '--enabled',
            default=argparse.SUPPRESS,
            help=_('Sets enabled flag.'))

    def args2body(self, parsed_args):
        body = {}
        neutronV20.update_dict(parsed_args, body,
                               ['name', 'description', 'service_type',
                                'enabled'])
        return {self.resource: body}


class DeleteFlavor(neutronV20.DeleteCommand):
    """Delete a given Neutron service flavor."""

    resource = 'flavor'


class UpdateFlavor(neutronV20.UpdateCommand):
    """Update a Neutron service flavor."""

    resource = 'flavor'

    def add_known_arguments(self, parser):
        parser.add_argument(
            '--name',
            help=_('Name for the flavor.'))
        parser.add_argument(
            '--description',
            help=_('Description for the flavor.'))
        utils.add_boolean_argument(
            parser,
            '--enabled',
            default=argparse.SUPPRESS,
            help=_('Sets enabled flag.'))

    def args2body(self, parsed_args):
        body = {}
        neutronV20.update_dict(parsed_args, body,
                               ['name', 'description', 'enabled'])
        return {self.resource: body}


class AssociateFlavor(neutronV20.NeutronCommand):
    """Associate a Neutron service flavor with a flavor profile."""

    resource = 'flavor'

    def get_parser(self, prog_name):
        parser = super(AssociateFlavor, self).get_parser(prog_name)
        parser.add_argument(
            'flavor',
            metavar='FLAVOR',
            help=_('ID or name of the flavor to associate.'))
        parser.add_argument(
            'flavor_profile',
            metavar='FLAVOR_PROFILE',
            help=_('ID of the flavor profile to be associated with the '
                   'flavor.'))
        return parser

    def take_action(self, parsed_args):
        neutron_client = self.get_client()
        flavor_id = neutronV20.find_resourceid_by_name_or_id(
            neutron_client, 'flavor', parsed_args.flavor)
        service_profile_id = neutronV20.find_resourceid_by_id(
            neutron_client, 'service_profile', parsed_args.flavor_profile)
        body = {'service_profile': {'id': service_profile_id}}
        neutron_client.associate_flavor(flavor_id, body)
        print((_('Associated flavor %(flavor)s with '
                 'flavor_profile %(profile)s') %
               {'flavor': parsed_args.flavor,
                'profile': parsed_args.flavor_profile}),
              file=self.app.stdout)


class DisassociateFlavor(neutronV20.NeutronCommand):
    """Disassociate a Neutron service flavor from a flavor profile."""

    resource = 'flavor'

    def get_parser(self, prog_name):
        parser = super(DisassociateFlavor, self).get_parser(prog_name)
        parser.add_argument(
            'flavor',
            metavar='FLAVOR',
            help=_('ID or name of the flavor to be disassociated.'))
        parser.add_argument(
            'flavor_profile',
            metavar='FLAVOR_PROFILE',
            help=_('ID of the flavor profile to be disassociated from the '
                   'flavor.'))
        return parser

    def take_action(self, parsed_args):
        neutron_client = self.get_client()
        flavor_id = neutronV20.find_resourceid_by_name_or_id(
            neutron_client, 'flavor', parsed_args.flavor)
        service_profile_id = neutronV20.find_resourceid_by_id(
            neutron_client, 'service_profile', parsed_args.flavor_profile)
        neutron_client.disassociate_flavor(flavor_id, service_profile_id)
        print((_('Disassociated flavor %(flavor)s from '
                 'flavor_profile %(profile)s') %
               {'flavor': parsed_args.flavor,
                'profile': parsed_args.flavor_profile}),
              file=self.app.stdout)