本文整理汇总了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)
示例2: job_executions_status
def job_executions_status(job_execution_id):
return u.to_wrapped_dict(api.get_job_execution_status, job_execution_id)
示例3: job_binary_get
def job_binary_get(job_binary_id):
return u.to_wrapped_dict(api.get_job_binary, job_binary_id)
示例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)
示例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)
示例6: job_update
def job_update(job_id, data):
return u.to_wrapped_dict(api.update_job, job_id, data)
示例7: data_source_get
def data_source_get(data_source_id):
return u.to_wrapped_dict(api.get_data_source, data_source_id)
示例8: cluster_templates_get
def cluster_templates_get(cluster_template_id):
return u.to_wrapped_dict(api.get_cluster_template, cluster_template_id)
示例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)
示例10: clusters_update
def clusters_update(cluster_id, data):
return u.to_wrapped_dict(api.update_cluster, cluster_id, data)
示例11: clusters_scale
def clusters_scale(cluster_id, data):
return u.to_wrapped_dict(api.scale_cluster, cluster_id, data)
示例12: job_executions
def job_executions(job_id):
return u.to_wrapped_dict(api.get_job_execution, job_id)
示例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)
示例14: job_executions_cancel
def job_executions_cancel(job_execution_id):
return u.to_wrapped_dict(api.cancel_job_execution, job_execution_id)
示例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)