Microsoft Azure · Schema

onYourDataUserAssignedManagedIdentityAuthenticationOptions

The authentication options for Azure OpenAI On Your Data when using a user-assigned managed identity.

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

JSON Schema

microsoft-azure-onyourdatauserassignedmanagedidentityauthenticationoptions-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/onYourDataUserAssignedManagedIdentityAuthenticationOptions",
  "title": "onYourDataUserAssignedManagedIdentityAuthenticationOptions",
  "required": [
    "managed_identity_resource_id"
  ],
  "description": "The authentication options for Azure OpenAI On Your Data when using a user-assigned managed identity.",
  "allOf": [
    {
      "$ref": "#/components/schemas/onYourDataAuthenticationOptions"
    },
    {
      "properties": {
        "managed_identity_resource_id": {
          "type": "string",
          "description": "The resource ID of the user-assigned managed identity to use for authentication."
        }
      }
    }
  ],
  "x-ms-discriminator-value": "user_assigned_managed_identity"
}