From 072ed6601ebb56c5784a52384c0e9f487d131f4f Mon Sep 17 00:00:00 2001 From: /Dom <32508991+domroutley@users.noreply.github.com> Date: Tue, 24 Dec 2024 01:29:37 +0000 Subject: [PATCH] Updates the APIM API version to 2024-05-01 (#354) * Updates the API version to 2021-08-01 This is used when communicating to the management API of APIM All versions prior to 2021-08-01 are deprecated and will be phased out starting 1st June 2024. * feat: upgrade API version to latest stable --------- Co-authored-by: blackchoey --- src/constants.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/constants.ts b/src/constants.ts index 17b6157..f5786da 100644 --- a/src/constants.ts +++ b/src/constants.ts @@ -30,7 +30,7 @@ export enum HttpTriggerDirectionContract { export const HttpTriggerAuthLevelAdmin = "admin"; export const FunctionAppKeyLength = 40; export const webAppApiVersion20190801 = "2019-08-01"; -export const apimApiVersion = "2019-12-01"; +export const apimApiVersion = "2024-05-01"; export const maxTokenValidTimeSpan = 29; export const gatewayHostName = "CustomerHostName";