Kong · Schema

UpdateDcrProviderRequest

A set of updates to a DCR provider. The provider_type cannot be updated after creation.

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source

Properties

Name Type Description
name object
display_name object
issuer string
labels object
dcr_config object
View JSON Schema on GitHub

JSON Schema

kong-updatedcrproviderrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UpdateDcrProviderRequest",
  "title": "UpdateDcrProviderRequest",
  "description": "A set of updates to a DCR provider. The provider_type cannot be updated after creation.",
  "type": "object",
  "properties": {
    "name": {
      "$ref": "#/components/schemas/DcrProviderName"
    },
    "display_name": {
      "$ref": "#/components/schemas/DcrProviderDisplayName"
    },
    "issuer": {
      "type": "string",
      "format": "url",
      "maxLength": 256
    },
    "labels": {
      "$ref": "#/components/schemas/LabelsUpdate"
    },
    "dcr_config": {
      "anyOf": [
        {
          "$ref": "#/components/schemas/UpdateDcrConfigAuth0InRequest"
        },
        {
          "$ref": "#/components/schemas/UpdateDcrConfigAzureAdInRequest"
        },
        {
          "$ref": "#/components/schemas/UpdateDcrConfigCurityInRequest"
        },
        {
          "$ref": "#/components/schemas/UpdateDcrConfigOktaInRequest"
        },
        {
          "$ref": "#/components/schemas/UpdateDcrConfigHttpInRequest"
        }
      ]
    }
  },
  "additionalProperties": false
}