mirror of
https://github.com/vmware/vsphere-automation-sdk-python.git
synced 2024-11-22 17:39:59 -05:00
ba26a070a6
Signed-off-by: Tianhao He <het@vmware.com>
43 lines
1.4 KiB
Python
43 lines
1.4 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.'
|
|
__copyright__ = 'Copyright 2013, 2016 VMware, Inc. All rights reserved.'
|
|
|
|
from samples.vsphere.common.service_manager import ServiceManager
|
|
|
|
|
|
class ServiceManagerFactory(object):
|
|
"""
|
|
Factory class for getting service manager for a management node.
|
|
"""
|
|
service_manager = None
|
|
|
|
@classmethod
|
|
def get_service_manager(cls, server, username, password, skip_verification):
|
|
cls.service_manager = ServiceManager(server,
|
|
username,
|
|
password,
|
|
skip_verification)
|
|
cls.service_manager.connect()
|
|
return cls.service_manager
|
|
|
|
@classmethod
|
|
def disconnect(cls):
|
|
if cls.service_manager:
|
|
cls.service_manager.disconnect()
|
|
|
|
|
|
import atexit
|
|
atexit.register(ServiceManagerFactory.disconnect)
|