本文整理汇总了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
示例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