You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -159,7 +159,7 @@ az appservice plan list --query "[?id=='$appServicePlanId'].sku.tier" --output t
159
159
160
160
In the previous example replace `<RESOURCE_GROUP>` and `<FUNCTION_APP_NAME>` with the resource group and function app names, respective.
161
161
162
-
# [Azure PowerShell](#tab/azure-powershell)
162
+
###[Azure PowerShell](#tab/azure-powershell)
163
163
164
164
Run the following Azure PowerShell command to get your hosting plan type:
165
165
@@ -176,7 +176,7 @@ In the previous example replace `<RESOURCE_GROUP>` and `<FUNCTION_APP_NAME>` wit
176
176
177
177
## Plan migration
178
178
179
-
You can use either the Azure portal or Azure CLI commands to migrate a function app between a Consumption plan and a Premium plan on Windows. When migrating between plans, keep in mind the following considerations:
179
+
You can migrate a function app between a Consumption plan and a Premium plan on Windows. When migrating between plans, keep in mind the following considerations:
180
180
181
181
+ Direct migration to a Dedicated (App Service) plan isn't currently supported.
182
182
+ Migration isn't supported on Linux.
@@ -185,6 +185,24 @@ You can use either the Azure portal or Azure CLI commands to migrate a function
185
185
+ Downtime in your function executions occurs as the function app is migrated between plans.
186
186
+ State and other app-specific content is maintained, since the same Azure Files share is used by the app both before and after migration.
187
187
188
+
You can migrate your plan using these tools:
189
+
190
+
### [Portal](#tab/portal)
191
+
192
+
You can use the [Azure portal](https://portal.azure.com) to switch to a different plan.
193
+
194
+
### [Azure CLI](#tab/azure-cli)
195
+
196
+
You can use the Azure CLI commands to manually create a new plan, switch your app to use the new plan, and delete the original plan.
197
+
198
+
### [Azure PowerShell](#tab/azure-powershell)
199
+
200
+
You can use Azure PowerShell commands to manually create a new plan, switch your app to use the new plan, and delete the original plan.
201
+
202
+
---
203
+
204
+
Choose the direction of the migration for your app on Windows.
0 commit comments