Skip to content

Commit 44d00f3

Browse files
committed
376112-content-pattern-metadata-updates-app-service
1 parent 2aa19ae commit 44d00f3

12 files changed

+102
-104
lines changed

articles/app-service/app-service-undelete.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ If you deleted your app in Azure App Service, you can restore it from the portal
1919
1. Go to App Services in the Azure portal.
2020
1. Select **Manage Deleted Apps**.
2121
1. Select **Subscription**.
22-
1. From the dropdown, select the deleted app. Apps deleted in the last 30 days appear in the dropdown list.
22+
1. From the dropdown, select the deleted app. Apps that were deleted in the last 30 days appear in the dropdown list.
2323
1. Select the destination app from the dropdown that correlates to where you want to restore your app.
2424
1. If you would like to restore the deleted app to a slot of the destination app, select the slot checkbox and select available slots from the dropdown.
2525
1. By default, only app content is restored. If you want app configuration to also be restored, select **Restore App configuration**.
@@ -44,7 +44,7 @@ Some customers might experience failure to retrieve the list of deleted apps. To
4444

4545
To access the collection of deleted apps, you can use `Get-AzDeletedWebApp`.
4646

47-
For details on a specific deleted app you can use:
47+
To get details on a specific deleted app, you can use:
4848

4949
```powershell
5050
Get-AzDeletedWebApp -Name <your_deleted_app> -Location <your_deleted_app_location>
@@ -85,7 +85,7 @@ Restore to a different app name:
8585
Restore-AzDeletedWebApp -ResourceGroupName <original_rg> -Name <original_app> -TargetResourceGroupName <target_rg> -TargetName <target_app> -TargetAppServicePlanName <target_asp>
8686
```
8787

88-
Restore a slot to target app:
88+
Restore a slot to the target app:
8989

9090
```powershell
9191
Restore-AzDeletedWebApp -TargetResourceGroupName <my_rg> -Name <my_app> -TargetAppServicePlanName <my_asp> -Slot <original_slot>
@@ -115,7 +115,7 @@ The inputs for command are:
115115
- **`TargetName`**: Target app to which you're restoring the deleted app.
116116
- **`TargetAppServicePlanName`**: App Service plan linked to the app.
117117
- **Name**: Name for the app. We recommend that it's globally unique.
118-
- **`ResourceGroupName`**: Original resource group for the deleted app. You can get it from `Get-AzDeletedWebApp -Name <your_deleted_app> -Location <your_deleted_app_location>`
118+
- **`ResourceGroupName`**: Original resource group for the deleted app. You can get it from `Get-AzDeletedWebApp -Name <your_deleted_app> -Location <your_deleted_app_location>`.
119119
- **Slot**: Slot for the deleted app.
120120
- **`RestoreContentOnly`**: By default `Restore-AzDeletedWebApp` restores both your app configuration as well any content. If you want to only restore content, you can use the `-RestoreContentOnly` flag with this cmdlet.
121121

@@ -126,13 +126,13 @@ The inputs for command are:
126126

127127
If a function app was hosted on a **Dedicated app service plan**, it can be restored, as long as it used the default App Service storage.
128128

129-
Fetch the `DeletedSiteId` of the app version you want to restore, by using `Get-AzDeletedWebApp` cmdlet:
129+
1. Fetch the `DeletedSiteId` of the app version you want to restore, by using the `Get-AzDeletedWebApp` cmdlet:
130130

131131
```powershell
132132
Get-AzDeletedWebApp -ResourceGroupName <RGofDeletedApp> -Name <NameofApp>
133133
```
134134

135-
Create a new function app in a Dedicated plan. Refer to the instructions for [how to create an app in the portal](../azure-functions/functions-create-function-app-portal.md#create-a-function-app). Restore to the newly created function app by using this cmdlet:
135+
2. Create a new function app in a Dedicated plan. Refer to the instructions for [how to create an app in the portal](../azure-functions/functions-create-function-app-portal.md#create-a-function-app). Restore to the newly created function app by using this cmdlet:
136136

137137
```powershell
138138
Restore-AzDeletedWebApp -ResourceGroupName <RGofnewapp> -Name <newApp> -deletedId "/subscriptions/xxxx/providers/Microsoft.Web/locations/xxxx/deletedSites/xxxx"
@@ -145,6 +145,6 @@ Currently there's no support to use the `Restore-AzDeletedWebApp` cmdlet to unde
145145

146146
| App Setting | Suggested value |
147147
| ------------ | ---------------- |
148-
| `AzureWebJobsStorage` | Connection string for the storage account used by the deleted app. |
149-
| `WEBSITE_CONTENTAZUREFILECONNECTIONSTRING` | Connection string for the storage account used by the deleted app. |
150-
| `WEBSITE_CONTENTSHARE` | File share on storage account used by the deleted app. |
148+
| `AzureWebJobsStorage` | Connection string for the storage account used by the deleted app |
149+
| `WEBSITE_CONTENTAZUREFILECONNECTIONSTRING` | Connection string for the storage account used by the deleted app |
150+
| `WEBSITE_CONTENTSHARE` | File share on storage account used by the deleted app |

articles/app-service/configure-authentication-provider-google.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Configure Google authentication
2+
title: Configure Google Authentication
33
description: Learn how to configure Google authentication as an identity provider for your App Service or Azure Functions app.
44
ms.assetid: 2b2f9abf-9120-4aac-ac5b-4a268d9b6e2b
55
ms.topic: how-to

0 commit comments

Comments
 (0)