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


Python meta_db_v2.get_flavor_by_router函数代码示例

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


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

示例1: get_router

 def get_router(self, context, id, fields=None):
     flavor = meta_db_v2.get_flavor_by_router(context.session, id)
     plugin = self._get_l3_plugin(flavor)
     router = plugin.get_router(context, id, fields)
     if not fields or ext_flavor.FLAVOR_ROUTER in fields:
         self._extend_router_dict(context, router)
     return router
开发者ID:chenglong7997,项目名称:neutron,代码行数:7,代码来源:meta_neutron_plugin.py

示例2: delete_router

 def delete_router(self, context, id):
     flavor = meta_db_v2.get_flavor_by_router(context.session, id)
     plugin = self._get_l3_plugin(flavor)
     return plugin.delete_router(context, id)
开发者ID:chenglong7997,项目名称:neutron,代码行数:4,代码来源:meta_neutron_plugin.py

示例3: _get_flavor_by_router_id

 def _get_flavor_by_router_id(self, context, router_id):
     return meta_db_v2.get_flavor_by_router(context.session, router_id)
开发者ID:chenglong7997,项目名称:neutron,代码行数:2,代码来源:meta_neutron_plugin.py


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