Kong · Schema
HMACAuthWithoutParents
API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source
Properties
| Name | Type | Description |
|---|---|---|
| consumer | object | |
| created_at | integer | Unix epoch when the resource was created. |
| id | string | A string representing a UUID (universally unique identifier). |
| secret | string | |
| tags | array | A set of strings representing tags. |
| username | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/HMACAuthWithoutParents",
"title": "HMACAuthWithoutParents",
"x-speakeasy-entity": "HMACAuth",
"type": "object",
"properties": {
"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
},
"secret": {
"type": "string",
"nullable": true,
"x-encrypted": true
},
"tags": {
"description": "A set of strings representing tags.",
"type": "array",
"items": {
"description": "A string representing a tag.",
"type": "string"
},
"nullable": true
},
"username": {
"type": "string"
}
},
"example": {
"id": "75695322-e8a0-4109-aed4-5416b0308d85",
"secret": "wQazJ304DW5huJklHgUfjfiSyCyTAEDZ",
"username": "xerxes"
},
"additionalProperties": false,
"required": [
"username"
]
}