本文整理汇总了Python中opserver.opserver_util.OpServerUtils.uve_attr_flatten方法的典型用法代码示例。如果您正苦于以下问题:Python OpServerUtils.uve_attr_flatten方法的具体用法?Python OpServerUtils.uve_attr_flatten怎么用?Python OpServerUtils.uve_attr_flatten使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类opserver.opserver_util.OpServerUtils
的用法示例。
在下文中一共展示了OpServerUtils.uve_attr_flatten方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_href_agg
# 需要导入模块: from opserver.opserver_util import OpServerUtils [as 别名]
# 或者: from opserver.opserver_util.OpServerUtils import uve_attr_flatten [as 别名]
def test_href_agg(self):
print "*** Running test_href_agg ***"
uvevn = MakeUVEVirtualNetwork(None, "abc-corp:vn-00", "10.10.10.10", ifs=["host1:eth0"])
pa = ParallelAggregator(uvevn, {"ObjectIf": "if"})
res = pa.aggregate("abc-corp:vn-00", True, "127.0.0.1:8081")
print json.dumps(res, indent=4, sort_keys=True)
uvetest = MakeUVEVirtualNetwork(
None,
"abc-corp:vn-00",
"10.10.10.10",
ifs=[{"name": "host1:eth0", "href": "127.0.0.1:8081/analytics/uves/if/host1:eth0?cfilt=mystruct"}],
)
cn = OpServerUtils.uve_attr_flatten(uvetest["abc-corp:vn-00"]["UVEVirtualNetwork"]["ifs"]["10.10.10.10"])
self.assertEqual(cn, res["UVEVirtualNetwork"]["ifs"])