tunnel_schemas-connection

APIs.ioEngineeringPlatform

Properties

Name Type Description
client_id object
client_version object
colo_name object
id object
is_pending_reconnect object
opened_at string Timestamp of when the connection was established.
origin_ip object The public IP address of the host running cloudflared.
uuid object
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-tunnel-schemas-connection-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/tunnel_schemas-connection",
  "title": "tunnel_schemas-connection",
  "properties": {
    "client_id": {
      "$ref": "#/components/schemas/tunnel_client_id"
    },
    "client_version": {
      "$ref": "#/components/schemas/tunnel_version"
    },
    "colo_name": {
      "$ref": "#/components/schemas/tunnel_colo_name"
    },
    "id": {
      "$ref": "#/components/schemas/tunnel_connection_id"
    },
    "is_pending_reconnect": {
      "$ref": "#/components/schemas/tunnel_is_pending_reconnect"
    },
    "opened_at": {
      "description": "Timestamp of when the connection was established.",
      "example": "2021-01-25T18:22:34.317854Z",
      "format": "date-time",
      "type": "string"
    },
    "origin_ip": {
      "allOf": [
        {
          "$ref": "#/components/schemas/tunnel_ip"
        }
      ],
      "description": "The public IP address of the host running cloudflared."
    },
    "uuid": {
      "$ref": "#/components/schemas/tunnel_connection_id"
    }
  }
}