mirror of
https://github.com/vmware/vsphere-automation-sdk-python.git
synced 2024-11-22 17:39:59 -05:00
582006c9b8
Signed-Off-By: Anusha Hegde <anushah@vmware.com>
57 lines
1.8 KiB
Python
57 lines
1.8 KiB
Python
#!/usr/bin/env python
|
|
"""
|
|
* *******************************************************
|
|
* Copyright (c) VMware, Inc. 2019. 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 com.vmware.esx.hcl_client import CompatibilityData
|
|
|
|
from samples.vsphere.vcenter.hcl.utils import get_configuration
|
|
from samples.vsphere.common import sample_cli, sample_util
|
|
|
|
|
|
class CompatibilityDataUpdateSample(object):
|
|
"""
|
|
Sample demonstrating vCenter HCL Compatibility Data Update Operation
|
|
Sample Prerequisites:
|
|
vCenter on linux platform
|
|
"""
|
|
|
|
def __init__(self):
|
|
parser = sample_cli.build_arg_parser()
|
|
args = sample_util.process_cli_args(parser.parse_args())
|
|
config = get_configuration(args.server, args.username,
|
|
args.password,
|
|
args.skipverification)
|
|
self.api_client = CompatibilityData(config)
|
|
|
|
def run(self):
|
|
"""
|
|
Calls the HCL Compatibility Data Update POST API to update the HCL Datastore on the vCenter
|
|
"""
|
|
data_update_info = self.api_client.update_task()
|
|
print("Compatibility Data Update Task ID : ", data_update_info.get_task_id())
|
|
|
|
|
|
def main():
|
|
"""
|
|
Entry point for the CompatibilityDataUpdateSample client
|
|
"""
|
|
dataUpdateSample = CompatibilityDataUpdateSample()
|
|
dataUpdateSample.run()
|
|
|
|
|
|
if __name__ == '__main__':
|
|
main()
|