/usr/lib/python2.6/site-packages/boto/ec2
NameSizeModeActions
autoscale/-0755rm
cloudwatch/-0755rm
elb/-0755rm
address.py53480644editdlrm
address.pyc40100644editdlrm
address.pyo40100644editdlrm
attributes.py27100644editdlrm
attributes.pyc28280644editdlrm
attributes.pyo28280644editdlrm
blockdevicemapping.py63720644editdlrm
blockdevicemapping.pyc51510644editdlrm
blockdevicemapping.pyo51510644editdlrm
bundleinstance.py27540644editdlrm
bundleinstance.pyc21750644editdlrm
bundleinstance.pyo21750644editdlrm
buyreservation.py38380644editdlrm
buyreservation.pyc34050644editdlrm
buyreservation.pyo34050644editdlrm
connection.py1762210644editdlrm
connection.pyc1532690644editdlrm
connection.pyo1532690644editdlrm
ec2object.py55540644editdlrm
ec2object.pyc56830644editdlrm
ec2object.pyo56830644editdlrm
group.py15590644editdlrm
group.pyc10470644editdlrm
group.pyo10470644editdlrm
image.py162220644editdlrm
image.pyc150190644editdlrm
image.pyo150190644editdlrm
instance.py235100644editdlrm
instance.pyc256430644editdlrm
instance.pyo256430644editdlrm
instanceinfo.py18930644editdlrm
instanceinfo.pyc15510644editdlrm
instanceinfo.pyo15510644editdlrm
instancestatus.py68540644editdlrm
instancestatus.pyc82120644editdlrm
instancestatus.pyo82120644editdlrm
instancetype.py22730644editdlrm
instancetype.pyc16920644editdlrm
instancetype.pyo16920644editdlrm
keypair.py43510644editdlrm
keypair.pyc40990644editdlrm
keypair.pyo40990644editdlrm
launchspecification.py38290644editdlrm
launchspecification.pyc34690644editdlrm
launchspecification.pyo34690644editdlrm
networkinterface.py135970644editdlrm
networkinterface.pyc121110644editdlrm
networkinterface.pyo121110644editdlrm
placementgroup.py20020644editdlrm
placementgroup.pyc16600644editdlrm
placementgroup.pyo16600644editdlrm
regioninfo.py15680644editdlrm
regioninfo.pyc8450644editdlrm
regioninfo.pyo8450644editdlrm
reservedinstance.py129660644editdlrm
reservedinstance.pyc140560644editdlrm
reservedinstance.pyo140560644editdlrm
securitygroup.py146870644editdlrm
securitygroup.pyc120660644editdlrm
securitygroup.pyo120660644editdlrm
snapshot.py68520644editdlrm
snapshot.pyc63840644editdlrm
snapshot.pyo63840644editdlrm
spotdatafeedsubscription.py24340644editdlrm
spotdatafeedsubscription.pyc21420644editdlrm
spotdatafeedsubscription.pyo21420644editdlrm
spotinstancerequest.py72880644editdlrm
spotinstancerequest.pyc76480644editdlrm
spotinstancerequest.pyo76480644editdlrm
spotpricehistory.py20930644editdlrm
spotpricehistory.pyc15950644editdlrm
spotpricehistory.pyo15950644editdlrm
tag.py30760644editdlrm
tag.pyc28490644editdlrm
tag.pyo28490644editdlrm
volume.py104360644editdlrm
volume.pyc108590644editdlrm
volume.pyo108590644editdlrm
volumestatus.py63290644editdlrm
volumestatus.pyc77060644editdlrm
volumestatus.pyo77060644editdlrm
zone.py26010644editdlrm
zone.pyc25170644editdlrm
zone.pyo25170644editdlrm
__init__.py31000644editdlrm
__init__.pyc24320644editdlrm
__init__.pyo24320644editdlrm
Edit: /usr/lib/python2.6/site-packages/boto/ec2/keypair.py (4351B)
# Copyright (c) 2006,2007 Mitch Garnaat http://garnaat.org/ # # 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. """ Represents an EC2 Keypair """ import os from boto.ec2.ec2object import EC2Object from boto.exception import BotoClientError class KeyPair(EC2Object): def __init__(self, connection=None): super(KeyPair, self).__init__(connection) self.name = None self.fingerprint = None self.material = None def __repr__(self): return 'KeyPair:%s' % self.name def endElement(self, name, value, connection): if name == 'keyName': self.name = value elif name == 'keyFingerprint': self.fingerprint = value elif name == 'keyMaterial': self.material = value else: setattr(self, name, value) def delete(self, dry_run=False): """ Delete the KeyPair. :rtype: bool :return: True if successful, otherwise False. """ return self.connection.delete_key_pair(self.name, dry_run=dry_run) def save(self, directory_path): """ Save the material (the unencrypted PEM encoded RSA private key) of a newly created KeyPair to a local file. :type directory_path: string :param directory_path: The fully qualified path to the directory in which the keypair will be saved. The keypair file will be named using the name of the keypair as the base name and .pem for the file extension. If a file of that name already exists in the directory, an exception will be raised and the old file will not be overwritten. :rtype: bool :return: True if successful. """ if self.material: directory_path = os.path.expanduser(directory_path) file_path = os.path.join(directory_path, '%s.pem' % self.name) if os.path.exists(file_path): raise BotoClientError('%s already exists, it will not be overwritten' % file_path) fp = open(file_path, 'wb') fp.write(self.material) fp.close() os.chmod(file_path, 0o600) return True else: raise BotoClientError('KeyPair contains no material') def copy_to_region(self, region, dry_run=False): """ Create a new key pair of the same new in another region. Note that the new key pair will use a different ssh cert than the this key pair. After doing the copy, you will need to save the material associated with the new key pair (use the save method) to a local file. :type region: :class:`boto.ec2.regioninfo.RegionInfo` :param region: The region to which this security group will be copied. :rtype: :class:`boto.ec2.keypair.KeyPair` :return: The new key pair """ if region.name == self.region: raise BotoClientError('Unable to copy to the same Region') conn_params = self.connection.get_params() rconn = region.connect(**conn_params) kp = rconn.create_key_pair(self.name, dry_run=dry_run) return kp