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>
43 lines
1.3 KiB
Python
43 lines
1.3 KiB
Python
"""
|
|
* *******************************************************
|
|
* Copyright (c) VMware, Inc. 2013, 2016. 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.'
|
|
|
|
import ssl
|
|
import requests
|
|
|
|
|
|
def get_unverified_context():
|
|
"""
|
|
Get an unverified ssl context. Used to disable the server certificate
|
|
verification.
|
|
@return: unverified ssl context.
|
|
"""
|
|
context = None
|
|
if hasattr(ssl, '_create_unverified_context'):
|
|
context = ssl._create_unverified_context()
|
|
return context
|
|
|
|
|
|
def get_unverified_session():
|
|
"""
|
|
Get a requests session with cert verification disabled.
|
|
Also disable the insecure warnings message.
|
|
Note this is not recommended in production code.
|
|
@return: a requests session with verification disabled.
|
|
"""
|
|
session = requests.session()
|
|
session.verify = False
|
|
requests.packages.urllib3.disable_warnings()
|
|
return session
|