本文整理匯總了Python中vnc_api.vnc_api.VncApi.fabric_namespace_create方法的典型用法代碼示例。如果您正苦於以下問題:Python VncApi.fabric_namespace_create方法的具體用法?Python VncApi.fabric_namespace_create怎麽用?Python VncApi.fabric_namespace_create使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類vnc_api.vnc_api.VncApi
的用法示例。
在下文中一共展示了VncApi.fabric_namespace_create方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: SanityBase
# 需要導入模塊: from vnc_api.vnc_api import VncApi [as 別名]
# 或者: from vnc_api.vnc_api.VncApi import fabric_namespace_create [as 別名]
#.........這裏部分代碼省略.........
"Fabric created:\n%s",
pprint.pformat(self._api.obj_to_dict(fab), indent=4))
return fab
# end _create_fabric
def add_mgmt_ip_namespace(self, fab, name, cidrs):
"""add management ip prefixes as fabric namespace"""
ns_name = 'mgmt_ip-' + name
self._logger.info(
'Adding management ip namespace "%s" to fabric "%s" ...',
ns_name, fab.name)
subnets = []
for cidr in cidrs:
ip_prefix = cidr.split('/')
subnets.append({
'ip_prefix': ip_prefix[0],
'ip_prefix_len': ip_prefix[1]
})
ns_fq_name = fab.fq_name + [ns_name]
namespace = FabricNamespace(
name=ns_name,
fq_name=ns_fq_name,
parent_type='fabric',
fabric_namespace_type='IPV4-CIDR',
fabric_namespace_value={
'ipv4_cidr': {
'subnet': subnets
},
}
)
namespace.set_tag_list([{'to': ['label=fabric-management-ip']}])
try:
ns_uuid = self._api.fabric_namespace_create(namespace)
namespace = self._api.fabric_namespace_read(id=ns_uuid)
except RefsExistError:
self._logger.warn(
"Fabric namespace '%s' already exists", ns_name)
namespace = self._api.fabric_namespace_read(fq_name=ns_fq_name)
self._logger.debug(
"Fabric namespace created:\n%s",
pprint.pformat(self._api.obj_to_dict(namespace), indent=4))
return namespace
# end _add_mgmt_ip_namespace
def add_asn_namespace(self, fab, asn):
"""add AS number as fabric namespace"""
ns_name = "asn_%d" % asn
self._logger.info(
'Adding ASN namespace "%s" to fabric "%s" ...',
ns_name, fab.name)
ns_fq_name = fab.fq_name + [ns_name]
namespace = FabricNamespace(
name=ns_name,
fq_name=ns_fq_name,
parent_type='fabric',
fabric_namespace_type='ASN',
fabric_namespace_value={
'asn': {
'asn': [asn]
}
}
)
namespace.set_tag_list([{'to': ['label=fabric-as-number']}])