mirror of
https://github.com/vmware/vsphere-automation-sdk-python.git
synced 2024-11-23 09:59:59 -05:00
72 lines
2.3 KiB
Python
72 lines
2.3 KiB
Python
"""
|
|
* *******************************************************
|
|
* Copyright (c) VMware, Inc. 2013, 2016. All Rights Reserved.
|
|
* *******************************************************
|
|
*
|
|
* 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 pyVmomi import vim
|
|
from samples.vsphere.common.sample_base import SampleBase
|
|
from samples.vsphere.vim.helpers.vim_utils import get_obj
|
|
|
|
|
|
class GetClusterByName(SampleBase):
|
|
"""
|
|
Retrieves the given cluster MOID from VC using container view
|
|
"""
|
|
def __init__(self):
|
|
SampleBase.__init__(self, self.__doc__)
|
|
self.cluster_name = None
|
|
self.mo_id = None
|
|
self.servicemanager = None
|
|
|
|
def _options(self):
|
|
self.argparser.add_argument('-clustername', '--clustername', help='Name of the cluster to be queried')
|
|
|
|
def _setup(self):
|
|
if self.cluster_name is None:
|
|
self.cluster_name = self.args.clustername
|
|
assert self.cluster_name is not None
|
|
if self.servicemanager is None:
|
|
self.servicemanager = self.get_service_manager()
|
|
|
|
def _execute(self):
|
|
content = self.servicemanager.content
|
|
cluster_obj = get_obj(content, [vim.ClusterComputeResource], self.cluster_name)
|
|
if cluster_obj is not None:
|
|
self.mo_id = cluster_obj._GetMoId()
|
|
print('Cluster MoId: {0}'.format(self.mo_id))
|
|
else:
|
|
print('Cluster: {0} not found'.format(self.cluster_name))
|
|
|
|
def _cleanup(self):
|
|
pass
|
|
|
|
|
|
def get_cluster_id(service_manager, cluster_name):
|
|
"""
|
|
Returns the cluster's MoId, or None if the cluster doesn't exist
|
|
"""
|
|
get_cluster_by_name = GetClusterByName()
|
|
get_cluster_by_name.servicemanager = service_manager
|
|
get_cluster_by_name.cluster_name = cluster_name
|
|
get_cluster_by_name.run()
|
|
return get_cluster_by_name.mo_id
|
|
|
|
|
|
def main():
|
|
get_cluster_by_name = GetClusterByName()
|
|
get_cluster_by_name.main()
|
|
|
|
|
|
# Start program
|
|
if __name__ == "__main__":
|
|
main() |