Properties
| Name | Type | Description |
|---|---|---|
| address | string | The address in CIDR format to exclude from the tunnel. If `address` is present, `host` must not be present. |
| description | string | A description of the Split Tunnel item, displayed in the client UI. |
| host | string | The domain name to exclude from the tunnel. If `host` is present, `address` must not be present. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/teams-devices_split_tunnel",
"title": "teams-devices_split_tunnel",
"properties": {
"address": {
"description": "The address in CIDR format to exclude from the tunnel. If `address` is present, `host` must not be present.",
"example": "192.0.2.0/24",
"type": "string"
},
"description": {
"description": "A description of the Split Tunnel item, displayed in the client UI.",
"example": "Exclude testing domains from the tunnel",
"maxLength": 100,
"type": "string"
},
"host": {
"description": "The domain name to exclude from the tunnel. If `host` is present, `address` must not be present.",
"example": "*.example.com",
"type": "string"
}
},
"required": [
"address",
"description"
],
"type": "object"
}