pub struct VMwareDvsLagVlanConfig {
pub vlan_id: Option<Vec<NumericRange>>,
}Expand description
This class defines the vlan configuration of the Link Aggregation Control Protocol group.
§How to access
VmwareDistributedVirtualSwitch::config→VMwareDvsConfigInfo.lacp_group_config?[*].vlan?DistributedVirtualSwitch::config→VMwareDvsConfigInfo.lacp_group_config?[*].vlan?VmwareDistributedVirtualSwitch::update_dvs_lacp_group_config_task(lacp_group_spec).lacp_group_config.vlan?
Fields§
§vlan_id: Option<Vec<NumericRange>>The VlanId range for the Uplink Ports in the Link Aggregation Control Protocol group.
The valid VlanId range is from 0 to 4094. Overlapping ranges are allowed. If set, this property will override the VLAN configuration of Uplink Ports in the Link Aggregation Control Protocol group. Thus they are no longer inheriting VLAN configuration from their Uplink Port Group. Setting this property would require VMwareDVSPortgroupPolicy.vlanOverrideAllowed of all the Uplink Port Groups to be true, otherwise ConflictingConfiguration fault will be raised.
Trait Implementations§
Source§impl Debug for VMwareDvsLagVlanConfig
impl Debug for VMwareDvsLagVlanConfig
Source§impl Deserialize for VMwareDvsLagVlanConfig
impl Deserialize for VMwareDvsLagVlanConfig
Source§impl VimObjectTrait for VMwareDvsLagVlanConfig
impl VimObjectTrait for VMwareDvsLagVlanConfig
fn as_vim_object_ref<'a>(&'a self) -> &'a dyn VimObjectTrait
fn data_type(&self) -> StructType
impl DataObjectTrait for VMwareDvsLagVlanConfig
Auto Trait Implementations§
impl Freeze for VMwareDvsLagVlanConfig
impl RefUnwindSafe for VMwareDvsLagVlanConfig
impl Send for VMwareDvsLagVlanConfig
impl Sync for VMwareDvsLagVlanConfig
impl Unpin for VMwareDvsLagVlanConfig
impl UnsafeUnpin for VMwareDvsLagVlanConfig
impl UnwindSafe for VMwareDvsLagVlanConfig
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more