Webex · Schema

GetPrivateNetworkConnectObject

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
networkConnectionType string Network Connection Type for the location. * `PUBLIC_INTERNET` - Use public internet for the location's connection type. * `PRIVATE_NETWORK` - Use private network connect for the location's connection
View JSON Schema on GitHub

JSON Schema

webex-getprivatenetworkconnectobject-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GetPrivateNetworkConnectObject",
  "title": "GetPrivateNetworkConnectObject",
  "type": "object",
  "required": [
    "networkConnectionType"
  ],
  "properties": {
    "networkConnectionType": {
      "type": "string",
      "enum": [
        "PUBLIC_INTERNET",
        "PRIVATE_NETWORK"
      ],
      "description": "Network Connection Type for the location.\n * `PUBLIC_INTERNET` - Use public internet for the location's connection type.\n * `PRIVATE_NETWORK` - Use private network connect for the location's connection type.\n"
    }
  }
}