🚀 Governance Hub Backend Contract

Overview

Automate the onboarding of LLM backends to your APIM-based AI Gateway with a streamlined, infrastructure-as-code approach using Bicep parameter files (.bicepparam).

This package enables dynamic LLM backend routing without modifying APIM policies:

  • 📦 Automatic Backend Creation: Create APIM backends from configuration
  • ⚖️ Load Balancing: Distribute requests across multiple backends for the same model
  • 🔄 Automatic Failover: Route to healthy backends when others are unavailable
  • 🔌 Multi-Provider Support: Microsoft Foundry, Azure OpenAI, Amazon Bedrock, and external LLM providers
  • 📝 Declarative Configuration: Simple .bicepparam files for version control

What Gets Created

Resource Description
APIM Backends Individual backend resources for each LLM endpoint
Backend Pools Load-balanced pools for models with multiple backends
Policy Fragments Dynamic routing logic for model-based routing
Get Available Models Fragment Returns available model deployments with capabilities (similar to Azure Cognitive Services API)
Metadata Config Fragment Centralized model routing config for the Unified AI API — always deployed with backend onboarding to stay in sync
Resolve Model Alias Fragment Resolves client-facing alias names (e.g. adv-gpt as an alias for gpt-5.2 and gpt-4.1) to actual underlying models — shared across Azure OpenAI, Universal LLM, and Unified AI APIs

Prerequisites

  • Existing deployment of AI Citadel Governance Hub with:
    • User-assigned managed identity configured
    • APIs for Universal LLM API and Azure OpenAI API
  • LLM backends deployed and accessible:
    • Microsoft Foundry with model deployments
    • Azure OpenAI resources with model deployments
    • Amazon Bedrock with foundation model access
    • APIM can reach the target backends from network perspective
  • Verify APIM’s user assigned managed identity has required roles:
    • Cognitive Services OpenAI User for Azure OpenAI
    • Cognitive Services User for Microsoft Foundry
  • For Amazon Bedrock:
    • AWS IAM user with Bedrock access and access keys generated
    • Provide awsAccessKey, awsSecretKey, and awsRegion parameters when deploying — these are stored as secret APIM named values (aws-access-key, aws-secret-key, aws-region)
    • If these parameters are not provided, the named values are created with a NOT_CONFIGURED placeholder and the gateway returns a 500 AWSCredentialsNotConfigured error at runtime when a Bedrock backend is invoked

Quick Start

1. Copy the Parameter Template

cp main.bicepparam llm-backends-dev-local.bicepparam

2. Configure Your Backends

Edit llm-backends-dev-local.bicepparam:

using 'main.bicep'

param apim = {
  subscriptionId: '00000000-0000-0000-0000-000000000000' // Replace with your subscription ID
  resourceGroupName: 'rg-citadel-governance-hub'         // Replace with your APIM resource group
  name: 'apim-citadel-governance-hub'                    // Replace with your APIM name
}

param apimManagedIdentity = {
  subscriptionId: '00000000-0000-0000-0000-000000000000' // Replace with your subscription ID
  resourceGroupName: 'rg-citadel-governance-hub'         // Replace with your identity resource group
  name: 'id-apim-citadel'                                // Replace with your managed identity name
}

param llmBackendConfig = [
  {
    backendId: 'aif-citadel-primary'
    backendType: 'ai-foundry'
    endpoint: 'https://aif-RESOURCE_TOKEN-0.cognitiveservices.azure.com/'
    authScheme: 'managedIdentity'
    supportedModels: [
      { "name": "gpt-4o-mini", "sku": "GlobalStandard", "capacity": 100, "modelFormat": "OpenAI", "modelVersion": "2024-07-18", "retirementDate": "2026-09-30" },
      { "name": "gpt-4o", "sku": "GlobalStandard", "capacity": 100, "modelFormat": "OpenAI", "modelVersion": "2024-11-20", "retirementDate": "2026-09-30" },
      { "name": "gpt-4.1", "sku": "GlobalStandard", "capacity": 100, "modelFormat": "OpenAI", "modelVersion": "2025-04-14", "retirementDate": "2026-10-14", "apiVersion": "2025-04-01-preview", "timeout": 180 },
      { "name": "DeepSeek-R1", "sku": "GlobalStandard", "capacity": 1, "modelFormat": "DeepSeek", "modelVersion": "1", "retirementDate": "2099-12-30", "inferenceApiVersion": "2024-05-01-preview" },
      { "name": "Phi-4", "sku": "GlobalStandard", "capacity": 1, "modelFormat": "Microsoft", "modelVersion": "3", "retirementDate": "2099-12-30", "inferenceApiVersion": "2024-05-01-preview" },
      { "name": "text-embedding-3-large", "sku": "GlobalStandard", "capacity": 100, "modelFormat": "OpenAI", "modelVersion": "1", "retirementDate": "2027-04-14" }
    ]
    priority: 1
    weight: 100
  }
]

3. Deploy

az deployment sub create --name llm-backend-onboarding --location swedencentral --template-file main.bicep --parameters llm-backends-generated-local.bicepparam

Configuration Reference

Backend Configuration Properties

Property Type Required Description
backendId string Yes Unique identifier for the backend (usually the name of the backend resource)
backendType string Yes ai-foundry, azure-openai, aws-bedrock, or external
endpoint string Yes Base URL of the LLM service
authScheme string Yes managedIdentity, apiKey, or token
supportedModels array Yes Array of model objects (see Model Object Properties below)
priority number No 1-5, default 1 (lower = higher priority)
weight number No 1-1000, default 100 (load balancing weight)

Model Object Properties

Each model in the supportedModels array has these properties:

Property Type Required Description
name string Yes Model name (e.g., gpt-4o, DeepSeek-R1, Phi-4)
sku string No SKU name for the deployment (default: Standard). Used in get-available-models response
capacity number No Capacity/TPM quota (default: 100). Used in get-available-models response
modelFormat string No Model format identifier, e.g., OpenAI, DeepSeek, Microsoft (default: OpenAI). Used in get-available-models response
modelVersion string No Version of the model (default: 1). Used in get-available-models response
retirementDate string (date) No Optional retirement date for the model. Used in get-available-models response
apiVersion string No API version for OpenAI-type requests (default: 2024-02-15-preview). Used by Unified AI API for backend routing
timeout number No Request timeout in seconds (default: 120). Used by Unified AI API for per-model timeout configuration
inferenceApiVersion string No API version for inference-type requests (e.g., 2024-05-01-preview). Used by Unified AI API for non-OpenAI models

Backend Types

AI Foundry (ai-foundry)

  • Uses Azure AI Foundry project endpoints
  • Endpoint format: https://<resource>.cognitiveservices.azure.com/
  • Authentication: Managed identity with Cognitive Services scope
  • No URL rewriting required

Azure OpenAI (azure-openai)

  • Uses Azure OpenAI Service endpoints
  • Endpoint format: https://<resource>.openai.azure.com/
  • Authentication: Managed identity with Cognitive Services scope
  • Automatic URL rewriting to include /deployments/{model}/

External (external)

  • Uses external LLM provider endpoints
  • Authentication: API key or backend credentials
  • No URL rewriting

Amazon Bedrock (aws-bedrock)

  • Uses Amazon Bedrock runtime endpoints
  • Endpoint format: https://bedrock-runtime.<aws-region>.amazonaws.com
  • Authentication: AWS Signature Version 4 (SigV4) using IAM access keys stored as APIM named values
  • Path construction: /model/{model-id}/converse
  • Requires additional parameters: awsAccessKey, awsSecretKey, awsRegion
  • See Microsoft Learn: Import Amazon Bedrock API for detailed APIM integration guidance

Example Configurations

Single AI Foundry Backend

param llmBackendConfig = [
  {
    backendId: 'aif-citadel-primary'
    backendType: 'ai-foundry'
    endpoint: 'https://aif-RESOURCE_TOKEN-0.cognitiveservices.azure.com/'
    authScheme: 'managedIdentity'
    supportedModels: [
      { "name": "gpt-4o-mini", "sku": "GlobalStandard", "capacity": 100, "modelFormat": "OpenAI", "modelVersion": "2024-07-18", "retirementDate": "2026-09-30" },
      { "name": "gpt-4o", "sku": "GlobalStandard", "capacity": 100, "modelFormat": "OpenAI", "modelVersion": "2024-11-20", "retirementDate": "2026-09-30" },
      { "name": "gpt-4.1", "sku": "GlobalStandard", "capacity": 100, "modelFormat": "OpenAI", "modelVersion": "2025-04-14", "retirementDate": "2026-10-14", "apiVersion": "2025-04-01-preview", "timeout": 180 },
      { "name": "DeepSeek-R1", "sku": "GlobalStandard", "capacity": 1, "modelFormat": "DeepSeek", "modelVersion": "1", "retirementDate": "2099-12-30", "inferenceApiVersion": "2024-05-01-preview" },
      { "name": "Phi-4", "sku": "GlobalStandard", "capacity": 1, "modelFormat": "Microsoft", "modelVersion": "3", "retirementDate": "2099-12-30", "inferenceApiVersion": "2024-05-01-preview" },
      { "name": "text-embedding-3-large", "sku": "GlobalStandard", "capacity": 100, "modelFormat": "OpenAI", "modelVersion": "1", "retirementDate": "2027-04-14" }
    ]
    priority: 1
    weight: 100
  }
]

Load Balancing Across Regions

As DeepSeek-R1 is available in 2 different backends, the onboarding script will automatically create a backend pool for DeepSeek-R1 and distribute traffic based on the specified priority/weights.

param llmBackendConfig = [
  {
    backendId: 'aif-citadel-primary'
    backendType: 'ai-foundry'
    endpoint: 'https://aif-RESOURCE_TOKEN-0.cognitiveservices.azure.com/'
    authScheme: 'managedIdentity'
    supportedModels: [
      { "name": "gpt-4o-mini", "sku": "GlobalStandard", "capacity": 100, "modelFormat": "OpenAI", "modelVersion": "2024-07-18", "retirementDate": "2026-09-30" },
      { "name": "gpt-4o", "sku": "GlobalStandard", "capacity": 100, "modelFormat": "OpenAI", "modelVersion": "2024-11-20", "retirementDate": "2026-09-30" },
      { "name": "gpt-4.1", "sku": "GlobalStandard", "capacity": 100, "modelFormat": "OpenAI", "modelVersion": "2025-04-14", "retirementDate": "2026-10-14", "apiVersion": "2025-04-01-preview", "timeout": 180 },
      { "name": "DeepSeek-R1", "sku": "GlobalStandard", "capacity": 1, "modelFormat": "DeepSeek", "modelVersion": "1", "retirementDate": "2099-12-30", "inferenceApiVersion": "2024-05-01-preview" },
      { "name": "Phi-4", "sku": "GlobalStandard", "capacity": 1, "modelFormat": "Microsoft", "modelVersion": "3", "retirementDate": "2099-12-30", "inferenceApiVersion": "2024-05-01-preview" },
      { "name": "text-embedding-3-large", "sku": "GlobalStandard", "capacity": 100, "modelFormat": "OpenAI", "modelVersion": "1", "retirementDate": "2027-04-14" }
    ]
    priority: 1
    weight: 100
  }
  {
    backendId: 'aif-citadel-secondary'
    backendType: 'ai-foundry'
    endpoint: 'https://aif-RESOURCE_TOKEN-1.cognitiveservices.azure.com/'
    authScheme: 'managedIdentity'
    supportedModels: [
      { "name": "gpt-5", "sku": "GlobalStandard", "capacity": 50, "modelFormat": "OpenAI", "modelVersion": "1", "retirementDate": "2027-02-05" },
      { "name": "DeepSeek-R1", "sku": "GlobalStandard", "capacity": 1, "modelFormat": "DeepSeek", "modelVersion": "1", "retirementDate": "2099-12-30", "inferenceApiVersion": "2024-05-01-preview" }
    ]
    priority: 2
    weight: 50
  }
]

Mixed Providers

This is mixing Azure OpenAI and Microsoft Foundry backends. Common models across providers will be automatically load balanced (like DeepSeek-R1 and text-embedding-3-large in the below example), while unique models will be routed to their specific backend.

param llmBackendConfig = [
  {
    backendId: 'aif-citadel-primary'
    backendType: 'ai-foundry'
    endpoint: 'https://aif-RESOURCE_TOKEN-0.cognitiveservices.azure.com/'
    authScheme: 'managedIdentity'
    supportedModels: [
      { "name": "gpt-4o-mini", "sku": "GlobalStandard", "capacity": 100, "modelFormat": "OpenAI", "modelVersion": "2024-07-18", "retirementDate": "2026-09-30" },
      { "name": "gpt-4o", "sku": "GlobalStandard", "capacity": 100, "modelFormat": "OpenAI", "modelVersion": "2024-11-20", "retirementDate": "2026-09-30" },
      { "name": "gpt-4.1", "sku": "GlobalStandard", "capacity": 100, "modelFormat": "OpenAI", "modelVersion": "2025-04-14", "retirementDate": "2026-10-14", "apiVersion": "2025-04-01-preview", "timeout": 180 },
      { "name": "DeepSeek-R1", "sku": "GlobalStandard", "capacity": 1, "modelFormat": "DeepSeek", "modelVersion": "1", "retirementDate": "2099-12-30", "inferenceApiVersion": "2024-05-01-preview" },
      { "name": "Phi-4", "sku": "GlobalStandard", "capacity": 1, "modelFormat": "Microsoft", "modelVersion": "3", "retirementDate": "2099-12-30", "inferenceApiVersion": "2024-05-01-preview" },
      { "name": "text-embedding-3-large", "sku": "GlobalStandard", "capacity": 100, "modelFormat": "OpenAI", "modelVersion": "1", "retirementDate": "2027-04-14" }
    ]
    priority: 1
    weight: 100
  }
  {
    backendId: 'aoai-eastus-gpt4'
    backendType: 'azure-openai'
    endpoint: 'https://YOUR-AOAI-RESOURCE.openai.azure.com/'
    authScheme: 'managedIdentity'
    supportedModels: [
      { "name": "gpt-5", "sku": "GlobalStandard", "capacity": 100, "modelFormat": "OpenAI", "modelVersion": "2025-08-07", "retirementDate": "2027-02-05" },
      { "name": "DeepSeek-R1", "sku": "GlobalStandard", "capacity": 1, "modelFormat": "DeepSeek", "modelVersion": "1", "retirementDate": "2099-12-30", "inferenceApiVersion": "2024-05-01-preview" },
      { "name": "text-embedding-3-large", "sku": "GlobalStandard", "capacity": 100, "modelFormat": "OpenAI", "modelVersion": "1", "retirementDate": "2027-04-14" }
    ]
    priority: 1
    weight: 100
  }
]

Amazon Bedrock Backend

This example adds an Amazon Bedrock backend alongside Azure backends. The aws-bedrock backend type uses AWS SigV4 authentication via IAM access keys stored as APIM named values.

param llmBackendConfig = [
  {
    backendId: 'aif-citadel-primary'
    backendType: 'ai-foundry'
    endpoint: 'https://aif-RESOURCE_TOKEN-0.cognitiveservices.azure.com/'
    authScheme: 'managedIdentity'
    supportedModels: [
      { "name": "gpt-4o", "sku": "GlobalStandard", "capacity": 100, "modelFormat": "OpenAI", "modelVersion": "2024-11-20", "retirementDate": "2026-09-30" }
    ]
    priority: 1
    weight: 100
  }
  {
    backendId: 'bedrock-us-east-1'
    backendType: 'aws-bedrock'
    endpoint: 'https://bedrock-runtime.us-east-1.amazonaws.com'
    authScheme: 'awsSigV4'
    supportedModels: [
      { "name": "us.anthropic.claude-3-5-haiku-20241022-v1:0", "sku": "OnDemand", "capacity": 1, "modelFormat": "Anthropic", "modelVersion": "1", "retirementDate": "2099-12-30" }
      { "name": "us.anthropic.claude-3-5-sonnet-20241022-v2:0", "sku": "OnDemand", "capacity": 1, "modelFormat": "Anthropic", "modelVersion": "2", "retirementDate": "2099-12-30" }
      { "name": "us.amazon.nova-pro-v1:0", "sku": "OnDemand", "capacity": 1, "modelFormat": "Amazon", "modelVersion": "1", "retirementDate": "2099-12-30" }
    ]
    priority: 1
    weight: 100
  }
]

// AWS credentials for Bedrock authentication
param awsAccessKey = '<your-aws-access-key-id>'
param awsSecretKey = '<your-aws-secret-access-key>'
param awsRegion = 'us-east-1'

Important: Store AWS access keys securely. Consider using Azure Key Vault references for the APIM named values in production. See Create IAM user access keys for generating AWS access keys.

Request Flow

1. Client → APIM Gateway
   POST /models/chat/completions
   Body: { "model": "gpt-4o", "messages": [...] }

2. Extract Model
   → requestedModel = "gpt-4o"

3. Find Backend Pool
   → matches "gpt-4o-backend-pool" (load balanced)
   or direct backend if single provider

4. Authenticate
   → Get managed identity token
   → Set Authorization header

5. Route to Backend
   → Forward to healthy backend in pool

6. Return Response
   → Client receives response with usage headers

Model Aliases

Model aliases let you expose a single client-facing model name (for example multi-cloud-openai) that the gateway resolves at runtime to one of several underlying real models. Clients keep using the alias even when the underlying line-up changes — the gateway abstracts away the migration and transparently load-balances / fails over across the underlying members.

⚠️ Phase scope: same-API-spec routing only

This phase of the accelerator does not translate between API protocols. Every alias must therefore front backends that share the same wire-level API spec — same path, same request/response shape, same auth contract. Inbound requests are routed unchanged to the picked member’s underlying pool; only the JSON body’s model field is rewritten to the resolved real model name.

Allowed (same spec) Not allowed (different specs)
Foundry + Bedrock-Mantle + Gemini-OpenAI under one alias served via OpenAI /v1/chat/completions ✅ Anthropic Messages + Bedrock Converse under one alias ❌ — different request shapes
Multiple Anthropic backends (regions, tenants) under one alias served via /claude/v1/messages ✅ Foundry OpenAI-compat + Anthropic Messages under one alias ❌ — different paths and bodies
Multiple Foundry models (gpt-5 + Mistral + Phi-4) under one weighted alias ✅ Gemini generateContent + OpenAI /v1/chat/completions under one alias ❌

A future phase will add protocol-passthrough backend types (e.g. aws-bedrock-anthropic-passthrough exposing Bedrock-hosted Claude under the Anthropic Messages spec, and foundry-anthropic-passthrough for Foundry-hosted Claude). When those land, an alias spanning Anthropic + Bedrock + Foundry over a single /v1/messages surface becomes possible without any caller-side change. The alias data model already supports this — only the per-protocol passthrough backend types are pending.

Aliases are virtual backend pools

As of the alias-as-virtual-pool refactor, every entry in modelAliases becomes a virtual pool entry inside the same backendPools JArray that real model pools live in. APIM cannot natively put pools inside pools, so the gateway materialises this with a deploy-time-resolved JObject that carries each member’s underlying poolName / poolType / authType. Alias resolution and member fallback then ride on the same set-target-backend-pool + retry pipeline that real models use. You get:

  • Same-spec load balancing and fallback — the alias resolves to a member that’s compatible with the inbound API surface (filtered by compatiblePoolTypes); on 429/5xx the retry block walks the remaining members in resolution order. When the alias spans multiple clouds for a single shared spec (e.g. OpenAI-compat across Foundry + Bedrock-Mantle + Gemini-OpenAI), this is transparent cross-cloud fallback.
  • Routing strategies — priority (deterministic order with implicit fallback) or weighted (probabilistic distribution) configured per alias.
  • Backend path templates preserved — once a member is picked, the request takes the same code paths a direct call to that real model would have taken (URL rewrite, auth, body forwarding).
  • Consistent across the LLM API surfaces — Azure OpenAI API, Universal LLM API, and Unified AI API all resolve aliases the same way using the shared set-target-backend-pool fragment.
  • Compatible-pool-types filtering — when the inbound API surface restricts pool types (e.g. Universal LLM = OpenAI-compat-only, /claude/ = anthropic-only), alias members with no compatible underlying pool are skipped automatically. An alias with no member compatible with the surface returns a clear alias_no_compatible_member 400.
  • Direct-model routing untouched — aliases are opt-in. Customers who never declare modelAliases see exactly the same direct-pool behaviour as before.

Reference scenarios (from the extended-providers validation notebook)

The extended-providers validation notebook (validation/llm-backend-onboarding-extended-providers-runner.ipynb) builds three opt-in alias scenarios from the configured backends. Each one only materialises when its underlying members exist:

Scenario Alias API spec Members today Use case
A. Foundry weighted foundry-weighted-mix OpenAI /v1/chat/completions (single cloud) Up to 3 Microsoft Foundry models, weighted (e.g. 50/30/20) A/B testing a new model, blended traffic across the Foundry catalog
B. Cross-cloud OpenAI-compat multi-cloud-openai OpenAI /v1/chat/completions (multi-cloud) First model from each of: Foundry, Bedrock-Mantle, Gemini-OpenAI Multi-cloud failover for OpenAI-compat workloads
C. Native Anthropic Messages multi-cloud-claude Anthropic /v1/messages Anthropic API-key members today; Bedrock-Anthropic + Foundry-Anthropic passthroughs are planned Single Anthropic abstraction across regions / tenants today, multi-cloud once passthroughs ship

Configuration

Add a modelAliases array to your .bicepparam file alongside llmBackendConfig. Pick the scenarios that match your backend mix:

param modelAliases = [
  // Scenario A — Foundry weighted load-balance (single cloud, OpenAI-compat).
  // All members must be in `ai-foundry` pools. Use weights to drive the
  // random-by-weight pick on each call.
  {
    name: 'foundry-weighted-mix'
    models: [ 'gpt-5', 'mistral-large', 'Phi-4' ]
    strategy: 'weighted'
    weights: [ 50, 30, 20 ]
  }
  // Scenario B — Cross-cloud OpenAI-compat (multi-cloud, same /v1/chat/completions spec).
  // Members must be OpenAI-compat-capable: ai-foundry, aws-bedrock-mantle, gemini-openai.
  // Priority strategy gives a primary + transparent cross-cloud fallback.
  {
    name: 'multi-cloud-openai'
    models: [
      'gpt-4.1'                  // ai-foundry
      'openai.gpt-oss-120b'      // aws-bedrock-mantle
      'gemini-2.5-flash-lite'    // gemini-openai
    ]
    strategy: 'priority'
  }
  // Scenario C — Native Anthropic Messages alias (/v1/messages spec).
  // Today the only backend type that natively serves /v1/messages is `anthropic`,
  // so alias members are limited to direct Anthropic API keys. Once the planned
  // `aws-bedrock-anthropic-passthrough` and `foundry-anthropic-passthrough`
  // backend types ship, add their Claude model names here and the same alias
  // will fan across clouds with no caller-side change.
  {
    name: 'multi-cloud-claude'
    models: [ 'claude-sonnet-4-6', 'claude-haiku-4-5' ]
    strategy: 'priority'
  }
]

Alias Properties

Property Type Required Description
name string Yes Client-facing alias name. Must NOT collide with any real model name in llmBackendConfig.
models string[] Yes Ordered list of underlying real models the alias may resolve to. Each must exist as a name in some backend’s supportedModels. May span any mix of providers.
strategy string No priority (default) — first compatible member wins, the rest form the fallback list; weighted — random selection by weights, the rest form the fallback list (round-walk after the picked one).
weights int[] No Required when strategy is weighted. Same length as models. Higher weight = more traffic. Used at deploy time to render the alias virtual pool entry; runtime selection is random-weighted.

Resolution flow

1. Client calls e.g. POST /unified-ai/v1/chat/completions with `"model": "multi-cloud-openai"`.

2. validate-model-access: RBAC check on the alias name (`allowedModels` in the
   product policy controls alias access — admins do NOT need to enumerate the
   underlying real models).

3. set-backend-pools: Loads the gateway's `backendPools` JArray. The alias appears
   as a virtual pool entry with `isAlias=true`, `aliasName="multi-cloud-openai"`,
   `members=[ {model, weight, pools[]}, ... ]`. Each member's `pools[]` carries
   the resolved poolName / poolType / authType for every underlying pool that
   hosts the member model.

4. set-target-backend-pool: Detects the alias. Filters members by the inbound
   API surface's `compatiblePoolTypes` (so e.g. /v1/chat/completions only
   considers OpenAI-compat-capable pool types). Picks one member based on
   `strategy`. Sets:
     - is-alias = true
     - original-model-alias = "multi-cloud-openai"
     - requestedModel = picked member's real model name
     - targetBackendPool = picked member's poolName
     - targetPoolType / targetAuthType / targetAuthConfigNamedValue
     - alias-fallback-members = JArray of remaining members in walk order,
       each pre-resolved to its compatible poolName / poolType / authType /
       authConfigNamedValue.
   Same-spec discipline: every member here is OpenAI-compat-capable, so the
   downstream stages can forward the request unchanged regardless of which
   member won the pick.

5. resolve-model-alias: Slim post-resolution body rewrite. Replaces the JSON
   body's `model` field with `requestedModel` so backends see the real name.
   No-op when `is-alias=false`.

6. set-backend-authorization + path-builder: Operate on the resolved real model
   exactly like a direct request would.

7. Backend retry block: If the request returns 429 or 5xx (pre-stream), the
   API policy walks `alias-fallback-members` one entry at a time, swapping
   targetBackendPool / requestedModel / authType in place and re-invoking
   resolve-model-alias + set-backend-authorization (+ path-builder for Unified
   AI). Cross-cloud fallback (Foundry → Bedrock-Mantle → Gemini-OpenAI) is
   transparent to the client. Once streaming has started, fallback is no
   longer possible.

What changes for direct-model requests?

Nothing. When requestedModel does not match any alias entry, set-target-backend-pool falls through to its existing model→pool match logic. Direct routing is unchanged.

Access Control

validate-model-access runs before set-target-backend-pool, so the access contract’s allowedModels list controls access to the alias name, not the underlying members. Granting allowedModels = "multi-cloud-openai" lets the client invoke the alias without having to also list gpt-4.1 / openai.gpt-oss-120b / gemini-2.5-flash-lite separately. The alias becomes the contract-level abstraction.

Discovery (GET /deployments)

Aliases also appear in the model discovery responses (get-available-models fragment, used by GET /deployments and GET /deployments/{deployment-id} on the Universal LLM, Azure OpenAI, and Unified AI APIs) as first-class entries alongside real models. This means clients (including Microsoft Foundry’s deployment picker) can discover and use an alias without the backend implementation leaking out.

Each alias entry returned by discovery looks like:

{
  "id": "alias",
  "type": "alias",
  "name": "multi-cloud-openai",
  "sku": { "name": "Standard", "capacity": 100 },
  "properties": {
    "model": { "format": "Alias", "name": "multi-cloud-openai", "version": "1" },
    "capabilities": {
      "chatCompletion": "true",
      "description": "Alias for: gpt-4.1, openai.gpt-oss-120b, gemini-2.5-flash-lite (strategy: priority)"
    },
    "provisioningState": "Succeeded"
  }
}

The description field under capabilities exposes which underlying models the alias maps to and which strategy is in use (with the configured weights when strategy: weighted). The discovery filter (allowedModels from the access contract) matches by name, so RBAC works for aliases identically to real models.

Source of Truth

Aliases are emitted in two places by the same Bicep parameter (modelAliases):

Fragment Used By Source
set-backend-pools (virtual pool entries inside the backendPools JArray) All 3 APIs (alias resolution + retry fallback) Generated aliasPoolsCode block
get-available-models All 3 APIs (GET /deployments) Inline JObject entry per alias with description
metadata-config (model-aliases JSON section) Unified AI API (informational / cached config) modelAliasesCode JSON block

All three are regenerated on every onboarding deployment, so the views stay in sync. The runtime resolution exclusively reads from the set-backend-pools virtual entries — metadata-config keeps a parallel copy for tooling that introspects the cached config.

Errors

Code When
alias_no_compatible_member (400) The alias was matched but every member’s underlying pool is incompatible with the inbound API surface (filtered out by compatiblePoolTypes). The error body includes the alias name, requested CSV of compatible pool types, and total member count.
unauthorized_model_access (403) The alias name is not in the access contract’s allowedModels list.

Get Available Models API

The get-available-models policy fragment enables an API endpoint that returns all available model deployments with their capabilities, similar to the Azure Cognitive Services deployment list API.

This policy fragment is designed to support Microsoft Foundry integration with Citadel Governance Hub, allowing clients to query available models dynamically from Foundry portal experience.

NOTE: This policy fragment is included in the /deployments get operation of the Universal LLM API by default. Currently this Microsoft Foundry feature is in preview and may change in future releases.

Usage

Include the policy fragment in any API operation to return available models:

<inbound>
    <include-fragment fragment-id="get-available-models" />
</inbound>

Response Format

{
    "value": [
        {
            "id": "aif-citadel-primary",
            "type": "ai-foundry",
            "name": "gpt-4o",
            "sku": { "name": "GlobalStandard", "capacity": 100 },
            "properties": {
                "model": { "format": "OpenAI", "name": "gpt-4o", "version": "2024-11-20" },
                "capabilities": { "chatCompletion": "true" },
                "provisioningState": "Succeeded"
            }
        },
        {
            "id": "aif-citadel-primary",
            "type": "ai-foundry",
            "name": "gpt-4o-mini",
            "sku": { "name": "GlobalStandard", "capacity": 100 },
            "properties": {
                "model": { "format": "OpenAI", "name": "gpt-4o-mini", "version": "2024-11-20" },
                "capabilities": { "chatCompletion": "true" },
                "provisioningState": "Succeeded"
            }
        }
    ]
}

The response is dynamically generated based on the llmBackendConfig parameter, using the optional metadata fields (sku, capacity, modelFormat, modelVersion).

Monitoring

Key Metrics

Connected Application Insights to APIM provides insights into backend performance:

Metric Description
Application Map Visual representation of dependencies performance
Performance For both operations and dependencies
Failures Failures by backend
Latency Response time per backend

Application Insights Query

// this query calculates LLM backend duration percentiles and count by target
let start=ago(24h);
let end=now();
let timeGrain=5m;

let dataset=dependencies
// additional filters can be applied here
| where timestamp > start and timestamp < end
| where client_Type != "Browser"
;
// calculate duration percentiles and count for all dependencies (overall)
dataset
| summarize avg_duration=sum(itemCount * duration)/sum(itemCount), percentiles(duration, 50, 95, 99), count_=sum(itemCount)
| project operation_Name="Overall", avg_duration, percentile_duration_50, percentile_duration_95, percentile_duration_99, count_
| union(dataset
// change 'target' on the below line to segment by a different property
| summarize avg_duration=sum(itemCount * duration)/sum(itemCount), percentiles(duration, 50, 95, 99), count_=sum(itemCount) by target
| sort by avg_duration desc, count_ desc
)

Troubleshooting

“Model not supported” Error

  1. Check model name in supportedModels array (case-insensitive)
  2. Verify backend pool was created in APIM
  3. Review policy fragment deployment

“403 Forbidden” Error

  1. Check allowedBackendPools policy variable
  2. Verify RBAC configuration
  3. Review product/subscription access

“401 Unauthorized” Error

  1. Verify APIM’s managed identity has required roles:
    • Cognitive Services OpenAI User for Azure OpenAI
    • Cognitive Services User for AI Foundry
  2. For Amazon Bedrock: Verify AWS IAM access keys are valid and stored as named values (aws-access-key, aws-secret-key, aws-region)
  3. Unauthorized model access indicates used access contract product is restricted for the model
  4. Check named value uami-client-id is set correctly to APIM’s managed identity client ID

“500 AWSCredentialsNotConfigured” Error

This error means an aws-bedrock backend was matched but the AWS credentials named values are still set to the NOT_CONFIGURED placeholder. To fix:

  1. Redeploy with the awsAccessKey, awsSecretKey, and awsRegion parameters set to valid values, or
  2. Manually update the APIM named values aws-access-key, aws-secret-key, and aws-region in the Azure Portal

Files

llm-backend-onboarding/
├── main.bicep                    # Main deployment template
├── main.bicepparam               # Parameter file template
├── README.md                     # This file
└── modules/
    ├── llm-backends.bicep        # Creates APIM backend resources
    ├── llm-backend-pools.bicep   # Creates load-balanced pools
    ├── llm-policy-fragments.bicep # Generates routing policy fragments
    ├── universal-llm-api.bicep   # Creates Universal LLM API
    └── policies/
        ├── frag-set-backend-pools.xml
        ├── frag-set-backend-authorization.xml
        ├── frag-set-target-backend-pool.xml
        ├── frag-set-llm-requested-model.xml
        ├── frag-set-llm-usage.xml
        ├── frag-get-available-models.xml
        ├── frag-metadata-config.xml          # Unified AI API metadata (always deployed)
        ├── frag-resolve-model-alias.xml      # Shared alias resolution (Azure OpenAI / Universal LLM / Unified AI)
        ├── universal-llm-api-policy.xml
        ├── universal-llm-openapi.json
        └── models-inference-openapi.json