Class AlternateManagementInterface
Alternate management interface
[DataContract]
public class AlternateManagementInterface
- Inheritance
-
AlternateManagementInterface
- Inherited Members
Properties
Enabled
Boolean value to enable or disable AMI configuration. If enabled, VLAN and protocols must be set
[ApiAccess(ApiAccess.ReadUpdate)]
[DataMember(Name = "enabled")]
public bool Enabled { get; set; }
Property Value
Protocols
Can be one or more of the following values: 'radius', 'snmp' or 'syslog'
[ApiAccess(ApiAccess.ReadUpdate)]
[DataMember(Name = "protocols")]
public List<string> Protocols { get; set; }
Property Value
Switches
Array of switch serial number and IP assignment. If parameter is present, it cannot have empty body. Note: switches parameter is not applicable for template networks, in other words, do not put 'switches' in the body when updating template networks. Also, an empty 'switches' array will remove all previous assignments
[ApiAccess(ApiAccess.ReadUpdate)]
[DataMember(Name = "switches")]
public List<AlternateManagementSwitch> Switches { get; set; }
Property Value
Vlan
Alternate management VLAN, must be between 1 and 4094
[ApiAccess(ApiAccess.ReadUpdate)]
[DataMember(Name = "vlan")]
public int Vlan { get; set; }