Kong · Schema

Identity Provider

The identity provider that contains configuration data for updating an authentication integration.

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source

Properties

Name Type Description
enabled object
login_path object
config object
View JSON Schema on GitHub

JSON Schema

kong-updateidentityprovider-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UpdateIdentityProvider",
  "title": "Identity Provider",
  "x-speakeasy-entity": "IdentityProvider",
  "description": "The identity provider that contains configuration data for updating an authentication integration.",
  "type": "object",
  "properties": {
    "enabled": {
      "$ref": "#/components/schemas/IdentityProviderEnabled"
    },
    "login_path": {
      "$ref": "#/components/schemas/IdentityProviderLoginPath"
    },
    "config": {
      "type": "object",
      "oneOf": [
        {
          "$ref": "#/components/schemas/OIDCIdentityProviderConfig"
        },
        {
          "$ref": "#/components/schemas/SAMLIdentityProviderConfig"
        }
      ]
    }
  }
}