mirror of
https://github.com/vmware/vsphere-automation-sdk-python.git
synced 2024-11-22 17:39:59 -05:00
aae89a9af0
* Support VMware Cloud on AWS Networking APIs and add a few samples. * Added vsphere_client module to simplify login and API invocation. * Modified existing samples to use vsphere_client. * Update on vm template APIs. Signed-off-by: Tianhao He <het@vmware.com>
80 lines
2.6 KiB
Python
80 lines
2.6 KiB
Python
#!/usr/bin/env python
|
|
|
|
"""
|
|
* *******************************************************
|
|
* Copyright (c) VMware, Inc. 2017, 2018. 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__ = '6.0+'
|
|
|
|
import requests
|
|
|
|
from vmware.vapi.vsphere.client import create_vsphere_client
|
|
|
|
from com.vmware.cis.tagging_client import CategoryModel
|
|
|
|
from samples.vsphere.common.sample_util import process_cli_args
|
|
from samples.vsphere.common import sample_cli
|
|
|
|
|
|
class CertConnect(object):
|
|
"""
|
|
Demonstrates how to Connect to vCenter vAPI service with
|
|
with Valid Cert
|
|
"""
|
|
|
|
def __init__(self):
|
|
parser = sample_cli.build_arg_parser()
|
|
parser.add_argument('-cpath', '--cert_path',
|
|
action='store',
|
|
help='path to a CA_BUNDLE file or directory with certificates of trusted CAs')
|
|
args = parser.parse_args()
|
|
self.args = process_cli_args(args)
|
|
|
|
def run(self):
|
|
print('\n\n#### Example: Login to vCenter server with '
|
|
'Valid Cert Verification')
|
|
|
|
# Create a requests session and load the CA cert
|
|
session = requests.session()
|
|
session.verify = self.args.cert_path
|
|
|
|
# Connect to VAPI
|
|
client = create_vsphere_client(server=self.args.server,
|
|
username=self.args.username,
|
|
password=self.args.password,
|
|
session=session)
|
|
|
|
# List Tag Categories to verify the connection is successful
|
|
print('\nStep 3: Listing the Tag Categories...\n')
|
|
create_spec = client.tagging.Category.CreateSpec()
|
|
create_spec.name = 'TestTag_connect_with_cert'
|
|
create_spec.description = 'TestTagDesc'
|
|
create_spec.cardinality = CategoryModel.Cardinality.MULTIPLE
|
|
create_spec.associable_types = set()
|
|
category_id = client.tagging.Category.create(create_spec)
|
|
assert category_id is not None
|
|
print('Tag category created; Id: {0}\n'.format(category_id))
|
|
|
|
# Delete TagCategory
|
|
client.tagging.Category.delete(category_id)
|
|
|
|
|
|
def main():
|
|
connect_with_cert = CertConnect()
|
|
connect_with_cert.run()
|
|
|
|
|
|
# Start program
|
|
if __name__ == '__main__':
|
|
main()
|