本文整理汇总了Python中pynipap.Pool.customer_id方法的典型用法代码示例。如果您正苦于以下问题:Python Pool.customer_id方法的具体用法?Python Pool.customer_id怎么用?Python Pool.customer_id使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类pynipap.Pool
的用法示例。
在下文中一共展示了Pool.customer_id方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: str
# 需要导入模块: from pynipap import Pool [as 别名]
# 或者: from pynipap.Pool import customer_id [as 别名]
if r['vrf'] is not None:
p.vrf = vrfs[r['vrf'].strip()]
elif r['schema'] in s_vrfs:
p.vrf = s_vrfs[r['schema']]
# the rest of the prefix attributes...
p.prefix = r['prefix']
p.description = r['description']
p.comment = r['comment']
p.node = r['node']
if r['pool'] is not None:
p.pool = pools[r['pool']]
p.type = r['type']
p.country = r['country']
p.order_id = r['order_id']
p.customer_id = r['customer_id']
p.external_key = r['external_key']
p.alarm_priority = r['alarm_priority']
p.monitor = r['monitor']
try:
p.save()
except NipapError, e:
print "ERR: %s" % str(e),
print "Prefix: pref: %s old_id: %d" % (p.prefix, r['id'])
i += 1
if i % 500 == 0:
print "%.1f pps" % (500/(time.time() - t))
t = time.time()