Kong · Schema

CreateConfigStoreSecret

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source

Properties

Name Type Description
key string
value string
View JSON Schema on GitHub

JSON Schema

kong-createconfigstoresecret-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreateConfigStoreSecret",
  "title": "CreateConfigStoreSecret",
  "type": "object",
  "properties": {
    "key": {
      "type": "string",
      "maxLength": 512,
      "minLength": 1,
      "x-speakeasy-param-force-new": true
    },
    "value": {
      "type": "string",
      "maxLength": 5120,
      "minLength": 1,
      "writeOnly": true,
      "x-sensitive": true,
      "x-speakeasy-param-sensitive": true
    }
  },
  "required": [
    "key",
    "value"
  ]
}