Example #1
0
def dc_ds(s, opt):
    dc = dc_get(s, opt['<name>'])
    if not dc:
        return

    datastores = dc.ds()
    ds_print_details(datastores)
Example #2
0
def host_ds(s, opt):
    host = host_get(s, opt['<name>'])
    if not host:
        return

    datastores = host.ds()
    ds_print_details(datastores)
Example #3
0
def cluster_ds(s, opt):
    cluster = cluster_get(s, opt['<name>'])
    if not cluster:
        return

    datastores = cluster.ds()
    ds_print_details(datastores)
Example #4
0
def host_ds(s, opt):
    host = host_get(s, opt['<name>'])
    if not host:
        return

    datastores = host.ds()
    ds_print_details(datastores)
Example #5
0
def cluster_ds(s, opt):
    cluster = cluster_get(s, opt['<name>'])
    if not cluster:
        return

    datastores = cluster.ds()
    ds_print_details(datastores)
Example #6
0
def dc_ds(s, opt):
    dc = dc_get(s, opt['<name>'])
    if not dc:
        return

    datastores = dc.ds()
    ds_print_details(datastores)