diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index e122d60e7..a93ffdbec 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -3,6 +3,7 @@ Release Notes ## 1.8.11 * Service Bus: Added support for setting max message size. +* WebApp: Add new Premium V3 SKUs: Entry level SKU: `P0V3`, and memory optimised SKUs: `P1MV3, P2MV3, P3MV3, P4MV3, P5MV3`. ## 1.8.10 * Functions: Added support for setting max scale out limit. diff --git a/src/Farmer/Common.fs b/src/Farmer/Common.fs index c7374af27..4e2ffdae3 100644 --- a/src/Farmer/Common.fs +++ b/src/Farmer/Common.fs @@ -1691,9 +1691,15 @@ module WebApp = static member P1V2 = PremiumV2 "P1V2" static member P2V2 = PremiumV2 "P2V2" static member P3V2 = PremiumV2 "P3V2" + static member P0V3 = PremiumV3 "P0V3" static member P1V3 = PremiumV3 "P1V3" static member P2V3 = PremiumV3 "P2V3" static member P3V3 = PremiumV3 "P3V3" + static member P1MV3 = PremiumV3 "P1MV3" + static member P2MV3 = PremiumV3 "P2MV3" + static member P3MV3 = PremiumV3 "P3MV3" + static member P4MV3 = PremiumV3 "P4MV3" + static member P5MV3 = PremiumV3 "P5MV3" static member EP1 = ElasticPremium "EP1" static member EP2 = ElasticPremium "EP2" static member EP3 = ElasticPremium "EP3"