Share feedback
Answers are generated based on the documentation.

Experimental

Schema

PublishedPort

Type: object

PublishedPort reports external reachability for one sandbox port.
hostIp

Type: string

host_ip is the local host bind address when relevant.
All schema constraints and annotations
{
  "description": "host_ip is the local host bind address when relevant.",
  "type": "string"
}
hostPort

Type: integer

host_port is the local host port when relevant.
All schema constraints and annotations
{
  "description": "host_port is the local host port when relevant.",
  "type": "integer"
}
protocol

Schema: Protocol

protocol is the published protocol.
All schema constraints and annotations
{
  "$ref": "#/components/schemas/Protocol",
  "description": "protocol is the published protocol."
}
sandboxPort

Type: integer

sandbox_port is the port inside the sandbox.
All schema constraints and annotations
{
  "description": "sandbox_port is the port inside the sandbox.",
  "type": "integer"
}
url

Type: string

url is the required externally reachable address, including host-local addresses.
All schema constraints and annotations
{
  "description": "url is the required externally reachable address, including host-local addresses.",
  "type": "string"
}
All schema constraints and annotations
{
  "description": "PublishedPort reports external reachability for one sandbox port.",
  "properties": {
    "hostIp": {
      "description": "host_ip is the local host bind address when relevant.",
      "type": "string"
    },
    "hostPort": {
      "description": "host_port is the local host port when relevant.",
      "type": "integer"
    },
    "protocol": {
      "$ref": "#/components/schemas/Protocol",
      "description": "protocol is the published protocol."
    },
    "sandboxPort": {
      "description": "sandbox_port is the port inside the sandbox.",
      "type": "integer"
    },
    "url": {
      "description": "url is the required externally reachable address, including host-local addresses.",
      "type": "string"
    }
  },
  "title": "PublishedPort",
  "type": "object"
}