/usr/lib/python2.6/site-packages/boto/ec2/elb
NameSizeModeActions
attributes.py51030644editdlrm
attributes.pyc65500644editdlrm
attributes.pyo65500644editdlrm
healthcheck.py37750644editdlrm
healthcheck.pyc31060644editdlrm
healthcheck.pyo31060644editdlrm
instancestate.py26580644editdlrm
instancestate.pyc22120644editdlrm
instancestate.pyo22120644editdlrm
listelement.py15120644editdlrm
listelement.pyc9410644editdlrm
listelement.pyo9410644editdlrm
listener.py33770644editdlrm
listener.pyc28230644editdlrm
listener.pyo28230644editdlrm
loadbalancer.py163800644editdlrm
loadbalancer.pyc178120644editdlrm
loadbalancer.pyo178120644editdlrm
policies.py38560644editdlrm
policies.pyc48360644editdlrm
policies.pyo48360644editdlrm
securitygroup.py15760644editdlrm
securitygroup.pyc13020644editdlrm
securitygroup.pyo13020644editdlrm
__init__.py325080644editdlrm
__init__.pyc296680644editdlrm
__init__.pyo296680644editdlrm
Edit: /usr/lib/python2.6/site-packages/boto/ec2/elb/securitygroup.py (1576B)
# Copyright (c) 2010 Reza Lotun http://reza.lotun.name # # Permission is hereby granted, free of charge, to any person obtaining a # copy of this software and associated documentation files (the # "Software"), to deal in the Software without restriction, including # without limitation the rights to use, copy, modify, merge, publish, dis- # tribute, sublicense, and/or sell copies of the Software, and to permit # persons to whom the Software is furnished to do so, subject to the fol- # lowing conditions: # # The above copyright notice and this permission notice shall be included # in all copies or substantial portions of the Software. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS # OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABIL- # ITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT # SHALL THE AUTHOR BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, # WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. class SecurityGroup(object): def __init__(self, connection=None): self.name = None self.owner_alias = None def __repr__(self): return 'SecurityGroup(%s, %s)' % (self.name, self.owner_alias) def startElement(self, name, attrs, connection): pass def endElement(self, name, value, connection): if name == 'GroupName': self.name = value elif name == 'OwnerAlias': self.owner_alias = value