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>
47 lines
1.6 KiB
Python
47 lines
1.6 KiB
Python
"""
|
|
* *******************************************************
|
|
* Copyright (c) VMware, Inc. 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 2016 VMware, Inc. All rights reserved.'
|
|
__vcenter_version__ = '6.5+'
|
|
|
|
from com.vmware.vcenter_client import Cluster
|
|
|
|
from samples.vsphere.vcenter.helper import datacenter_helper
|
|
|
|
|
|
def get_cluster(stub_config, datacenter_name, cluster_name):
|
|
"""
|
|
Returns the identifier of a cluster
|
|
Note: The method assumes only one cluster and datacenter
|
|
with the mentioned name.
|
|
"""
|
|
|
|
datacenter = datacenter_helper.get_datacenter(stub_config, datacenter_name)
|
|
if not datacenter:
|
|
print("Datacenter '{}' not found".format(datacenter_name))
|
|
return None
|
|
|
|
filter_spec = Cluster.FilterSpec(names=set([cluster_name]),
|
|
datacenters=set([datacenter]))
|
|
|
|
cluster_svc = Cluster(stub_config)
|
|
cluster_summaries = cluster_svc.list(filter_spec)
|
|
if len(cluster_summaries) > 0:
|
|
cluster = cluster_summaries[0].cluster
|
|
print("Detected cluster '{}' as {}".format(cluster_name, cluster))
|
|
return cluster
|
|
else:
|
|
print("Cluster '{}' not found".format(cluster_name))
|
|
return None
|