Share feedback
Answers are generated based on the documentation.

Experimental

Schema

CreatePortRequestPortInput

Type: object

number · required

Type: integer

(IMMUTABLE) number is immutable and unique within the sandbox; duplicates refuse ALREADY_EXISTS.
All schema constraints and annotations
{
  "description": "(IMMUTABLE) number is immutable and unique within the sandbox; duplicates refuse ALREADY_EXISTS.",
  "format": "int32",
  "maximum": 65535,
  "minimum": 1,
  "type": "integer"
}
protocol

Type: string

(IMMUTABLE) protocol defaults to TCP when unspecified.
All schema constraints and annotations
{
  "description": "(IMMUTABLE) protocol defaults to TCP when unspecified.",
  "enum": [
    "unspecified",
    "tcp"
  ],
  "title": "PortInputProtocol",
  "type": "string"
}
All schema constraints and annotations
{
  "additionalProperties": false,
  "properties": {
    "number": {
      "description": "(IMMUTABLE) number is immutable and unique within the sandbox; duplicates refuse ALREADY_EXISTS.",
      "format": "int32",
      "maximum": 65535,
      "minimum": 1,
      "type": "integer"
    },
    "protocol": {
      "description": "(IMMUTABLE) protocol defaults to TCP when unspecified.",
      "enum": [
        "unspecified",
        "tcp"
      ],
      "title": "PortInputProtocol",
      "type": "string"
    }
  },
  "required": [
    "number"
  ],
  "title": "PortInput",
  "type": "object"
}