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


Python RunnerType.get_by_id方法代码示例

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


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

示例1: __get_by_id

# 需要导入模块: from st2common.persistence.runner import RunnerType [as 别名]
# 或者: from st2common.persistence.runner.RunnerType import get_by_id [as 别名]
 def __get_by_id(id):
     try:
         return RunnerType.get_by_id(id)
     except (ValueError, ValidationError) as e:
         msg = 'Database lookup for id="%s" resulted in exception. %s' % (id, e)
         LOG.exception(msg)
         abort(http_client.NOT_FOUND, msg)
开发者ID:AlexeyDeyneko,项目名称:st2,代码行数:9,代码来源:runnertypes.py

示例2: get_runnertype_by_id

# 需要导入模块: from st2common.persistence.runner import RunnerType [as 别名]
# 或者: from st2common.persistence.runner.RunnerType import get_by_id [as 别名]
def get_runnertype_by_id(runnertype_id):
    """
        Get RunnerType by id.

        On error, raise StackStormDBObjectNotFoundError
    """
    try:
        runnertype = RunnerType.get_by_id(runnertype_id)
    except (ValueError, ValidationError) as e:
        LOG.warning('Database lookup for runnertype with id="%s" resulted in ' "exception: %s", runnertype_id, e)
        raise StackStormDBObjectNotFoundError("Unable to find runnertype with " 'id="%s"' % runnertype_id)

    return runnertype
开发者ID:ipv1337,项目名称:st2,代码行数:15,代码来源:action_db.py


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