mirror of
https://github.com/vmware/vsphere-automation-sdk-python.git
synced 2024-11-22 17:39:59 -05:00
54 lines
1.7 KiB
Python
54 lines
1.7 KiB
Python
"""
|
|
* *******************************************************
|
|
* Copyright (c) VMware, Inc. 2016. All Rights Reserved.
|
|
* *******************************************************
|
|
*
|
|
* 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.'
|
|
__copyright__ = 'Copyright 2016 VMware, Inc. All rights reserved.'
|
|
|
|
import argparse
|
|
|
|
|
|
def build_arg_parser():
|
|
"""
|
|
Builds a standard argument parser with arguments for talking to vCenter
|
|
|
|
-s server
|
|
-u username
|
|
-p password
|
|
-c cleanup
|
|
-v skip_verification
|
|
|
|
"""
|
|
parser = argparse.ArgumentParser(
|
|
description='Standard Arguments for talking to vCenter')
|
|
|
|
parser.add_argument('-s', '--server',
|
|
action='store',
|
|
help='vSphere service IP to connect to')
|
|
|
|
parser.add_argument('-u', '--username',
|
|
action='store',
|
|
help='Username to use when connecting to vc')
|
|
|
|
parser.add_argument('-p', '--password',
|
|
action='store',
|
|
help='Password to use when connecting to vc')
|
|
|
|
parser.add_argument('-c', '--cleanup',
|
|
action='store_true',
|
|
help='Clean up after sample run. ')
|
|
|
|
parser.add_argument('-v', '--skipverification',
|
|
action='store_true',
|
|
help='Verify server certificate when connecting to vc.')
|
|
|
|
return parser
|