Skip to content

Commit 1fd6745

Browse files
committed
Merge branch 'master' of https://github.com/MicrosoftDocs/azure-docs-pr into load-balancer-seo
2 parents 688edf6 + 4ef573c commit 1fd6745

8 files changed

+31
-47
lines changed

articles/application-gateway/application-gateway-create-probe-ps.md

Lines changed: 3 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,12 @@
11
---
2-
title: Create a custom probe - Azure Application Gateway - PowerShell | Microsoft Docs
2+
title: Create a custom probe using PowerShell
3+
titleSuffix: Azure Application Gateway
34
description: Learn how to create a custom probe for Application Gateway by using PowerShell in Resource Manager
45
services: application-gateway
5-
documentationcenter: na
66
author: vhorne
7-
manager: jpconnock
8-
editor: ''
9-
tags: azure-resource-manager
10-
11-
ms.assetid: 68feb660-7fa4-4f69-a7e4-bdd7bdc474db
127
ms.service: application-gateway
13-
ms.devlang: na
148
ms.topic: article
15-
ms.tgt_pltfrm: na
16-
ms.workload: infrastructure-services
17-
ms.date: 04/26/2017
9+
ms.date: 11/14/2019
1810
ms.author: victorh
1911

2012
---

articles/application-gateway/quick-create-cli.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
11
---
2-
title: Quickstart - Direct web traffic with Azure Application Gateway - Azure CLI | Microsoft Docs
2+
title: 'Quickstart: Direct web traffic using CLI'
3+
titleSuffix: Azure Application Gateway
34
description: Learn how to use the Azure CLI to create an Azure Application Gateway that directs web traffic to virtual machines in a backend pool.
45
services: application-gateway
56
author: vhorne
67
ms.service: application-gateway
78
ms.topic: quickstart
8-
ms.date: 07/19/2019
9+
ms.date: 11/14/2019
910
ms.author: victorh
1011
ms.custom: mvc
11-
1212
---
13+
1314
# Quickstart: Direct web traffic with Azure Application Gateway - Azure CLI
1415

1516
This quickstart shows you how to use Azure CLI to create an application gateway. After creating the application gateway, you test it to make sure it's working correctly. With Azure Application Gateway, you direct your application web traffic to specific resources by assigning listeners to ports, creating rules, and adding resources to a backend pool. This article uses a simple setup with a public front-end IP, a basic listener to host a single site on the application gateway, two virtual machines used for the backend pool, and a basic request routing rule.

articles/application-gateway/quick-create-powershell.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,17 @@
11
---
2-
title: Quickstart - Direct web traffic with Azure Application Gateway - Azure PowerShell | Microsoft Docs
2+
title: 'Quickstart: Direct web traffic using PowerShell'
3+
titleSuffix: Azure Application Gateway
34
description: Learn how to use Azure PowerShell to create an Azure Application Gateway that directs web traffic to virtual machines in a backend pool.
45
services: application-gateway
56
author: vhorne
67
ms.service: application-gateway
78
ms.topic: quickstart
8-
ms.date: 07/17/2019
9+
ms.date: 11/14/2019
910
ms.author: victorh
1011
ms.custom: mvc
1112
---
1213

13-
# Quickstart: Direct web traffic with Azure Application Gateway - Azure PowerShell
14+
# Quickstart: Direct web traffic with Azure Application Gateway using Azure PowerShell
1415

1516
This quickstart shows you how to use Azure PowerShell to quickly create an application gateway. After creating the application gateway, you then test it to make sure it's working correctly. With Azure Application Gateway, you direct your application web traffic to specific resources by assigning listeners to ports, creating rules, and adding resources to a backend pool. For the sake of simplicity, this article uses a simple setup with a public front-end IP, a basic listener to host a single site on this application gateway, two virtual machines used for the backend pool, and a basic request routing rule.
1617

articles/application-gateway/redirect-internal-site-cli.md

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,15 @@
11
---
2-
title: Create an application gateway with internal redirection - Azure CLI | Microsoft Docs
2+
title: Internal redirection using CLI
3+
titleSuffix: Azure Application Gateway
34
description: Learn how to create an application gateway that redirects internal web traffic to the appropriate pool using the Azure CLI.
45
services: application-gateway
56
author: vhorne
6-
manager: jpconnock
7-
editor: tysonn
8-
97
ms.service: application-gateway
10-
ms.devlang: na
118
ms.topic: article
12-
ms.tgt_pltfrm: na
13-
ms.workload: infrastructure-services
14-
ms.date: 7/14/2018
9+
ms.date: 11/14/2019
1510
ms.author: victorh
16-
1711
---
12+
1813
# Create an application gateway with internal redirection using the Azure CLI
1914

2015
You can use the Azure CLI to configure [web traffic redirection](multiple-site-overview.md) when you create an [application gateway](overview.md). In this tutorial, you define a backend pool using a virtual machines scale set. You then configure listeners and rules based on domains that you own to make sure web traffic arrives at the appropriate pool. This tutorial assumes that you own multiple domains and uses examples of *www\.contoso.com* and *www\.contoso.org*.

articles/application-gateway/tutorial-ssl-powershell.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
---
2-
title: Create an application gateway with SSL termination - Azure PowerShell
2+
title: SSL termination using PowerShell
3+
titleSuffix: Azure Application Gateway
34
description: Learn how to create an application gateway and add a certificate for SSL termination using Azure PowerShell.
45
services: application-gateway
56
author: vhorne
67
ms.service: application-gateway
78
ms.topic: article
8-
ms.date: 7/31/2019
9+
ms.date: 11/14/2019
910
ms.author: victorh
1011
ms.custom: mvc
1112
---

articles/azure-functions/functions-bindings-return-value.md

Lines changed: 7 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,7 @@ If there are multiple output bindings, use the return value for only one of them
2525

2626
In C# and C# script, alternative ways to send data to an output binding are `out` parameters and [collector objects](functions-reference-csharp.md#writing-multiple-output-values).
2727

28-
See the language-specific example showing use of the return value:
29-
30-
* [C#](#c-example)
31-
* [C# script (.csx)](#c-script-example)
32-
* [F#](#f-example)
33-
* [JavaScript](#javascript-example)
34-
* [Python](#python-example)
35-
36-
## C# example
28+
# [C#](#tab/csharp)
3729

3830
Here's C# code that uses the return value for an output binding, followed by an async example:
3931

@@ -59,7 +51,7 @@ public static Task<string> Run([QueueTrigger("inputqueue")]WorkItem input, ILogg
5951
}
6052
```
6153

62-
## C# script example
54+
# [C# Script](#tab/csharp-script)
6355

6456
Here's the output binding in the *function.json* file:
6557

@@ -92,7 +84,7 @@ public static Task<string> Run(WorkItem input, ILogger log)
9284
}
9385
```
9486

95-
## F# example
87+
# [F#](#tab/fsharp)
9688

9789
Here's the output binding in the *function.json* file:
9890

@@ -114,7 +106,7 @@ let Run(input: WorkItem, log: ILogger) =
114106
json
115107
```
116108

117-
## JavaScript example
109+
# [JavaScript](#tab/javascript)
118110

119111
Here's the output binding in the *function.json* file:
120112

@@ -137,7 +129,7 @@ module.exports = function (context, input) {
137129
}
138130
```
139131

140-
## Python example
132+
# [Python](#tab/python)
141133

142134
Here's the output binding in the *function.json* file:
143135

@@ -160,6 +152,8 @@ def main(input: azure.functions.InputStream) -> str:
160152
})
161153
```
162154

155+
---
156+
163157
## Next steps
164158

165159
> [!div class="nextstepaction"]

articles/logic-apps/logic-apps-gateway-connection.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ This article shows how to create your Azure gateway resource for a previously [i
2323
2424
For information about how to use the gateway with other services, see these articles:
2525

26-
* [Microsoft Power BI on-premises data gateway](https://powerbi.microsoft.com/documentation/powerbi-gateway-onprem/)
27-
* [Power Automate on-premises data gateway](/power-automate/gateway-reference)
28-
* [Microsoft Power Apps on-premises data gateway](https://powerapps.microsoft.com/tutorials/gateway-management/)
26+
* [Microsoft Power Automate on-premises data gateway](/power-automate/gateway-reference)
27+
* [Microsoft Power BI on-premises data gateway](/power-bi/service-gateway-onprem)
28+
* [Microsoft Power Apps on-premises data gateway](/powerapps/maker/canvas-apps/gateway-reference)
2929
* [Azure Analysis Services on-premises data gateway](../analysis-services/analysis-services-gateway.md)
3030

3131
<a name="supported-connections"></a>

articles/logic-apps/logic-apps-gateway-install.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ ms.date: 11/06/2019
1515

1616
Before you can [connect to on-premises data sources from Azure Logic Apps](../logic-apps/logic-apps-gateway-connection.md), download and install the [on-premises data gateway](https://aka.ms/on-premises-data-gateway-installer) on a local computer. The gateway works as a bridge that provides quick data transfer and encryption between data sources on premises and your logic apps. You can use the same gateway installation with other cloud services, such as Power BI, Power Automate, Power Apps, and Azure Analysis Services. For information about how to use the gateway with these services, see these articles:
1717

18-
* [Microsoft Power BI on-premises data gateway](https://powerbi.microsoft.com/documentation/powerbi-gateway-onprem/)
19-
* [Microsoft Power Apps on-premises data gateway](https://powerapps.microsoft.com/tutorials/gateway-management/)
20-
* [Power Automate on-premises data gateway](/power-automate/gateway-reference)
18+
* [Microsoft Power Automate on-premises data gateway](/power-automate/gateway-reference)
19+
* [Microsoft Power BI on-premises data gateway](/power-bi/service-gateway-onprem)
20+
* [Microsoft Power Apps on-premises data gateway](/powerapps/maker/canvas-apps/gateway-reference)
2121
* [Azure Analysis Services on-premises data gateway](../analysis-services/analysis-services-gateway.md)
2222

2323
This article shows how to download, install, and set up your on-premises data gateway so that you can access on-premises data sources from Azure Logic Apps. You can also learn more about [how the data gateway works](#gateway-cloud-service) later in this topic. For more information about the gateway, see [What is an on-premises gateway](https://docs.microsoft.com/data-integration/gateway/service-gateway-onprem)?

0 commit comments

Comments
 (0)