• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

Python api.to_wrapped_dict函数代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

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



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


示例16: job_executions_update

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


示例17: job_get

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


示例18: cluster_templates_update

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


示例19: plugins_convert_to_cluster_template

def plugins_convert_to_cluster_template(plugin_name, version, name, data):
    return u.to_wrapped_dict(
        api.convert_to_cluster_template, plugin_name, version, name, data)
开发者ID:egafford,项目名称:sahara,代码行数:3,代码来源:v10.py



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


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
Python cluster_progress_ops.add_provisioning_step函数代码示例发布时间:2022-05-27
下一篇:
Python api.render函数代码示例发布时间:2022-05-27
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap