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


Python DMUtils.groups_comment方法代码示例

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


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

示例1: prepare_groups

# 需要导入模块: from dm_utils import DMUtils [as 别名]
# 或者: from dm_utils.DMUtils import groups_comment [as 别名]
 def prepare_groups(self, is_delete=False):
     groups = Groups()
     if is_delete:
         return groups
     groups.set_comment(DMUtils.groups_comment())
     groups.set_routing_instances(self.ri_config)
     groups.set_interfaces(self.interfaces_config)
     groups.set_services(self.services_config)
     groups.set_policy_options(self.policy_config)
     groups.set_firewall(self.firewall_config)
     groups.set_forwarding_options(self.forwarding_options_config)
     groups.set_routing_options(self.global_routing_options_config)
     groups.set_protocols(self.proto_config)
     self.add_product_specific_config(groups)
     return groups
开发者ID:Juniper,项目名称:contrail-controller,代码行数:17,代码来源:juniper_conf.py

示例2: prepare_conf

# 需要导入模块: from dm_utils import DMUtils [as 别名]
# 或者: from dm_utils.DMUtils import groups_comment [as 别名]
    def prepare_conf(self, is_delete=False):
        device = Device()
        device.set_comment(DMUtils.groups_comment())
        device.set_system(self.system_config)
        if is_delete:
            return device

        device.set_evpn(self.evpn)
        device.set_bgp(self.get_values_sorted_by_key(self.bgp_map))

        pis = []
        for pi, li_map in self.get_values_sorted_by_key(self.pi_map):
            pi.set_logical_interfaces(self.get_values_sorted_by_key(li_map))
            pis.append(pi)

        device.set_physical_interfaces(pis)
        device.set_routing_instances(self.get_values_sorted_by_key(self.ri_map))
        device.set_vlans(self.get_values_sorted_by_key(self.vlan_map))
        device.set_firewall(self.firewall_config)
        return device
开发者ID:rombie,项目名称:contrail-controller,代码行数:22,代码来源:ansible_conf.py


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