Skip to content

Commit 76760ac

Browse files
committed
Merge branch 'master' of https://github.com/MicrosoftDocs/azure-docs-pr into melvyn-asc-alerts_ref
2 parents f7cce86 + 840af0a commit 76760ac

File tree

53 files changed

+249
-429
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

53 files changed

+249
-429
lines changed

.openpublishing.redirection.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5705,6 +5705,11 @@
57055705
"redirect_url": "/azure/connectors/connectors-create-api-sharepoint",
57065706
"redirect_document_id": false
57075707
},
5708+
{
5709+
"source_path": "articles/connectors/connectors-native-query.md",
5710+
"redirect_url": "/azure/logic-apps/logic-apps-perform-data-operations#filter-array-action",
5711+
"redirect_document_id": false
5712+
},
57085713
{
57095714
"source_path": "articles/logic-apps/logic-apps-enterprise-integration-as2-encode.md",
57105715
"redirect_url": "/azure/logic-apps/logic-apps-enterprise-integration-as2",

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ Follow these best practices when setting up your app and authentication:
2626

2727
## <a name="express"> </a>Configure with express settings
2828

29-
1. In the [Azure portal], go to your App Service app.
30-
1. Select **Settings** > **Authentication / Authorization** in the left pane, and make sure that **App Service Authentication** is **On**.
31-
1. Select **Azure Active Directory**, and then select **Express** under **Management Mode**.
29+
1. In the [Azure portal], search for and select **App Services**, and then select your app.
30+
1. In the left pane, under **Settings** select **Authentication / Authorization** and make sure that **App Service Authentication** is **On**.
31+
1. Select **Azure Active Directory**, and then under **Management Mode** select **Express**.
3232
1. Select **OK** to register the App Service app in Azure Active Directory. A new app registration is created.
3333

3434
If you want to choose an existing app registration instead:
@@ -62,7 +62,7 @@ You'll need the following information when you configure your App Service app:
6262

6363
Perform the following steps:
6464

65-
1. Sign in to the [Azure portal] and go to your App Service app. Note your app's **URL**. You'll use it to configure your Azure Active Directory app registration.
65+
1. Sign in to the [Azure portal], search for and select **App Services**, and then select your app. Note your app's **URL**. You'll use it to configure your Azure Active Directory app registration.
6666
1. Select **Azure Active Directory** > **App registrations** > **New registration**.
6767
1. In the **Register an application** page, enter a **Name** for your app registration.
6868
1. In **Redirect URI**, select **Web** and enter the URL of your App Service app and append the path `/.auth/login/aad/callback`. For example, `https://contoso.azurewebsites.net/.auth/login/aad/callback`.
@@ -83,8 +83,8 @@ Perform the following steps:
8383

8484
### <a name="secrets"> </a>Add Azure Active Directory information to your App Service app
8585

86-
1. In the [Azure portal], go to your App Service app.
87-
1. Select **Settings > Authentication / Authorization** in the left pane, and make sure that **App Service Authentication** is **On**.
86+
1. In the [Azure portal], search for and select **App Services**, and then select your app.
87+
1. In the left pane, under **Settings**, select **Authentication / Authorization** and make sure that **App Service Authentication** is **On**.
8888
1. (Optional) By default, App Service authentication allows unauthenticated access to your app. To enforce user authentication, set **Action to take when request is not authenticated** to **Log in with Azure Active Directory**.
8989
1. Under Authentication Providers, select **Azure Active Directory**.
9090
1. In **Management mode**, select **Advanced** and configure App Service authentication according to the following table:

articles/app-service/configure-common.md

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,11 @@ This topic explains how to configure common settings for web apps, mobile back e
1616

1717
In App Service, app settings are variables passed as environment variables to the application code. For Linux apps and custom containers, App Service passes app settings to the container using the `--env` flag to set the environment variable in the container.
1818

19-
In the [Azure portal], navigate to your app's management page. In the app's left menu, click **Configuration** > **Application settings**.
19+
In the [Azure portal], search for and select **App Services**, and then select your app.
20+
21+
![Search for App Services](./media/configure-common/search-for-app-services.png)
22+
23+
In the app's left menu, select **Configuration** > **Application settings**.
2024

2125
![Application Settings](./media/configure-common/open-ui.png)
2226

@@ -77,7 +81,7 @@ App settings have the following JSON formatting:
7781

7882
## Configure connection strings
7983

80-
In the [Azure portal], navigate to the app's management page. In the app's left menu, click **Configuration** > **Application settings**.
84+
In the [Azure portal], search for and select **App Services**, and then select your app. In the app's left menu, select **Configuration** > **Application settings**.
8185

8286
![Application Settings](./media/configure-common/open-ui.png)
8387

@@ -148,7 +152,7 @@ Connection strings have the following JSON formatting:
148152

149153
## Configure general settings
150154

151-
In the [Azure portal], navigate to the app's management page. In the app's left menu, click **Configuration** > **Application settings**.
155+
In the [Azure portal], search for and select **App Services**, and then select your app. In the app's left menu, select **Configuration** > **General settings**.
152156

153157
![General settings](./media/configure-common/open-general.png)
154158

@@ -171,19 +175,19 @@ Here, you can configure some common settings for the app. Some settings require
171175

172176
This setting is only for Windows apps.
173177

174-
In the [Azure portal], navigate to the app's management page. In the app's left menu, click **Configuration** > **Default documents**.
178+
In the [Azure portal], search for and select **App Services**, and then select your app. In the app's left menu, select **Configuration** > **Default documents**.
175179

176-
![General settings](./media/configure-common/open-documents.png)
180+
![Default documents](./media/configure-common/open-documents.png)
177181

178182
The default document is the web page that's displayed at the root URL for a website. The first matching file in the list is used. To add a new default document, click **New document**. Don't forget to click **Save**.
179183

180184
If the app uses modules that route based on URL instead of serving static content, there is no need for default documents.
181185

182186
## Configure path mappings
183187

184-
In the [Azure portal], navigate to the app's management page. In the app's left menu, click **Configuration** > **Path mappings**.
188+
In the [Azure portal], search for and select **App Services**, and then select your app. In the app's left menu, select **Configuration** > **Path mappings**.
185189

186-
![General settings](./media/configure-common/open-path.png)
190+
![Path mappings](./media/configure-common/open-path.png)
187191

188192
The **Path mappings** page shows you different things based on the OS type.
189193

articles/app-service/deploy-staging-slots.md

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,11 @@ To scale your app to a different tier, make sure that the target tier supports t
2828
## Add a slot
2929
The app must be running in the **Standard**, **Premium**, or **Isolated** tier in order for you to enable multiple deployment slots.
3030

31-
1. In the [Azure portal](https://portal.azure.com/), open your app's [resource page](../azure-resource-manager/management/manage-resources-portal.md#manage-resources).
31+
32+
1. in the [Azure portal](https://portal.azure.com/), search for and select **App Services** and select your app.
33+
34+
![Search for App Services](./media/web-sites-staged-publishing/search-for-app-services.png)
35+
3236

3337
2. In the left pane, select **Deployment slots** > **Add Slot**.
3438

@@ -237,7 +241,7 @@ After the setting is saved, the specified percentage of clients is randomly rout
237241
After a client is automatically routed to a specific slot, it's "pinned" to that slot for the life of that client session. On the client browser, you can see which slot your session is pinned to by looking at the `x-ms-routing-name` cookie in your HTTP headers. A request that's routed to the "staging" slot has the cookie `x-ms-routing-name=staging`. A request that's routed to the production slot has the cookie `x-ms-routing-name=self`.
238242

239243
> [!NOTE]
240-
> Next to the Azure Portal, you can also use the [`az webapp traffic-routing set`](/cli/azure/webapp/traffic-routing#az-webapp-traffic-routing-set) command in the Azure CLI to set the routing percentages from CI/CD tools like DevOps pipelines or other automation systems.
244+
> Next to the Azure portal, you can also use the [`az webapp traffic-routing set`](/cli/azure/webapp/traffic-routing#az-webapp-traffic-routing-set) command in the Azure CLI to set the routing percentages from CI/CD tools like DevOps pipelines or other automation systems.
241245
>
242246
243247
### Route production traffic manually
@@ -264,7 +268,7 @@ By default, new slots are given a routing rule of `0%`, shown in grey. When you
264268

265269
## Delete a slot
266270

267-
Go to your app's resource page. Select **Deployment slots** > *\<slot to delete>* > **Overview**. Select **Delete** on the command bar.
271+
Search for and select your app. Select **Deployment slots** > *\<slot to delete>* > **Overview**. Select **Delete** on the command bar.
268272

269273
![Delete a deployment slot](./media/web-sites-staged-publishing/DeleteStagingSiteButton.png)
270274

@@ -323,16 +327,16 @@ Get-AzLog -ResourceGroup [resource group name] -StartTime 2018-03-07 -Caller Slo
323327
Remove-AzResource -ResourceGroupName [resource group name] -ResourceType Microsoft.Web/sites/slots –Name [app name]/[slot name] -ApiVersion 2015-07-01
324328
```
325329

326-
## Automate with ARM templates
330+
## Automate with Resource Manager templates
327331

328-
[ARM Templates](https://docs.microsoft.com/azure/azure-resource-manager/template-deployment-overview) are declarative JSON files used to automate the deployment and configuration of Azure resources. To swap slots using ARM templates, you will set two properties on the *Microsoft.Web/sites/slots* and *Microsoft.Web/sites* resources:
332+
[Azure Resource Manager templates](https://docs.microsoft.com/azure/azure-resource-manager/template-deployment-overview) are declarative JSON files used to automate the deployment and configuration of Azure resources. To swap slots by using Resource Manager templates, you will set two properties on the *Microsoft.Web/sites/slots* and *Microsoft.Web/sites* resources:
329333

330334
- `buildVersion`: this is a string property which represents the current version of the app deployed in the slot. For example: "v1", "1.0.0.1", or "2019-09-20T11:53:25.2887393-07:00".
331335
- `targetBuildVersion`: this is a string property that specifies what `buildVersion` the slot should have. If the targetBuildVersion does not equal the current `buildVersion`, then this will trigger the swap operation by finding the slot which has the specified `buildVersion`.
332336

333-
### Example ARM Template
337+
### Example Resource Manager template
334338

335-
The following ARM template will update the `buildVersion` of the staging slot and set the `targetBuildVersion` on the production slot. This will swap the two slots. The template assumes you already have a webapp created with a slot named "staging".
339+
The following Resource Manager template will update the `buildVersion` of the staging slot and set the `targetBuildVersion` on the production slot. This will swap the two slots. The template assumes you already have a webapp created with a slot named "staging".
336340

337341
```json
338342
{
@@ -376,7 +380,7 @@ The following ARM template will update the `buildVersion` of the staging slot an
376380
}
377381
```
378382

379-
This ARM template is idempotent, meaning that it can be executed repeatedly and produce the same state of the slots. After the first execution, `targetBuildVersion` will match the current `buildVersion`, so a swap will not be triggered.
383+
This Resource Manager template is idempotent, meaning that it can be executed repeatedly and produce the same state of the slots. After the first execution, `targetBuildVersion` will match the current `buildVersion`, so a swap will not be triggered.
380384

381385
<!-- ======== Azure CLI =========== -->
382386

65 KB
Loading
65 KB
Loading

articles/backup/backup-azure-mabs-troubleshoot.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Troubleshoot Azure Backup Server
33
description: Troubleshoot installation, registration of Azure Backup Server, and backup and restore of application workloads.
44
ms.reviewer: srinathv
5-
ms.topic: conceptual
5+
ms.topic: troubleshooting
66
ms.date: 07/05/2019
77
---
88

articles/backup/backup-azure-mars-troubleshoot.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Troubleshoot the Azure Backup agent
33
description: In this article, learn how to troubleshoot the installation and registration of the Azure Backup agent.
44
ms.reviewer: saurse
5-
ms.topic: conceptual
5+
ms.topic: troubleshooting
66
ms.date: 07/15/2019
77
---
88

articles/backup/backup-azure-sap-hana-database-troubleshoot.md

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
---
2-
3-
42
title: Troubleshoot SAP HANA databases backup errors
53
description: Describes how to troubleshoot common errors that might occur when you use Azure Backup to back up SAP HANA databases.
6-
ms.topic: conceptual
4+
ms.topic: troubleshooting
75
ms.date: 11/7/2019
86
---
97

@@ -81,27 +79,27 @@ Take care of inputs while restoring a single container database (SDC) for HANA t
8179

8280
Assume an SDC HANA instance "H21" is backed up. The backup items page will show the backup item name as **"h21(sdc)"**. If you attempt to restore this database to another target SDC, say H11, then following inputs need to be provided.
8381

84-
![SDC restore inputs](media/backup-azure-sap-hana-database/hana-sdc-restore.png)
82+
![Restored SDC database name](media/backup-azure-sap-hana-database/hana-sdc-restore.png)
8583

8684
Note the following points:
8785

88-
- By default, the restored db name will be populated with the backup item name i.e., h21(sdc)
86+
- By default, the restored db name will be populated with the backup item name. In this case, h21(sdc).
8987
- Selecting the target as H11 will NOT change the restored db name automatically. **It should be edited to h11(sdc)**. Regarding SDC, the restored db name will be the target instance ID with lowercase letters and 'sdc' appended in brackets.
9088
- Since SDC can have only single database, you also need to click the checkbox to allow override of the existing database data with the recovery point data.
91-
- Linux is case-sensitive. Therefore, be careful to preserve the case.
89+
- Linux is case-sensitive. So be careful to preserve the case.
9290

9391
### Multiple Container Database (MDC) restore
9492

95-
In multiple container databases for HANA, the standard configuration is SYSTEMDB + 1 or more Tenant DBs. Restoring an entire SAP HANA instance means to restore both SYSTEMDB and Tenant DBs. One restores SYSTEMDB first and then proceeds for Tenant DB. System DB essentially means to override the system information on the selected target. This restore also overrides the BackInt related information in the target instance. Therefore, after the system DB is restored to a target instance, one needs to run the pre-registration script again. Only then the subsequent tenant DB restores will succeed.
93+
In multiple container databases for HANA, the standard configuration is SYSTEMDB + 1 or more Tenant DBs. Restoring an entire SAP HANA instance means to restore both SYSTEMDB and Tenant DBs. One restores SYSTEMDB first and then proceeds for Tenant DB. System DB essentially means to override the system information on the selected target. This restore also overrides the BackInt related information in the target instance. So after the system DB is restored to a target instance, run the pre-registration script again. Only then the subsequent tenant DB restores will succeed.
9694

9795
## Upgrading from SAP HANA 1.0 to 2.0
9896

99-
If you're protecting SAP HANA 1.0 databases and wish to upgrade to 2.0, then perform the steps outlined below:
97+
If you're protecting SAP HANA 1.0 databases and wish to upgrade to 2.0, then perform the following steps:
10098

10199
- [Stop protection](sap-hana-db-manage.md#stop-protection-for-an-sap-hana-database) with retain data for old SDC database.
102100
- Perform the upgrade. After completion, the HANA is now MDC with a system DB and tenant DB(s)
103101
- Rerun [pre-registration script](https://aka.ms/scriptforpermsonhana) with correct details of (sid and mdc).
104-
- Re-register extension for the same machine in Azure Portal (Backup -> view details -> Select the relevant Azure VM -> Re-register).
102+
- Re-register extension for the same machine in Azure portal (Backup -> view details -> Select the relevant Azure VM -> Re-register).
105103
- Click Rediscover DBs for the same VM. This action should show the new DBs in step 2 with correct details (SYSTEMDB and Tenant DB, not SDC).
106104
- Configure backup for these new databases.
107105

articles/backup/backup-azure-scdpm-troubleshooting.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Troubleshoot System Center Data Protection Manager
33
description: In this article, discover solutions for issues that you might encounter while using System Center Data Protection Manager.
4-
ms.topic: conceptual
4+
ms.topic: troubleshooting
55
ms.date: 01/30/2019
66
---
77

0 commit comments

Comments
 (0)