{ "$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" ] }