當前位置: 首頁>>代碼示例>>Python>>正文


Python IObject.get_string方法代碼示例

本文整理匯總了Python中boto.mashups.iobject.IObject.get_string方法的典型用法代碼示例。如果您正苦於以下問題:Python IObject.get_string方法的具體用法?Python IObject.get_string怎麽用?Python IObject.get_string使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在boto.mashups.iobject.IObject的用法示例。


在下文中一共展示了IObject.get_string方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: create_image

# 需要導入模塊: from boto.mashups.iobject import IObject [as 別名]
# 或者: from boto.mashups.iobject.IObject import get_string [as 別名]
 def create_image(self, bucket=None, prefix=None, key_file=None, cert_file=None, size=None):
     iobject = IObject()
     if not bucket:
         bucket = iobject.get_string('Name of S3 bucket')
     if not prefix:
         prefix = iobject.get_string('Prefix for AMI file')
     if not key_file:
         key_file = iobject.get_filename('Path to RSA private key file')
     if not cert_file:
         cert_file = iobject.get_filename('Path to RSA public cert file')
     if not size:
         size = iobject.get_int('Size (in MB) of bundled image')
     self.bundle_image(prefix, key_file, cert_file, size)
     self.upload_bundle(bucket, prefix)
     print 'registering image...'
     self.image_id = self.ec2.register_image('%s/%s.manifest.xml' % (bucket, prefix))
     return self.image_id
開發者ID:Biggytv,項目名稱:titanium_build,代碼行數:19,代碼來源:server.py

示例2: bundle

# 需要導入模塊: from boto.mashups.iobject import IObject [as 別名]
# 或者: from boto.mashups.iobject.IObject import get_string [as 別名]
 def bundle(self, bucket=None, prefix=None, key_file=None, cert_file=None,
            size=None, ssh_key=None, fp=None, clear_history=True):
     iobject = IObject()
     if not bucket:
         bucket = iobject.get_string('Name of S3 bucket')
     if not prefix:
         prefix = iobject.get_string('Prefix for AMI file')
     if not key_file:
         key_file = iobject.get_filename('Path to RSA private key file')
     if not cert_file:
         cert_file = iobject.get_filename('Path to RSA public cert file')
     if not size:
         size = iobject.get_int('Size (in MB) of bundled image')
     if not ssh_key:
         ssh_key = self.server.get_ssh_key_file()
     self.copy_x509(key_file, cert_file)
     if not fp:
         fp = StringIO.StringIO()
     fp.write('sudo mv %s /mnt/boto.cfg; ' % BotoConfigPath)
     fp.write('mv ~/.ssh/authorized_keys /mnt/authorized_keys; ')
     if clear_history:
         fp.write('history -c; ')
     fp.write(self.bundle_image(prefix, size, ssh_key))
     fp.write('; ')
     fp.write(self.upload_bundle(bucket, prefix, ssh_key))
     fp.write('; ')
     fp.write('sudo mv /mnt/boto.cfg %s; ' % BotoConfigPath)
     fp.write('mv /mnt/authorized_keys ~/.ssh/authorized_keys')
     command = fp.getvalue()
     print 'running the following command on the remote server:'
     print command
     t = self.ssh_client.run(command)
     print '\t%s' % t[0]
     print '\t%s' % t[1]
     print '...complete!'
     print 'registering image...'
     self.image_id = self.server.ec2.register_image(name=prefix, image_location='%s/%s.manifest.xml' % (bucket, prefix))
     return self.image_id
開發者ID:AlexanderNapierski,項目名稱:boto,代碼行數:40,代碼來源:server.py


注:本文中的boto.mashups.iobject.IObject.get_string方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。