DSCResources/cVMNetworkAdapterVlan/cVMNetworkAdapterVlan.schema.mof
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
[ClassVersion("1.3.0.0"), FriendlyName("cVMNetworkAdapterVlan")] class cVMNetworkAdapterVlan : OMI_BaseResource { [Key] String Id; [Required] String Name; [Required] String VMName; [Write, ValueMap{"Untagged","Access","Trunk","Communnity","Isolated","Promiscuous"}, Values{"Untagged","Access","Trunk","Communnity","Isolated","Promiscuous"}] String AdapterMode; [Write] Uint32 VlanId; [Write] Uint32 NativeVlanId; [Write] Uint32 PrimaryVlanId; [Write] Uint32 SecondaryVlanId; [Write] String SecondaryVlanIdList; [Write] String AllowedVlanIdList; }; |