1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
|
"""List all records in a zone."""
# :license: MIT, see LICENSE for more details.
import click
import SoftLayer
from SoftLayer.CLI import environment
from SoftLayer.CLI import formatting
from SoftLayer.CLI import helpers
# pylint: disable=redefined-builtin, redefined-argument-from-local
@click.command(cls=SoftLayer.CLI.command.SLCommand, )
@click.argument('zone')
@click.option('--data', help='Record data, such as an IP address')
@click.option('--record', help='Host record, such as www')
@click.option('--ttl', type=click.INT,
help='TTL value in seconds, such as 86400')
@click.option('--type', 'record_type', help='Record type, such as A or CNAME')
@environment.pass_env
def cli(env, zone, data, record, ttl, record_type):
"""List all records in a zone.
Example::
slcli dns record-list ibm.com --record elasticsearch --type A --ttl 900
This command lists all A records under the zone: ibm.com, and \
filters by host is elasticsearch and ttl is 900 seconds.
"""
manager = SoftLayer.DNSManager(env.client)
table = formatting.Table(['id', 'record', 'type', 'ttl', 'data'])
table.align = 'l'
zone_id = helpers.resolve_id(manager.resolve_ids, zone, name='zone')
records = manager.get_records(zone_id, record_type=record_type, host=record, ttl=ttl, data=data)
for the_record in records:
table.add_row([
the_record.get('id'),
the_record.get('host', ''),
the_record.get('type').upper(),
the_record.get('ttl'),
the_record.get('data')
])
env.fout(table)
|