d44e598692
Module py3kcompat was removed from oslo-incubator. We need remove its usage in client side firstly. This make us move smoothly when sync oslo-incubator code. Change-Id: I8b07c32c9852e747579a23685f3c8a07ac13ec01 Partial-Bug: #1280033
97 lines
2.9 KiB
Python
97 lines
2.9 KiB
Python
# Copyright 2011 OpenStack Foundation
|
|
# 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
|
|
|
|
from novaclient import base
|
|
|
|
|
|
class SecurityGroup(base.Resource):
|
|
def __str__(self):
|
|
return str(self.id)
|
|
|
|
def delete(self):
|
|
self.manager.delete(self)
|
|
|
|
def update(self):
|
|
self.manager.update(self)
|
|
|
|
|
|
class SecurityGroupManager(base.ManagerWithFind):
|
|
resource_class = SecurityGroup
|
|
|
|
def create(self, name, description):
|
|
"""
|
|
Create a security group
|
|
|
|
:param name: name for the security group to create
|
|
:param description: description of the security group
|
|
:rtype: the security group object
|
|
"""
|
|
body = {"security_group": {"name": name, 'description': description}}
|
|
return self._create('/os-security-groups', body, 'security_group')
|
|
|
|
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')
|
|
|
|
def delete(self, group):
|
|
"""
|
|
Delete a security group
|
|
|
|
:param group: The security group to delete (group or ID)
|
|
:rtype: None
|
|
"""
|
|
self._delete('/os-security-groups/%s' % base.getid(group))
|
|
|
|
def get(self, group_id):
|
|
"""
|
|
Get a security group
|
|
|
|
:param group_id: The security group to get by ID
|
|
:rtype: :class:`SecurityGroup`
|
|
"""
|
|
return self._get('/os-security-groups/%s' % group_id,
|
|
'security_group')
|
|
|
|
def list(self, search_opts=None):
|
|
"""
|
|
Get a list of all security_groups
|
|
|
|
: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')
|