teams-devices_split_tunnel_include

APIs.ioEngineeringPlatform

Properties

Name Type Description
address string The address in CIDR format to include in 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 include in the tunnel. If host is present, address must not be present.
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-teams-devices-split-tunnel-include-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/teams-devices_split_tunnel_include",
  "title": "teams-devices_split_tunnel_include",
  "properties": {
    "address": {
      "description": "The address in CIDR format to include in 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": "Include testing domains from the tunnel",
      "maxLength": 100,
      "type": "string"
    },
    "host": {
      "description": "The domain name to include in the tunnel. If host is present, address must not be present.",
      "example": "*.example.com",
      "type": "string"
    }
  },
  "required": [
    "address",
    "description"
  ],
  "type": "object"
}