当前位置: 首页>>代码示例>>Python>>正文


Python CloudManLauncher.get_clusters_pd方法代码示例

本文整理汇总了Python中bioblend.cloudman.launch.CloudManLauncher.get_clusters_pd方法的典型用法代码示例。如果您正苦于以下问题:Python CloudManLauncher.get_clusters_pd方法的具体用法?Python CloudManLauncher.get_clusters_pd怎么用?Python CloudManLauncher.get_clusters_pd使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在bioblend.cloudman.launch.CloudManLauncher的用法示例。


在下文中一共展示了CloudManLauncher.get_clusters_pd方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: fetch_clusters

# 需要导入模块: from bioblend.cloudman.launch import CloudManLauncher [as 别名]
# 或者: from bioblend.cloudman.launch.CloudManLauncher import get_clusters_pd [as 别名]
def fetch_clusters(cloud, a_key, s_key):
    """
    Given a cloud object and appropriate credentials, retrieve a list of
    clusters associated with the given account. Return a dict of clusters'
    persistent data.
    """
    cml = CloudManLauncher(a_key, s_key, cloud)
    return cml.get_clusters_pd()
开发者ID:pli888,项目名称:cloudlaunch,代码行数:10,代码来源:tasks.py

示例2: get_cluster_pd

# 需要导入模块: from bioblend.cloudman.launch import CloudManLauncher [as 别名]
# 或者: from bioblend.cloudman.launch.CloudManLauncher import get_clusters_pd [as 别名]
def get_cluster_pd(a_key, s_key):
    cloud = Bunch(id='-1',
                  name="NeCTAR",
                  cloud_type='openstack',
                  bucket_default='cloudman-os',
                  region_name='NeCTAR',
                  region_endpoint='nova.rc.nectar.org.au',
                  ec2_port=8773,
                  ec2_conn_path='/services/Cloud',
                  cidr_range='115.146.92.0/22',
                  is_secure=True,
                  s3_host='swift.rc.nectar.org.au',
                  s3_port=8888,
                  s3_conn_path='/')

    cml = CloudManLauncher(a_key, s_key, cloud)
    return cml.get_clusters_pd()
开发者ID:gvlproject,项目名称:gvl.utilities,代码行数:19,代码来源:generate_cleanup_list.py


注:本文中的bioblend.cloudman.launch.CloudManLauncher.get_clusters_pd方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。