mirror of
https://github.com/vmware/vsphere-automation-sdk-python.git
synced 2024-11-22 09:39:58 -05:00
582006c9b8
Signed-Off-By: Anusha Hegde <anushah@vmware.com>
50 lines
1.7 KiB
Python
50 lines
1.7 KiB
Python
#!/usr/bin/env python
|
|
|
|
"""
|
|
* *******************************************************
|
|
* Copyright (c) VMware, Inc. 2020. All Rights Reserved.
|
|
* SPDX-License-Identifier: MIT
|
|
* *******************************************************
|
|
*
|
|
* DISCLAIMER. THIS PROGRAM IS PROVIDED TO YOU "AS IS" WITHOUT
|
|
* WARRANTIES OR CONDITIONS OF ANY KIND, WHETHER ORAL OR WRITTEN,
|
|
* EXPRESS OR IMPLIED. THE AUTHOR SPECIFICALLY DISCLAIMS ANY IMPLIED
|
|
* WARRANTIES OR CONDITIONS OF MERCHANTABILITY, SATISFACTORY QUALITY,
|
|
* NON-INFRINGEMENT AND FITNESS FOR A PARTICULAR PURPOSE.
|
|
"""
|
|
|
|
__author__ = 'VMware, Inc.'
|
|
__vcenter_version__ = '7.0+'
|
|
|
|
from vmware.vapi.vsphere.client import create_vsphere_client
|
|
from samples.vsphere.common import (sample_cli, sample_util)
|
|
from samples.vsphere.common.ssl_helper import get_unverified_session
|
|
|
|
"""
|
|
Description: Demonstrates getting the vCenter Server or Platform service
|
|
controler node information.
|
|
|
|
Sample Prerequisites:
|
|
- The user invoking the API should have the System.Read privilege.
|
|
"""
|
|
|
|
parser = sample_cli.build_arg_parser()
|
|
|
|
parser.add_argument('--node',
|
|
required=True,
|
|
help='Identifier of the vCenter or Platform Services'
|
|
' Controller node. Identifier should be DNS'
|
|
' resolvable name of the node')
|
|
|
|
args = sample_util.process_cli_args(parser.parse_args())
|
|
|
|
session = get_unverified_session() if args.skipverification else None
|
|
|
|
# Login to vCenter
|
|
vsphere_client = create_vsphere_client(server=args.server,
|
|
username=args.username,
|
|
password=args.password,
|
|
session=session)
|
|
|
|
print(vsphere_client.vcenter.topology.Nodes.get(args.node))
|