Properties
| Name | Type | Description |
|---|---|---|
| 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_lan_update_request",
"title": "magic_lan_update_request",
"properties": {
"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"
}
},
"type": "object"
}