1
0
mirror of https://github.com/vmware/vsphere-automation-sdk-python.git synced 2024-11-22 17:39:59 -05:00
vsphere-automation-sdk-python/samples/vsphere/vcenter/helper/network_helper.py
Tianhao He 912fb0bcbf update ethernet sample and add opaque network
Signed-off-by: Tianhao He <het@vmware.com>
2019-01-31 16:47:42 +08:00

50 lines
1.8 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 Network
from samples.vsphere.vcenter.helper import datacenter_helper
def get_network_backing(client,
porggroup_name,
datacenter_name,
portgroup_type):
"""
Gets a standard portgroup network backing for a given Datacenter
Note: The method assumes that there is only one standard portgroup
and datacenter with the mentioned names.
"""
datacenter = datacenter_helper.get_datacenter(client, datacenter_name)
if not datacenter:
print("Datacenter '{}' not found".format(datacenter_name))
return None
filter = Network.FilterSpec(datacenters=set([datacenter]),
names=set([porggroup_name]),
types=set([portgroup_type]))
network_summaries = client.vcenter.Network.list(filter=filter)
if len(network_summaries) > 0:
network = network_summaries[0].network
print("Selecting {} Portgroup Network '{}' ({})".
format(portgroup_type, porggroup_name, network))
return network
else:
print("Portgroup Network not found in Datacenter '{}'".
format(datacenter_name))
return None