All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.vmware.vim25.mo.samples.network.RemoveVirtualSwitchPortGroup Maven / Gradle / Ivy

The newest version!
/*================================================================================
Copyright (c) 2008 VMware, Inc. All Rights Reserved.

Redistribution and use in source and binary forms, with or without modification, 
are permitted provided that the following conditions are met:

* Redistributions of source code must retain the above copyright notice, 
this list of conditions and the following disclaimer.

* Redistributions in binary form must reproduce the above copyright notice, 
this list of conditions and the following disclaimer in the documentation 
and/or other materials provided with the distribution.

* Neither the name of VMware, Inc. nor the names of its contributors may be used
to endorse or promote products derived from this software without specific prior 
written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND 
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED 
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 
IN NO EVENT SHALL VMWARE, INC. OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, 
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR 
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, 
WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 
POSSIBILITY OF SUCH DAMAGE.
================================================================================*/

package com.vmware.vim25.mo.samples.network;

import java.net.URL;

import com.vmware.vim25.InvalidArgument;
import com.vmware.vim25.NotFound;
import com.vmware.vim25.ResourceInUse;
import com.vmware.vim25.mo.*;
import com.vmware.vim25.mo.util.*;
import com.vmware.vim25.ws.*;


/**
*
*This sample is used to remove a Virtual Switch PortGroup  
*
*To run this samples following parameters are used:
*
*Parameters:
*portgroupname  [required]: Name of the port group to be removed
*host           [optional]: Name of the host
*datacenter     [optional]: Name of the datacenter
*
*Command Line: To remove a Virtual Switch Port Group
*run.bat com.vmware.samples.host.RemoveVirtualSwitchPortGroup --url [webserviceurl] 
*--username [username] --password   
*--datacenter [mydatacenter] --portgroupname[
*
*Command Line: To remove a Virtual Switch Port Group without specifying the host name
*run.bat com.vmware.samples.host.RemoveVirtualSwitchPortGroup --url [webserviceurl] 
*--username [username] --password   
*--datacenter [mydatacenter] --portgroupname[Command Line: To remove a Virtual Switch Port Group without specifying the datacenter name
*run.bat com.vmware.samples.host.RemoveVirtualSwitchPortGroup --url [webserviceurl] --username [username] --password   
*--portgroupname[
*
* @author Steve Jin * THis is a sample converted from VI SDK samples */ public class RemoveVirtualSwitchPortGroup { public static void main(String[] args) throws Exception { CommandLineParser clp = new CommandLineParser(constructOptions(), args); String urlStr = clp.get_option("url"); String username = clp.get_option("username"); String password = clp.get_option("password"); String dcname = clp.get_option("datacenter");; String hostname = clp.get_option("host"); String portGroupName = clp.get_option("portgroupname"); ServiceInstance si = new ServiceInstance(new URL(urlStr), username, password, true); Folder rootFolder = si.getRootFolder(); HostSystem host = null; String apiType = si.getAboutInfo().getApiType(); if("HostAgent".equalsIgnoreCase(apiType) && dcname ==null) { dcname = "ha-datacenter"; } else if("VirtualCenter".equalsIgnoreCase(apiType) && ((dcname == null) || (hostname ==null))) { System.out.println("datacenter and host should be specified"); return; } Datacenter dc = (Datacenter) new InventoryNavigator(rootFolder).searchManagedEntity("Datacenter", dcname); host = (HostSystem) new InventoryNavigator(dc).searchManagedEntity("HostSystem", hostname); removeVirtualPortGroup(host, portGroupName); } private static void removeVirtualPortGroup(HostSystem host, String portGroupName) { try { HostNetworkSystem hns = host.getHostNetworkSystem(); hns.removePortGroup(portGroupName); System.out.println("Successfully removed port group:" + portGroupName); } catch (ResourceInUse e) { System.out.println(" : Failed removing portgroup " + portGroupName); System.out.println("port group can not be removed because there are virtual network adapters associated with it."); } catch (InvalidArgument e) { System.out.println("Failed removing " + portGroupName); System.out.println("PortGroup vlanId or network policy may be invalid .\n"); } catch (NotFound e) { System.out.println("Failed removing "+ portGroupName); System.out.println(" Switch or portgroup not found.\n"); } catch (NullPointerException e) { System.out.println("Failed removing "+ portGroupName); System.out.println("Datacenter or Host may be invalid \n"); } catch (Exception e) { System.out.println("Failed removing "+ portGroupName); } } private static OptionSpec[] constructOptions() { return new OptionSpec[] { new OptionSpec("host","String",0, "Name of the host", null), new OptionSpec("portgroupname","String", 1 ,"Name of the portgroup", null), new OptionSpec("datacenter","String",0, "Name of the datacenter", null) }; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy