Skip to content

Commit b4205b9

Browse files
committed
Merge branch 'master' of https://github.com/MicrosoftDocs/azure-docs into FromPublicRepo
2 parents c913850 + a77f964 commit b4205b9

File tree

6 files changed

+15
-14
lines changed

6 files changed

+15
-14
lines changed

articles/active-directory-b2c/active-directory-b2c-access-tokens.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ When requesting an access token, the client application needs to specify the des
7676
> Currently, custom domains are not supported along with access tokens. You must use your tenantName.onmicrosoft.com domain in the request URL.
7777
7878
```
79-
https://login.microsoftonline.com/<tenantName>.onmicrosoft.com/oauth2/v2.0/authorize?p=<yourPolicyId>&client_id=<appID_of_your_client_application>&nonce=anyRandomValue&redirect_uri=<redirect_uri_of_your_client_application>&scope=https%3A%2F%2Fcontoso.onmicrosoft.com%2Fnotes%2Fread&response_type=code
79+
https://login.microsoftonline.com/<tenantName>.onmicrosoft.com/<yourPolicyId>/oauth2/v2.0/authorize?client_id=<appID_of_your_client_application>&nonce=anyRandomValue&redirect_uri=<redirect_uri_of_your_client_application>&scope=https%3A%2F%2Fcontoso.onmicrosoft.com%2Fnotes%2Fread&response_type=code
8080
```
8181

8282
To acquire multiple permissions in the same request, you can add multiple entries in the single **scope** parameter, separated by spaces. For example:

articles/active-directory-b2c/active-directory-b2c-reference-custom-attr.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ ms.author: davidmu
1818
Your Azure Active Directory (Azure AD) B2C directory comes with a built-in set of information (attributes): Given Name, Surname, City, Postal Code, and other attributes. However, every consumer-facing application has unique requirements on what attributes to gather from consumers. With Azure AD B2C, you can extend the set of attributes stored on each consumer account. You can create custom attributes on the [Azure portal](https://portal.azure.com/) and use it in your sign-up policies, as shown below. You can also read and write these attributes by using the [Azure AD Graph API](active-directory-b2c-devquickstarts-graph-dotnet.md).
1919

2020
> [!NOTE]
21-
> Custom attributes use [Azure AD Graph API Directory Schema Extensions](https://msdn.microsoft.com/library/azure/dn720459.aspx).
21+
> Custom attributes use [Azure AD Graph API Directory Schema Extensions](https://msdn.microsoft.com/library/azure/ad/graph/howto/azure-ad-graph-api-directory-schema-extensions).
2222
>
2323
>
2424

articles/app-service/app-service-web-get-started-php.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ When the web app has been created, the Azure CLI shows output similar to the fol
100100
}
101101
```
102102

103-
Browse to your newly created web app. Replace _&lt;app name>_ with a unique app name.
103+
Browse to your newly created web app. Replace _&lt;app name>_ with your unique app name created in the prior step.
104104

105105
```bash
106106
http://<app name>.azurewebsites.net
@@ -166,7 +166,7 @@ git commit -am "updated output"
166166
git push azure master
167167
```
168168

169-
Once deployment has completed, switch back to the browser window that opened in the **Browse to the app** step, and refresh the page.
169+
Once deployment has completed, return to the browser window that opened during the **Browse to the app** step, and refresh the page.
170170

171171
![Updated sample app running in Azure](media/app-service-web-get-started-php/hello-azure-in-browser.png)
172172

@@ -178,11 +178,11 @@ From the left menu, click **App Services**, and then click the name of your Azur
178178

179179
![Portal navigation to Azure web app](./media/app-service-web-get-started-php/php-docs-hello-world-app-service-list.png)
180180

181-
You see your web app's Overview page. Here, you can perform basic management tasks like browse, stop, start, restart, and delete.
181+
Your web app's Overview page will be displayed. Here, you can perform basic management tasks like browse, stop, start, restart, and delete.
182182

183183
![App Service page in Azure portal](media/app-service-web-get-started-php/php-docs-hello-world-app-service-detail.png)
184184

185-
The left menu provides different pages for configuring your app.
185+
The left menu provides different options for configuring your app.
186186

187187
[!INCLUDE [cli-samples-clean-up](../../includes/cli-samples-clean-up.md)]
188188

articles/azure-functions/functions-bindings-storage-table.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,9 @@ public class TableStorage
101101
}
102102
```
103103

104+
> [!NOTE]
105+
> `IQueryable` isn't supported in the [Functions v2 runtime](functions-versions.md). An alternative is to [use a CloudTable paramName method parameter](https://stackoverflow.com/questions/48922485/binding-to-table-storage-in-v2-azure-functions-using-cloudtable) to read the table by using the Azure Storage SDK. If you try to bind to `CloudTable` and get an error message, make sure that you have a reference to [the correct Storage SDK version](#azure-storage-sdk-version-in-functions-1x).
106+
104107
### Input - C# script example 1
105108

106109
The following example shows a table input binding in a *function.json* file and [C# script](functions-reference-csharp.md) code that uses the binding. The function uses a queue trigger to read a single table row.

articles/log-analytics/log-analytics-data-sources-alerts-nagios-zabbix.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ To collect alerts, perform the following steps on the Nagios server.
5353
```
5454
5555
### Configuring Zabbix alert collection
56-
To collect alerts from a Zabbix server, you need to specify a user and password in *clear text*. While not ideal, we recommend that you create the user and grant permissions to monitor onlu.
56+
To collect alerts from a Zabbix server, you need to specify a user and password in *clear text*. While not ideal, we recommend that you create a Zabbix user with read-only permissions to catch relevant alarms.
5757
5858
To collect alerts on the Nagios server, perform the following steps.
5959
@@ -70,7 +70,7 @@ To collect alerts on the Nagios server, perform the following steps.
7070
7171
2. Restart the omsagent daemon
7272
73-
sudo sh /opt/microsoft/omsagent/bin/service_control restart
73+
`sudo sh /opt/microsoft/omsagent/bin/service_control restart`
7474
7575
7676
## Alert records

includes/network-watcher-limits.md

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
| Resource | Default limit | Note |
2-
| --- | --- | --- |
3-
| Network Watcher | 1 per region | |
4-
| Packet Capture sessions |10 per region |# of sessions only, not saved captures |
5-
6-
1+
| Resource | Default limit | Maximum Limit | Note |
2+
| --- | --- | --- | --- |
3+
| Network Watcher | 1 per region | 1 per region | |
4+
| Packet Capture sessions |10 per region | |# of sessions only, not saved captures |

0 commit comments

Comments
 (0)