Kong · Schema
MTLSAuth
API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source
Properties
| Name | Type | Description |
|---|---|---|
| ca_certificate | object | |
| consumer | object | |
| created_at | integer | Unix epoch when the resource was created. |
| id | string | A string representing a UUID (universally unique identifier). |
| subject_name | string | |
| tags | array | A set of strings representing tags. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/MTLSAuth",
"title": "MTLSAuth",
"x-speakeasy-entity": "MTLSAuth",
"type": "object",
"properties": {
"ca_certificate": {
"type": "object",
"properties": {
"id": {
"type": "string"
}
},
"x-foreign": true
},
"consumer": {
"type": "object",
"nullable": true,
"properties": {
"id": {
"type": "string"
}
},
"x-foreign": true,
"x-speakeasy-terraform-ignore": true
},
"created_at": {
"description": "Unix epoch when the resource was created.",
"type": "integer",
"nullable": true
},
"id": {
"description": "A string representing a UUID (universally unique identifier).",
"type": "string",
"nullable": true
},
"subject_name": {
"type": "string"
},
"tags": {
"description": "A set of strings representing tags.",
"type": "array",
"items": {
"description": "A string representing a tag.",
"type": "string"
},
"nullable": true
}
},
"example": {
"ca_certificate": {
"id": "b2f34145-0343-41a4-9602-4c69dec2f260"
},
"consumer": {
"id": "84a73fb8-50fc-44a7-a4d5-aa17728ee83f"
},
"id": "b2f34145-0343-41a4-9602-4c69dec2f269",
"subject_name": "CA_Subject_Name"
},
"additionalProperties": false,
"required": [
"subject_name"
]
}