2011-08-10 13:53:58 -05:00
|
|
|
# Copyright 2011 OpenStack LLC.
|
|
|
|
# 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).
|
|
|
|
"""
|
|
|
|
|
|
|
|
from novaclient import base
|
|
|
|
|
|
|
|
|
|
|
|
class SecurityGroup(base.Resource):
|
|
|
|
|
|
|
|
def __repr__(self):
|
|
|
|
return "<Security_group: %s>" % self.uuid
|
|
|
|
|
2011-08-10 14:21:09 -05:00
|
|
|
def __str__(self):
|
|
|
|
return self.uuid
|
|
|
|
|
2011-08-10 13:53:58 -05:00
|
|
|
@property
|
|
|
|
def uuid(self):
|
|
|
|
return self.name
|
|
|
|
|
2011-08-10 14:21:09 -05:00
|
|
|
def delete(self):
|
|
|
|
self.manager.delete(self)
|
|
|
|
|
2011-08-10 13:53:58 -05:00
|
|
|
|
|
|
|
class SecurityGroupManager(base.ManagerWithFind):
|
|
|
|
resource_class = SecurityGroup
|
|
|
|
|
|
|
|
def create(self, name, description):
|
|
|
|
"""
|
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-10 13:53:58 -05:00
|
|
|
body = {"security_group": {"name": name, 'description': description}}
|
|
|
|
return self._create('/extras/security_groups', body, 'security_group')
|
|
|
|
|
|
|
|
def delete(self, id):
|
|
|
|
"""
|
2011-08-10 14:21:09 -05:00
|
|
|
Delete a security group
|
|
|
|
|
|
|
|
:param id: The security group ID to delete
|
|
|
|
"""
|
2011-08-10 13:53:58 -05:00
|
|
|
return self._delete('/extras/security_groups/%s' % id)
|
|
|
|
|
|
|
|
def get(self, id):
|
|
|
|
"""
|
2011-08-10 14:21:09 -05:00
|
|
|
Get a security group
|
|
|
|
|
|
|
|
:param id: The security group ID to get
|
|
|
|
:rtype: :class:`SecurityGroup`
|
2011-08-10 13:53:58 -05:00
|
|
|
"""
|
|
|
|
return self._get('/extras/security_groups/%s' % id, 'security_group')
|
|
|
|
|
|
|
|
def list(self):
|
|
|
|
"""
|
|
|
|
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`
|
|
|
|
"""
|
|
|
|
return self._list("/extras/security_groups", "security_groups")
|