Kong · Schema
EventGatewayInfo
The gateway object contains information about a Konnect gateway.
API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source
Properties
| Name | Type | Description |
|---|---|---|
| id | string | The gateway ID. |
| name | object | |
| description | object | |
| labels | object | |
| created_at | string | An ISO-8604 timestamp representation of gateway creation date. |
| updated_at | string | An ISO-8604 timestamp representation of gateway update date. |
| nodes_total | integer | The total number of nodes associated with the Event Gateway. |
| virtual_clusters_total | integer | The total number of virtual clusters associated with the Event Gateway. |
| min_runtime_version | object | |
| version | string | The version number of the event gateway. Every change to an entity under this gateway will modify the version. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/EventGatewayInfo",
"title": "EventGatewayInfo",
"description": "The gateway object contains information about a Konnect gateway.",
"type": "object",
"properties": {
"id": {
"description": "The gateway ID.",
"type": "string",
"format": "uuid",
"example": "7f9fd312-a987-4628-b4c5-bb4f4fddd5f7",
"readOnly": true,
"x-speakeasy-param-suppress-computed-diff": true
},
"name": {
"$ref": "#/components/schemas/GatewayName"
},
"description": {
"$ref": "#/components/schemas/GatewayDescription"
},
"labels": {
"$ref": "#/components/schemas/Labels"
},
"created_at": {
"description": "An ISO-8604 timestamp representation of gateway creation date.",
"type": "string",
"format": "date-time",
"example": "2022-11-04T20:10:06.927Z",
"readOnly": true,
"x-speakeasy-terraform-ignore": true
},
"updated_at": {
"description": "An ISO-8604 timestamp representation of gateway update date.",
"type": "string",
"format": "date-time",
"example": "2022-11-04T20:10:06.927Z",
"readOnly": true,
"x-speakeasy-terraform-ignore": true
},
"nodes_total": {
"description": "The total number of nodes associated with the Event Gateway.",
"type": "integer"
},
"virtual_clusters_total": {
"description": "The total number of virtual clusters associated with the Event Gateway.",
"type": "integer"
},
"min_runtime_version": {
"$ref": "#/components/schemas/MinRuntimeVersion"
},
"version": {
"description": "The version number of the event gateway. Every change to an entity\nunder this gateway will modify the version.\n",
"type": "string",
"example": "v1.123"
}
},
"additionalProperties": false,
"required": [
"id",
"name",
"created_at",
"updated_at",
"nodes_total",
"virtual_clusters_total",
"min_runtime_version",
"version"
]
}