mirror of
https://github.com/vmware/vsphere-automation-sdk-python.git
synced 2024-11-22 09:39:58 -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>
34 lines
1.1 KiB
Python
34 lines
1.1 KiB
Python
"""
|
|
* *******************************************************
|
|
* Copyright (c) VMware, Inc. 2016-2018. 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__ = '6.5+'
|
|
|
|
from com.vmware.vcenter_client import Datacenter
|
|
|
|
|
|
def get_datacenter(client, datacenter_name):
|
|
"""
|
|
Returns the identifier of a datacenter
|
|
Note: The method assumes only one datacenter with the mentioned name.
|
|
"""
|
|
|
|
filter_spec = Datacenter.FilterSpec(names=set([datacenter_name]))
|
|
|
|
datacenter_summaries = client.vcenter.Datacenter.list(filter_spec)
|
|
if len(datacenter_summaries) > 0:
|
|
datacenter = datacenter_summaries[0].datacenter
|
|
return datacenter
|
|
else:
|
|
return None
|