2013-03-13 18:09:17 -04:00
|
|
|
# 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).
|
|
|
|
"""
|
|
|
|
|
2013-06-24 08:32:05 -05:00
|
|
|
import six
|
2014-02-14 08:43:12 +08:00
|
|
|
from six.moves.urllib import parse
|
2013-06-24 08:32:05 -05:00
|
|
|
|
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):
|
2011-08-10 17:20:21 -05:00
|
|
|
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)
|
|
|
|
|
2013-05-22 16:28:34 +08:00
|
|
|
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}}
|
2011-08-12 10:38:10 -05:00
|
|
|
return self._create('/os-security-groups', body, 'security_group')
|
2011-08-10 13:53:58 -05:00
|
|
|
|
2013-05-22 16:28:34 +08:00
|
|
|
def update(self, group, name, description):
|
|
|
|
"""
|
|
|
|
Update a security group
|
|
|
|
|
2013-12-06 18:22:20 +08:00
|
|
|
:param group: The security group to update (group or ID)
|
2013-05-22 16:28:34 +08:00
|
|
|
: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)
|
2011-08-10 17:20:21 -05:00
|
|
|
:rtype: None
|
2011-08-10 14:21:09 -05:00
|
|
|
"""
|
2011-12-30 17:40:02 +01:00
|
|
|
self._delete('/os-security-groups/%s' % base.getid(group))
|
2011-08-10 13:53:58 -05:00
|
|
|
|
2012-06-26 11:34:31 -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
|
|
|
|
|
2012-06-26 11:34:31 -05:00
|
|
|
: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
|
|
|
"""
|
2012-06-26 11:34:31 -05: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
|
|
|
|
2012-09-14 11:31:30 +00: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`
|
|
|
|
"""
|
2012-09-14 11:31:30 +00:00
|
|
|
search_opts = search_opts or {}
|
|
|
|
|
2013-06-24 08:32:05 -05:00
|
|
|
qparams = dict((k, v) for (k, v) in six.iteritems(search_opts) if v)
|
2012-09-14 11:31:30 +00:00
|
|
|
|
2014-02-14 08:43:12 +08:00
|
|
|
query_string = '?%s' % parse.urlencode(qparams) if qparams else ''
|
2012-09-14 11:31:30 +00:00
|
|
|
|
|
|
|
return self._list('/os-security-groups%s' % query_string,
|
|
|
|
'security_groups')
|