本文整理汇总了Python中edge.Edge.get_schema_object方法的典型用法代码示例。如果您正苦于以下问题:Python Edge.get_schema_object方法的具体用法?Python Edge.get_schema_object怎么用?Python Edge.get_schema_object使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类edge.Edge
的用法示例。
在下文中一共展示了Edge.get_schema_object方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1:
# 需要导入模块: from edge import Edge [as 别名]
# 或者: from edge.Edge import get_schema_object [as 别名]
'clisettings': {'remoteaccess': False, 'username': 'admin', 'password': 'default'},
'autoconfiguration': {'enabled': True, 'rulepriority': 'high'},
'querydaemon': {'enabled': True, 'port': 5666},
'vnics': [{'label': 'vNic_0', 'name': 'NIC-1',
'addressgroups': [{
'primaryaddress': '192.168.0.1',
'subnetmask': '255.255.255.224',
'subnetprefixlength': 27
}],
'mtu': 1500, 'type': 'internal', 'isconnected': True, 'index': 0,
'portgroupid': 'dvportgroup-164',
'enableproxyarp': False, 'enablesendredirects': False
}],
}
edge_schema_object = edge_client.get_schema_object(py_dict)
result_obj_1 = edge_client.create(edge_schema_object)
print result_obj_1.status_code
edge_schema = edge_client.read()
edge_schema.print_object()
edge_client.get_ip()
#Configure DHCP
dhcp_py_dict = {
'enabled': True,
'logging': {'loglevel': 'info', 'enable': False},
'ippools': [
{
'autoconfiguredns': True,