Skip to content

Commit ae5b51a

Browse files
authored
Merge pull request #88956 from MicrosoftDocs/repo_sync_working_branch
Confirm merge from repo_sync_working_branch to master to sync with https://github.com/Microsoft/azure-docs (branch master)
2 parents 99fdbb0 + b0416d3 commit ae5b51a

File tree

6 files changed

+32
-20
lines changed

6 files changed

+32
-20
lines changed

articles/active-directory/users-groups-roles/groups-dynamic-tutorial.md

Lines changed: 20 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -46,15 +46,26 @@ First, you'll create a group for your guest users who all are from a single part
4646
![select command to start a new group](./media/groups-dynamic-tutorial/new-group.png)
4747
3. On the **Group** blade:
4848

49-
* Select **Security** as the group type
50-
* Enter `Guest users Contoso` as the name and description for the group
51-
* Change **Membership type** to **Dynamic User**
52-
* Select **Add dynamic query**
53-
54-
4. Select **Advanced rule**, and in the **Advanced rule** box, enter:
55-
`(user.userType -eq "Guest") -and (user.companyName -eq "Contoso")`
56-
5. Select **Add query** to close the blade.
57-
6. On the **Group** blade, select **Create** to create the group.
49+
* Select **Security** as the group type.
50+
* Enter `Guest users Contoso` as the name and description for the group.
51+
* Change **Membership type** to **Dynamic User**.
52+
53+
4. Select **Owners** and in the **Add Owners** blade search for any desired owners. Click on the desired owners to add to the selection.
54+
5. Click **Select** to close the **Add Owners** blade.
55+
6. Select **Edit dynamic query** in the **Dynamic user members** box.
56+
7. On the **Dynamic membership rules** blade:
57+
58+
* In the **Property** field, click on the existing value and select **userType**.
59+
* Verify that the **Operator** field has **Equals** selected.
60+
* Select the **Value** field and enter **Guest**.
61+
* Click the **Add Expression** hyperlink to add another line.
62+
* In the **And/Or** field, select **And**.
63+
* In the **Property** field, select **companyName**.
64+
* Verify that the **Operator** field has **Equals** selected.
65+
* In the **Value** field, enter **Contoso**.
66+
* Click **Save** to close the **Dynamic membership rules** blade.
67+
68+
8. On the **Group** blade, select **Create** to create the group.
5869

5970
## Assign licenses
6071

articles/api-management/api-management-configuration-repository-git.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ git clone https://username:password@{name}.scm.azure-api.net/
9494
If this provides an error, try URL encoding the password portion of the command. One quick way to do this is to open Visual Studio, and issue the following command in the **Immediate Window**. To open the **Immediate Window**, open any solution or project in Visual Studio (or create a new empty console application), and choose **Windows**, **Immediate** from the **Debug** menu.
9595

9696
```
97-
?System.NetWebUtility.UrlEncode("password from the Azure portal")
97+
?System.Net.WebUtility.UrlEncode("password from the Azure portal")
9898
```
9999

100100
Use the encoded password along with your user name and repository location to construct the git command.

articles/governance/management-groups/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ above subscriptions. You organize subscriptions into containers called "manageme
1717
apply your governance conditions to the management groups. All subscriptions within a management
1818
group automatically inherit the conditions applied to the management group. Management groups give
1919
you enterprise-grade management at a large scale no matter what type of subscriptions you might
20-
have.
20+
have. All subscriptions within a single management group must trust the same Azure Active Directory tenant.
2121

2222
For example, you can apply policies to a management group that limits the regions available for
2323
virtual machine (VM) creation. This policy would be applied to all management groups,

articles/iot-edge/tutorial-csharp-module.md

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -207,14 +207,16 @@ Currently, Visual Studio Code can develop C# modules for Linux AMD64 and Linux A
207207
{
208208
Console.WriteLine($"Machine temperature {messageBody.machine.temperature} " +
209209
$"exceeds threshold {temperatureThreshold}");
210-
var filteredMessage = new Message(messageBytes);
211-
foreach (KeyValuePair<string, string> prop in message.Properties)
210+
using (var filteredMessage = new Message(messageBytes))
212211
{
213-
filteredMessage.Properties.Add(prop.Key, prop.Value);
214-
}
212+
foreach (KeyValuePair<string, string> prop in message.Properties)
213+
{
214+
filteredMessage.Properties.Add(prop.Key, prop.Value);
215+
}
215216

216-
filteredMessage.Properties.Add("MessageType", "Alert");
217-
await moduleClient.SendEventAsync("output1", filteredMessage);
217+
filteredMessage.Properties.Add("MessageType", "Alert");
218+
await moduleClient.SendEventAsync("output1", filteredMessage);
219+
}
218220
}
219221

220222
// Indicate that the message treatment is completed.

articles/marketplace/partner-center-portal/saas-metered-billing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ As an example, Contoso is a publisher with a SaaS service called Contoso Notific
5050
* Beyond the 50000 emails, pay $0.5 for every 100 emails
5151
* Beyond the 10000 texts, pay $0.01 for every text
5252

53-
An Azure customer subscribing to CNS service will be able to send the included quantity of text and emails per month based on the plan selected. When customers consume more than the included quantity, they do not have to change plans or do anything different. Contoso will measure the overage beyond the included quantity and start emitting usage events to Microsoft for additional usage using the [Marketplace metering service API](./marketplace-metering-service-apis.md). Microsoft in turn will charge the customer for the additional usage as specified by the publisher.
53+
An Azure customer subscribing to CNS service will be able to send the included quantity of text and emails per month based on the plan selected. Contoso measures the usage up to the included quantity without sending any usage events to Microsoft. When customers consume more than the included quantity, they do not have to change plans or do anything different. Contoso will measure the overage beyond the included quantity and start emitting usage events to Microsoft for additional usage using the [Marketplace metering service API](./marketplace-metering-service-apis.md). Microsoft in turn will charge the customer for the additional usage as specified by the publisher.
5454

5555
## Billing dimensions
5656

articles/vpn-gateway/vpn-gateway-troubleshoot-vpn-point-to-site-connection-problems.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,7 @@ To resolve this problem, follow these steps:
4343
| Certificate | Location |
4444
| ------------- | ------------- |
4545
| AzureClient.pfx | Current User\Personal\Certificates |
46-
| Azuregateway-*GUID*.cloudapp.net | Current User\Trusted Root Certification Authorities|
47-
| AzureGateway-*GUID*.cloudapp.net, AzureRoot.cer | Local Computer\Trusted Root Certification Authorities|
46+
| AzureRoot.cer | Local Computer\Trusted Root Certification Authorities|
4847

4948
3. Go to C:\Users\<UserName>\AppData\Roaming\Microsoft\Network\Connections\Cm\<GUID>, manually install the certificate (*.cer file) on the user and computer's store.
5049

0 commit comments

Comments
 (0)