Cisco Cisco Prime Optical 9.6 Developer's Guide

Page of 818
Cisco Prime Optical 9.6.3 GateWay/CORBA Programmer Reference Guide 
OL-28047-01
 
 
359
 
multilayer subnetwork. A network partition can contain more than one multilayer subnetwork. 
VLAN names and IDs are unique within the network partition. 
typedef long VlanId; 
struct Vlan_T { 
        VlanId id; 
        string name; 
        globaldefs::NamingAttributes_T subnetname; 
}; 
3.11.1  createVLAN 
Synopsis 
void createVLAN in globaldefs::NamingAttributes_T subnetname, 
        in VlanId vlanId, 
        in string name, 
        out Vlan_T vlan) 
     raises(globaldefs::ProcessingFailureException); 
Description 
Creates a new VLAN with an ID and name associated with the multilayer subnetwork. 
The scope of the VLAN is network partition wide. A network partition is a collection of the 
multilayer subnetwork. 
Parameters 
Name
 
Type
 
Input/ 
Output
 
Description
 
subnetname
 
globaldefs::NamingAttributes_T
 
In
 
Multilayer subnetwork name to 
which to associate this VLAN.
 
vlanId
 
VlanId
 
In
 
ID of the VLAN to create.
 
name
 
String
 
In
 
Name of the VLAN to create.
 
vlan
 
Vlan_T
 
Out
 
VLAN object created by Prime 
Optical.
 
Throws 
globaldefs::ProcessingFailureException 
EXCPT_INVALID_INPUT - Raised when a VLAN ID or subnet name is invalid. 
EXCPT_ENTITY_NOT_FOUND - Raised when a subnet name does not exist in the EMS. 
EXCPT_INTERNAL_ERROR - Raised in case of nonspecific EMS internal failure. 
Compliance 
Prime Optical-defined.