97 lines
2.9 KiB
Python
Raw Normal View History

# Copyright 2011 OpenStack Foundation
2011-08-10 13:53:58 -05:00
# 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.
"""
Security group interface (1.1 extension).
"""
import six
from six.moves.urllib import parse
2011-08-10 13:53:58 -05:00
from novaclient import base
class SecurityGroup(base.Resource):
2011-08-10 14:21:09 -05:00
def __str__(self):
return str(self.id)
2011-08-10 13:53:58 -05:00
2011-08-10 14:21:09 -05:00
def delete(self):
self.manager.delete(self)
def update(self):
self.manager.update(self)
2011-08-10 13:53:58 -05:00
class SecurityGroupManager(base.ManagerWithFind):
resource_class = SecurityGroup
def create(self, name, description):
2011-08-13 16:06:50 -07:00
"""
2011-08-10 14:21:09 -05:00
Create a security group
2011-08-10 14:55:50 -05:00
:param name: name for the security group to create
2011-08-10 14:21:09 -05:00
:param description: description of the security group
2011-08-23 20:59:25 -07:00
:rtype: the security group object
2011-08-10 14:21:09 -05:00
"""
2011-08-10 13:53:58 -05:00
body = {"security_group": {"name": name, 'description': description}}
return self._create('/os-security-groups', body, 'security_group')
2011-08-10 13:53:58 -05:00
def update(self, group, name, description):
"""
Update a security group
:param group: The security group to update (group or ID)
:param name: name for the security group to update
:param description: description for the security group to update
:rtype: the security group object
"""
body = {"security_group": {"name": name, 'description': description}}
return self._update('/os-security-groups/%s' % base.getid(group),
body, 'security_group')
2011-08-13 16:06:50 -07:00
def delete(self, group):
"""
2011-08-10 14:21:09 -05:00
Delete a security group
2011-08-13 16:06:50 -07:00
:param group: The security group to delete (group or ID)
:rtype: None
2011-08-10 14:21:09 -05:00
"""
self._delete('/os-security-groups/%s' % base.getid(group))
2011-08-10 13:53:58 -05:00
def get(self, group_id):
2011-08-13 16:06:50 -07:00
"""
2011-08-10 14:21:09 -05:00
Get a security group
:param group_id: The security group to get by ID
2011-08-10 14:21:09 -05:00
:rtype: :class:`SecurityGroup`
2011-08-13 16:06:50 -07:00
"""
return self._get('/os-security-groups/%s' % group_id,
2011-08-13 16:06:50 -07:00
'security_group')
2011-08-10 13:53:58 -05:00
def list(self, search_opts=None):
2011-08-10 13:53:58 -05:00
"""
Get a list of all security_groups
2011-08-10 14:21:09 -05:00
2011-08-10 13:53:58 -05:00
:rtype: list of :class:`SecurityGroup`
"""
search_opts = search_opts or {}
qparams = dict((k, v) for (k, v) in six.iteritems(search_opts) if v)
query_string = '?%s' % parse.urlencode(qparams) if qparams else ''
return self._list('/os-security-groups%s' % query_string,
'security_groups')