Home | Trees | Indices | Help |
|
---|
|
1 from base import CmdBase 2 35 """ 6 listimages [options] 7 8 List all registered EC2 images (AMIs) 9 """ 10 names = ['listimages', 'li'] 112413 parser.add_option( 14 "-x", "--executable-by-me", dest="executable", 15 action="store_true", default=False, 16 help=("Show images owned by other users that " + 17 "you have permission to execute"))1820 if self.opts.executable: 21 self.ec2.list_executable_images() 22 else: 23 self.ec2.list_registered_images()
Home | Trees | Indices | Help |
|
---|
Generated by Epydoc 3.0.1 on Tue Jan 3 23:11:48 2012 | http://epydoc.sourceforge.net |