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


Python api.to_wrapped_dict函数代码示例

本文整理汇总了Python中sahara.utils.api.to_wrapped_dict函数的典型用法代码示例。如果您正苦于以下问题:Python to_wrapped_dict函数的具体用法?Python to_wrapped_dict怎么用?Python to_wrapped_dict使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。


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

示例1: job_binary_internal_update

def job_binary_internal_update(job_binary_internal_id, data):
    return u.to_wrapped_dict(
        api.update_job_binary_internal, job_binary_internal_id, data)
开发者ID:frgaudet,项目名称:sahara,代码行数:3,代码来源:v11.py

示例2: job_executions_status

def job_executions_status(job_execution_id):
    return u.to_wrapped_dict(api.get_job_execution_status, job_execution_id)
开发者ID:frgaudet,项目名称:sahara,代码行数:2,代码来源:v11.py

示例3: job_binary_get

def job_binary_get(job_binary_id):
    return u.to_wrapped_dict(api.get_job_binary, job_binary_id)
开发者ID:frgaudet,项目名称:sahara,代码行数:2,代码来源:v11.py

示例4: job_binary_internal_get

def job_binary_internal_get(job_binary_internal_id):
    return u.to_wrapped_dict(
        api.get_job_binary_internal, job_binary_internal_id)
开发者ID:frgaudet,项目名称:sahara,代码行数:3,代码来源:v11.py

示例5: node_group_templates_get

def node_group_templates_get(node_group_template_id):
    return u.to_wrapped_dict(
        api.get_node_group_template, node_group_template_id)
开发者ID:frgaudet,项目名称:sahara,代码行数:3,代码来源:node_group_templates.py

示例6: job_update

def job_update(job_id, data):
    return u.to_wrapped_dict(api.update_job, job_id, data)
开发者ID:frgaudet,项目名称:sahara,代码行数:2,代码来源:v11.py

示例7: data_source_get

def data_source_get(data_source_id):
    return u.to_wrapped_dict(api.get_data_source, data_source_id)
开发者ID:frgaudet,项目名称:sahara,代码行数:2,代码来源:v11.py

示例8: cluster_templates_get

def cluster_templates_get(cluster_template_id):
    return u.to_wrapped_dict(api.get_cluster_template, cluster_template_id)
开发者ID:frgaudet,项目名称:sahara,代码行数:2,代码来源:cluster_templates.py

示例9: clusters_get

def clusters_get(cluster_id):
    data = u.get_request_args()
    show_events = six.text_type(
        data.get('show_progress', 'false')).lower() == 'true'
    return u.to_wrapped_dict(api.get_cluster, cluster_id, show_events)
开发者ID:gongwayne,项目名称:Openstack,代码行数:5,代码来源:clusters.py

示例10: clusters_update

def clusters_update(cluster_id, data):
    return u.to_wrapped_dict(api.update_cluster, cluster_id, data)
开发者ID:gongwayne,项目名称:Openstack,代码行数:2,代码来源:clusters.py

示例11: clusters_scale

def clusters_scale(cluster_id, data):
    return u.to_wrapped_dict(api.scale_cluster, cluster_id, data)
开发者ID:gongwayne,项目名称:Openstack,代码行数:2,代码来源:clusters.py

示例12: job_executions

def job_executions(job_id):
    return u.to_wrapped_dict(api.get_job_execution, job_id)
开发者ID:openstack,项目名称:sahara,代码行数:2,代码来源:v11.py

示例13: node_group_templates_update

def node_group_templates_update(node_group_template_id, data):
    return u.to_wrapped_dict(
        api.update_node_group_template, node_group_template_id, data)
开发者ID:frgaudet,项目名称:sahara,代码行数:3,代码来源:node_group_templates.py

示例14: job_executions_cancel

def job_executions_cancel(job_execution_id):
    return u.to_wrapped_dict(api.cancel_job_execution, job_execution_id)
开发者ID:frgaudet,项目名称:sahara,代码行数:2,代码来源:v11.py

示例15: data_source_update

def data_source_update(data_source_id, data):
    return u.to_wrapped_dict(api.data_source_update, data_source_id, data)
开发者ID:frgaudet,项目名称:sahara,代码行数:2,代码来源:v11.py


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