├── README.md └── infra ├── main.bicep ├── modules ├── aoai │ └── aoai.bicep ├── apim │ └── apim.bicep ├── appinsights │ └── appinsights.bicep └── config │ ├── apim-assign-logger.bicep │ ├── apim-backend.bicep │ ├── apim-import.bicep │ ├── apim-lb-pool.bicep │ ├── apim-policy.bicep │ ├── apispec │ └── openapi-spec.json │ └── policies │ └── genai-policy.xml └── parameters.json /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seenu433/apim-genai/HEAD/README.md -------------------------------------------------------------------------------- /infra/main.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seenu433/apim-genai/HEAD/infra/main.bicep -------------------------------------------------------------------------------- /infra/modules/aoai/aoai.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seenu433/apim-genai/HEAD/infra/modules/aoai/aoai.bicep -------------------------------------------------------------------------------- /infra/modules/apim/apim.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seenu433/apim-genai/HEAD/infra/modules/apim/apim.bicep -------------------------------------------------------------------------------- /infra/modules/appinsights/appinsights.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seenu433/apim-genai/HEAD/infra/modules/appinsights/appinsights.bicep -------------------------------------------------------------------------------- /infra/modules/config/apim-assign-logger.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seenu433/apim-genai/HEAD/infra/modules/config/apim-assign-logger.bicep -------------------------------------------------------------------------------- /infra/modules/config/apim-backend.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seenu433/apim-genai/HEAD/infra/modules/config/apim-backend.bicep -------------------------------------------------------------------------------- /infra/modules/config/apim-import.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seenu433/apim-genai/HEAD/infra/modules/config/apim-import.bicep -------------------------------------------------------------------------------- /infra/modules/config/apim-lb-pool.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seenu433/apim-genai/HEAD/infra/modules/config/apim-lb-pool.bicep -------------------------------------------------------------------------------- /infra/modules/config/apim-policy.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seenu433/apim-genai/HEAD/infra/modules/config/apim-policy.bicep -------------------------------------------------------------------------------- /infra/modules/config/apispec/openapi-spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seenu433/apim-genai/HEAD/infra/modules/config/apispec/openapi-spec.json -------------------------------------------------------------------------------- /infra/modules/config/policies/genai-policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seenu433/apim-genai/HEAD/infra/modules/config/policies/genai-policy.xml -------------------------------------------------------------------------------- /infra/parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seenu433/apim-genai/HEAD/infra/parameters.json --------------------------------------------------------------------------------