Microsoft Azure · Schema

onYourDataEncodedApiKeyAuthenticationOptions

The authentication options for Azure OpenAI On Your Data when using an Elasticsearch encoded API key.

API ManagementCloudCloud ComputingEnterpriseInfrastructure as a ServicePlatform as a ServiceT1
View JSON Schema on GitHub

JSON Schema

microsoft-azure-onyourdataencodedapikeyauthenticationoptions-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/onYourDataEncodedApiKeyAuthenticationOptions",
  "title": "onYourDataEncodedApiKeyAuthenticationOptions",
  "required": [
    "encoded_api_key"
  ],
  "description": "The authentication options for Azure OpenAI On Your Data when using an Elasticsearch encoded API key.",
  "allOf": [
    {
      "$ref": "#/components/schemas/onYourDataAuthenticationOptions"
    },
    {
      "properties": {
        "encoded_api_key": {
          "type": "string",
          "description": "The Elasticsearch encoded API key to use for authentication."
        }
      }
    }
  ],
  "x-ms-discriminator-value": "encoded_api_key"
}