Share feedback
Answers are generated based on the documentation.

Experimental

Schema

ExactDestination

Type: object

ExactDestination uses destination.v1 canonical selector values, never legacy glob syntax.
kind · required

Schema: ExactDestinationKind

kind selects a destination.v1 matching rule.
All schema constraints and annotations
{
  "$ref": "#/components/schemas/ExactDestinationKind",
  "description": "kind selects a destination.v1 matching rule.",
  "not": {
    "enum": [
      "unspecified"
    ]
  }
}
port

Type: integer | null

An absent port matches all numeric ports; zero is invalid when present.
All schema constraints and annotations
{
  "description": "An absent port matches all numeric ports; zero is invalid when present.",
  "maximum": 65535,
  "minimum": 1,
  "type": [
    "integer",
    "null"
  ]
}
value · required

Type: string

value is canonical for its kind and contains no legacy selector syntax.
All schema constraints and annotations
{
  "description": "value is canonical for its kind and contains no legacy selector syntax.",
  "minLength": 1,
  "type": "string"
}
All schema constraints and annotations
{
  "description": "ExactDestination uses destination.v1 canonical selector values, never legacy glob syntax.",
  "properties": {
    "kind": {
      "$ref": "#/components/schemas/ExactDestinationKind",
      "description": "kind selects a destination.v1 matching rule.",
      "not": {
        "enum": [
          "unspecified"
        ]
      }
    },
    "port": {
      "description": "An absent port matches all numeric ports; zero is invalid when present.",
      "maximum": 65535,
      "minimum": 1,
      "type": [
        "integer",
        "null"
      ]
    },
    "value": {
      "description": "value is canonical for its kind and contains no legacy selector syntax.",
      "minLength": 1,
      "type": "string"
    }
  },
  "required": [
    "kind",
    "value"
  ],
  "title": "ExactDestination",
  "type": "object"
}