Home | Trees | Indices | Help |
|
---|
|
1 #!/usr/bin/env python 2 3 from base import CmdBase 4 57 """ 8 listimages [options] 9 10 List all registered EC2 images (AMIs) 11 """ 12 names = ['listimages', 'li'] 132615 parser.add_option( 16 "-x", "--executable-by-me", dest="executable", 17 action="store_true", default=False, 18 help=("Show images owned by other users that " + 19 "you have permission to execute"))2022 if self.opts.executable: 23 self.ec2.list_executable_images() 24 else: 25 self.ec2.list_registered_images()
Home | Trees | Indices | Help |
|
---|
Generated by Epydoc 3.0.1 on Thu Jun 16 16:31:27 2011 | http://epydoc.sourceforge.net |