78 lines
2.2 KiB
Python
Raw Normal View History

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.id
2011-08-10 13:53:58 -05:00
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 get(self):
self.manager.get(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
:rtype: Integer ID of created security group
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
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
"""
2011-08-13 16:06:50 -07:00
return self._delete('/os-security-groups/%s' % base.getid(group))
2011-08-10 13:53:58 -05:00
def get(self, id):
2011-08-13 16:06:50 -07:00
"""
2011-08-10 14:21:09 -05:00
Get a security group
2011-08-13 16:06:50 -07:00
:param group: 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' % id,
'security_group')
2011-08-10 13:53:58 -05:00
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("/os-security-groups", "security_groups")