Microsoft Azure · Schema

onYourDataAuthenticationOptions

The authentication options for Azure OpenAI On Your Data.

API ManagementCloudCloud ComputingEnterpriseInfrastructure as a ServicePlatform as a ServiceT1

Properties

Name Type Description
type object
View JSON Schema on GitHub

JSON Schema

microsoft-azure-onyourdataauthenticationoptions-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/onYourDataAuthenticationOptions",
  "title": "onYourDataAuthenticationOptions",
  "required": [
    "type"
  ],
  "type": "object",
  "properties": {
    "type": {
      "$ref": "#/components/schemas/onYourDataAuthenticationType"
    }
  },
  "description": "The authentication options for Azure OpenAI On Your Data.",
  "discriminator": {
    "propertyName": "type",
    "mapping": {
      "api_key": "#/components/schemas/onYourDataApiKeyAuthenticationOptions",
      "connection_string": "#/components/schemas/onYourDataConnectionStringAuthenticationOptions",
      "key_and_key_id": "#/components/schemas/onYourDataKeyAndKeyIdAuthenticationOptions",
      "encoded_api_key": "#/components/schemas/onYourDataEncodedApiKeyAuthenticationOptions",
      "access_token": "#/components/schemas/onYourDataAccessTokenAuthenticationOptions",
      "system_assigned_managed_identity": "#/components/schemas/onYourDataSystemAssignedManagedIdentityAuthenticationOptions",
      "user_assigned_managed_identity": "#/components/schemas/onYourDataUserAssignedManagedIdentityAuthenticationOptions"
    }
  }
}