Properties
| Name | Type | Description |
|---|---|---|
| ha_link | boolean | mark true to use this LAN for HA probing. only works for site with HA turned on. only one LAN can be set as the ha_link. |
| name | string | |
| nat | object | |
| physport | object | |
| routed_subnets | array | |
| static_addressing | object | |
| vlan_tag | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/magic_lans_add_single_request",
"title": "magic_lans_add_single_request",
"properties": {
"ha_link": {
"description": "mark true to use this LAN for HA probing. only works for site with HA turned on. only one LAN can be set as the ha_link.",
"type": "boolean"
},
"name": {
"type": "string"
},
"nat": {
"$ref": "#/components/schemas/magic_nat"
},
"physport": {
"$ref": "#/components/schemas/magic_port"
},
"routed_subnets": {
"items": {
"$ref": "#/components/schemas/magic_routed_subnet"
},
"type": "array"
},
"static_addressing": {
"$ref": "#/components/schemas/magic_lan_static_addressing"
},
"vlan_tag": {
"$ref": "#/components/schemas/magic_vlan_tag"
}
},
"required": [
"physport",
"vlan_tag"
],
"type": "object"
}