本文整理汇总了Python中SoftLayer.CLI.Table.align['value']方法的典型用法代码示例。如果您正苦于以下问题:Python Table.align['value']方法的具体用法?Python Table.align['value']怎么用?Python Table.align['value']使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类SoftLayer.CLI.Table
的用法示例。
在下文中一共展示了Table.align['value']方法的13个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: list_zone
# 需要导入模块: from SoftLayer.CLI import Table [as 别名]
# 或者: from SoftLayer.CLI.Table import align['value'] [as 别名]
def list_zone(client, zone, args):
manager = DNSManager(client)
t = Table([
"record",
"type",
"ttl",
"value",
])
t.align['ttl'] = 'l'
t.align['record'] = 'r'
t.align['value'] = 'l'
zone_id = resolve_id(manager.resolve_ids, args['<zone>'], name='zone')
try:
records = manager.get_records(
zone_id,
type=args.get('--type'),
host=args.get('--record'),
ttl=args.get('--ttl'),
data=args.get('--data'),
)
except DNSZoneNotFound:
raise CLIAbort("No zone found matching: %s" % args['<zone>'])
for rr in records:
t.add_row([
rr['host'],
rr['type'].upper(),
rr['ttl'],
rr['data']
])
return t
示例2: topic_table
# 需要导入模块: from SoftLayer.CLI import Table [as 别名]
# 或者: from SoftLayer.CLI.Table import align['value'] [as 别名]
def topic_table(topic):
t = Table(['property', 'value'])
t.align['property'] = 'r'
t.align['value'] = 'l'
t.add_row(['name', topic['name']])
t.add_row(['tags', listing(topic['tags'] or [])])
return t
示例3: topic_table
# 需要导入模块: from SoftLayer.CLI import Table [as 别名]
# 或者: from SoftLayer.CLI.Table import align['value'] [as 别名]
def topic_table(topic):
""" Returns a table with details about a topic """
table = Table(['property', 'value'])
table.align['property'] = 'r'
table.align['value'] = 'l'
table.add_row(['name', topic['name']])
table.add_row(['tags', listing(topic['tags'] or [])])
return table
示例4: subscription_table
# 需要导入模块: from SoftLayer.CLI import Table [as 别名]
# 或者: from SoftLayer.CLI.Table import align['value'] [as 别名]
def subscription_table(sub):
t = Table(['property', 'value'])
t.align['property'] = 'r'
t.align['value'] = 'l'
t.add_row(['id', sub['id']])
t.add_row(['endpoint_type', sub['endpoint_type']])
for k, v in sub['endpoint'].items():
t.add_row([k, v])
return t
示例5: subscription_table
# 需要导入模块: from SoftLayer.CLI import Table [as 别名]
# 或者: from SoftLayer.CLI.Table import align['value'] [as 别名]
def subscription_table(sub):
""" Returns a table with details about a subscription """
table = Table(['property', 'value'])
table.align['property'] = 'r'
table.align['value'] = 'l'
table.add_row(['id', sub['id']])
table.add_row(['endpoint_type', sub['endpoint_type']])
for key, val in sub['endpoint'].items():
table.add_row([key, val])
return table
示例6: message_table
# 需要导入模块: from SoftLayer.CLI import Table [as 别名]
# 或者: from SoftLayer.CLI.Table import align['value'] [as 别名]
def message_table(message):
t = Table(['property', 'value'])
t.align['property'] = 'r'
t.align['value'] = 'l'
t.add_row(['id', message['id']])
t.add_row(['initial_entry_time', message['initial_entry_time']])
t.add_row(['visibility_delay', message['visibility_delay']])
t.add_row(['visibility_interval', message['visibility_interval']])
t.add_row(['fields', message['fields']])
return [t, message['body']]
示例7: message_table
# 需要导入模块: from SoftLayer.CLI import Table [as 别名]
# 或者: from SoftLayer.CLI.Table import align['value'] [as 别名]
def message_table(message):
""" Returns a table with details about a message """
table = Table(['property', 'value'])
table.align['property'] = 'r'
table.align['value'] = 'l'
table.add_row(['id', message['id']])
table.add_row(['initial_entry_time', message['initial_entry_time']])
table.add_row(['visibility_delay', message['visibility_delay']])
table.add_row(['visibility_interval', message['visibility_interval']])
table.add_row(['fields', message['fields']])
return [table, message['body']]
示例8: queue_table
# 需要导入模块: from SoftLayer.CLI import Table [as 别名]
# 或者: from SoftLayer.CLI.Table import align['value'] [as 别名]
def queue_table(queue):
t = Table(['property', 'value'])
t.align['property'] = 'r'
t.align['value'] = 'l'
t.add_row(['name', queue['name']])
t.add_row(['message_count', queue['message_count']])
t.add_row(['visible_message_count', queue['visible_message_count']])
t.add_row(['tags', listing(queue['tags'] or [])])
t.add_row(['expiration', queue['expiration']])
t.add_row(['visibility_interval', queue['visibility_interval']])
return t
示例9: queue_table
# 需要导入模块: from SoftLayer.CLI import Table [as 别名]
# 或者: from SoftLayer.CLI.Table import align['value'] [as 别名]
def queue_table(queue):
""" Returns a table with details about a queue """
table = Table(['property', 'value'])
table.align['property'] = 'r'
table.align['value'] = 'l'
table.add_row(['name', queue['name']])
table.add_row(['message_count', queue['message_count']])
table.add_row(['visible_message_count', queue['visible_message_count']])
table.add_row(['tags', listing(queue['tags'] or [])])
table.add_row(['expiration', queue['expiration']])
table.add_row(['visibility_interval', queue['visibility_interval']])
return table
示例10: list_zone
# 需要导入模块: from SoftLayer.CLI import Table [as 别名]
# 或者: from SoftLayer.CLI.Table import align['value'] [as 别名]
def list_zone(self, args):
""" list records for a particular zone """
manager = DNSManager(self.client)
table = Table([
"id",
"record",
"type",
"ttl",
"value",
])
table.align['ttl'] = 'l'
table.align['record'] = 'r'
table.align['value'] = 'l'
zone_id = resolve_id(manager.resolve_ids, args['<zone>'], name='zone')
try:
records = manager.get_records(
zone_id,
record_type=args.get('--type'),
host=args.get('--record'),
ttl=args.get('--ttl'),
data=args.get('--data'),
)
except DNSZoneNotFound:
raise CLIAbort("No zone found matching: %s" % args['<zone>'])
for record in records:
table.add_row([
record['id'],
record['host'],
record['type'].upper(),
record['ttl'],
record['data']
])
return table
示例11: execute
# 需要导入模块: from SoftLayer.CLI import Table [as 别名]
# 或者: from SoftLayer.CLI.Table import align['value'] [as 别名]
#.........这里部分代码省略.........
if os_price:
order['os'] = os_price
else:
raise CLIAbort('Invalid operating system specified.')
order['location'] = args['--datacenter'] or 'FIRST_AVAILABLE'
# Set the disk size
disk_prices = []
for disk in args.get('--disk'):
disk_price = self._get_price_id_from_options(bmi_options, 'disk',
disk)
if disk_price:
disk_prices.append(disk_price)
if not disk_prices:
disk_prices.append(self._get_default_value(bmi_options, 'disk0'))
order['disks'] = disk_prices
# Set the port speed
port_speed = args.get('--network') or 100
nic_price = self._get_price_id_from_options(bmi_options, 'nic',
str(port_speed))
if nic_price:
order['port_speed'] = nic_price
else:
raise CLIAbort('Invalid network speed specified.')
# Get the SSH keys
if args.get('--key'):
keys = []
for key in args.get('--key'):
key_id = resolve_id(SshKeyManager(self.client).resolve_ids,
key, 'SshKey')
keys.append(key_id)
order['ssh_keys'] = keys
if args.get('--vlan_public'):
order['public_vlan'] = args['--vlan_public']
if args.get('--vlan_private'):
order['private_vlan'] = args['--vlan_private']
# Begin output
table = Table(['Item', 'cost'])
table.align['Item'] = 'r'
table.align['cost'] = 'r'
if args.get('--test'):
result = mgr.verify_order(**order)
total_monthly = 0.0
total_hourly = 0.0
for price in result['prices']:
monthly_fee = float(price.get('recurringFee', 0.0))
hourly_fee = float(price.get('hourlyRecurringFee', 0.0))
total_monthly += monthly_fee
total_hourly += hourly_fee
if args.get('--hourly'):
rate = "%.2f" % hourly_fee
else:
rate = "%.2f" % monthly_fee
table.add_row([price['item']['description'], rate])
if args.get('--hourly'):
total = total_hourly
else:
total = total_monthly
billing_rate = 'monthly'
if args.get('--hourly'):
billing_rate = 'hourly'
table.add_row(['Total %s cost' % billing_rate, "%.2f" % total])
output = SequentialOutput()
output.append(table)
output.append(FormattedItem(
'',
' -- ! Prices reflected here are retail and do not '
'take account level discounts and are not guaranteed.')
)
elif args['--really'] or confirm(
"This action will incur charges on your account. Continue?"):
result = mgr.place_order(**order)
table = KeyValueTable(['name', 'value'])
table.align['name'] = 'r'
table.align['value'] = 'l'
table.add_row(['id', result['orderId']])
table.add_row(['created', result['orderDate']])
output = table
else:
raise CLIAbort('Aborting bare metal instance order.')
return output
示例12: execute
# 需要导入模块: from SoftLayer.CLI import Table [as 别名]
# 或者: from SoftLayer.CLI.Table import align['value'] [as 别名]
def execute(self, args):
update_with_template_args(args)
cci = CCIManager(self.client)
self._update_with_like_args(args)
# Disks will be a comma-separated list. Let's make it a real list.
if isinstance(args.get('--disk'), str):
args['--disk'] = args.get('--disk').split(',')
# SSH keys may be a comma-separated list. Let's make it a real list.
if isinstance(args.get('--key'), str):
args['--key'] = args.get('--key').split(',')
self._validate_args(args)
# Do not create CCI with --test or --export
do_create = not (args['--export'] or args['--test'])
table = Table(['Item', 'cost'])
table.align['Item'] = 'r'
table.align['cost'] = 'r'
data = self._parse_create_args(args)
output = []
if args.get('--test'):
result = cci.verify_create_instance(**data)
total_monthly = 0.0
total_hourly = 0.0
table = Table(['Item', 'cost'])
table.align['Item'] = 'r'
table.align['cost'] = 'r'
for price in result['prices']:
total_monthly += float(price.get('recurringFee', 0.0))
total_hourly += float(price.get('hourlyRecurringFee', 0.0))
if args.get('--hourly'):
rate = "%.2f" % float(price['hourlyRecurringFee'])
else:
rate = "%.2f" % float(price['recurringFee'])
table.add_row([price['item']['description'], rate])
if args.get('--hourly'):
total = total_hourly
else:
total = total_monthly
billing_rate = 'monthly'
if args.get('--hourly'):
billing_rate = 'hourly'
table.add_row(['Total %s cost' % billing_rate, "%.2f" % total])
output.append(table)
output.append(FormattedItem(
None,
' -- ! Prices reflected here are retail and do not '
'take account level discounts and are not guaranteed.')
)
if args['--export']:
export_file = args.pop('--export')
export_to_template(export_file, args, exclude=['--wait', '--test'])
return 'Successfully exported options to a template file.'
if do_create:
if args['--really'] or confirm(
"This action will incur charges on your account. "
"Continue?"):
result = cci.create_instance(**data)
table = KeyValueTable(['name', 'value'])
table.align['name'] = 'r'
table.align['value'] = 'l'
table.add_row(['id', result['id']])
table.add_row(['created', result['createDate']])
table.add_row(['guid', result['globalIdentifier']])
output.append(table)
if args.get('--wait'):
ready = cci.wait_for_ready(
result['id'], int(args.get('--wait') or 1))
table.add_row(['ready', ready])
else:
raise CLIAbort('Aborting CCI order.')
return output
示例13: execute
# 需要导入模块: from SoftLayer.CLI import Table [as 别名]
# 或者: from SoftLayer.CLI.Table import align['value'] [as 别名]
#.........这里部分代码省略.........
"cpus": args['--cpu'],
"domain": args['--domain'],
"hostname": args['--hostname'],
"private": args['--private'],
"local_disk": True,
}
try:
memory = int(args['--memory'])
if memory < 1024:
memory = memory * 1024
except ValueError:
unit = args['--memory'][-1]
memory = int(args['--memory'][0:-1])
if unit in ['G', 'g']:
memory = memory * 1024
if unit in ['T', 'r']:
memory = memory * 1024 * 1024
data["memory"] = memory
if args['--monthly']:
data["hourly"] = False
if args.get('--os'):
data["os_code"] = args['--os']
if args.get('--image'):
data["image_id"] = args['--image']
if args.get('--datacenter'):
data["datacenter"] = args['--datacenter']
if args.get('--network'):
data['nic_speed'] = args.get('--network')
if args.get('--userdata'):
data['userdata'] = args['--userdata']
elif args.get('userfile'):
f = open(args['--userfile'], 'r')
try:
data['userdata'] = f.read()
finally:
f.close()
t = Table(['Item', 'cost'])
t.align['Item'] = 'r'
t.align['cost'] = 'r'
if args.get('--test'):
result = cci.verify_create_instance(**data)
total_monthly = 0.0
total_hourly = 0.0
for price in result['prices']:
total_monthly += float(price.get('recurringFee', 0.0))
total_hourly += float(price.get('hourlyRecurringFee', 0.0))
if args.get('--hourly'):
rate = "%.2f" % float(price['hourlyRecurringFee'])
else:
rate = "%.2f" % float(price['recurringFee'])
t.add_row([price['item']['description'], rate])
if args.get('--hourly'):
total = total_hourly
else:
total = total_monthly
billing_rate = 'monthly'
if args.get('--hourly'):
billing_rate = 'hourly'
t.add_row(['Total %s cost' % billing_rate, "%.2f" % total])
output = SequentialOutput(blanks=False)
output.append(t)
output.append(FormattedItem(
'',
' -- ! Prices reflected here are retail and do not '
'take account level discounts and are not guarenteed.')
)
elif args['--really'] or confirm(
"This action will incur charges on your account. Continue?"):
result = cci.create_instance(**data)
t = Table(['name', 'value'])
t.align['name'] = 'r'
t.align['value'] = 'l'
t.add_row(['id', result['id']])
t.add_row(['created', result['createDate']])
t.add_row(['guid', result['globalIdentifier']])
output = t
else:
raise CLIAbort('Aborting CCI order.')
if args.get('--wait') or 0 and not args.get('--test'):
ready = cci.wait_for_transaction(
result['id'], int(args.get('--wait') or 1))
t.add_row(['ready', ready])
return output