Skip to content

Commit 14b3c4b

Browse files
authored
Merge pull request #239026 from MicrosoftDocs/repo_sync_working_branch
Resolve syncing conflicts from repo_sync_working_branch to main
2 parents aa477f6 + 4ed97c7 commit 14b3c4b

File tree

13 files changed

+73
-19
lines changed

13 files changed

+73
-19
lines changed

articles/active-directory/fundamentals/customize-branding.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,12 @@ The **Global Administrator** role is required to customize company branding.
4040

4141
## Before you begin
4242

43-
You can customize the sign-in experience when users sign in to your organization's tenant-specific apps, such as `https://outlook.com/woodgrove.com`, or when passing a domain variable, such as `https://passwordreset.microsoftonline.com/?whr=woodgrove.com`.
43+
You can customize the sign-in experience when users sign in to your organization by passing a domain variable:
44+
Microsoft 365 Portal: `https://login.microsoftonline.com/?whr=contoso.com`
45+
Outlook: `https://outlook.com/contoso.com`
46+
Teams: `https://teams.microsoft.com/?tenantId=contoso.com`
47+
MyApps: `http://myapps.microsoft.com/?whr=contoso.com`
48+
Azure AD Self-service Password Reset: `https://passwordreset.microsoftonline.com/?whr=contoso.com`
4449

4550
Custom branding appears after users sign in. Users that start the sign-in process at a site like www\.office.com won't see the branding. After users sign in, the branding may take at least 15 minutes to appear.
4651

169 KB
Loading

articles/active-directory/fundamentals/users-default-permissions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ You can restrict default permissions for member users in the following ways:
6666
The **Restrict non-admin users from creating tenants** option is shown [below](https://portal.azure.com/#view/Microsoft_AAD_IAM/ActiveDirectoryMenuBlade/~/UserSettings)
6767

6868

69-
:::image type="content" source="media/user-default-permissions/tenant-creation.png" alt-text="Screenshot showing the option to **Restrict non-admins from creating tenants**":::
69+
:::image type="content" source="media/user-default-permissions/tenant-creation-restriction.png" alt-text="Screenshot showing the option to Restrict non-admins from creating tenants." lightbox="media/user-default-permissions/tenant-creation-restriction.png":::
7070

7171
## Restrict guest users' default permissions
7272

articles/active-directory/managed-identities-azure-resources/tutorial-windows-vm-ua-arm.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ Update-AzVM -ResourceGroupName TestRG -VM $vm -IdentityType "UserAssigned" -Iden
118118

119119
This section shows how to grant your user-assigned identity access to a Resource Group in Azure Resource Manager. Managed identities for Azure resources provide identities that your code can use to request access tokens to authenticate to resource APIs that support Azure AD authentication. In this tutorial, your code will access the Azure Resource Manager API.
120120

121-
Before your code can access the API, you need to grant the identity access to a resource in Azure Resource Manager. In this case, the Resource Group in which the VM is contained. Update the value for `<SUBSCRIPTION ID>` as appropriate for your environment.
121+
Before your code can access the API, you need to grant the identity access to a resource in Azure Resource Manager. In this case, the Resource Group in which the VM is contained. Update the value for `<SUBSCRIPTIONID>` as appropriate for your environment.
122122

123123
```azurepowershell-interactive
124124
$spID = (Get-AzUserAssignedIdentity -ResourceGroupName myResourceGroupVM -Name ID1).principalid
@@ -128,8 +128,8 @@ New-AzRoleAssignment -ObjectId $spID -RoleDefinitionName "Reader" -Scope "/subsc
128128
The response contains details for the role assignment created, similar to the following example:
129129

130130
```azurepowershell
131-
RoleAssignmentId: /subscriptions/80c696ff-5efa-4909-a64d-f1b616f423ca/resourcegroups/myResourceGroupVM/providers/Microsoft.Authorization/roleAssignments/f9cc753d-265e-4434-ae19-0c3e2ead62ac
132-
Scope: /subscriptions/80c696ff-5efa-4909-a64d-f1b616f423ca/resourcegroups/myResourceGroupVM
131+
RoleAssignmentId: /subscriptions/<SUBSCRIPTIONID>/resourcegroups/myResourceGroupVM/providers/Microsoft.Authorization/roleAssignments/f9cc753d-265e-4434-ae19-0c3e2ead62ac
132+
Scope: /subscriptions/<SUBSCRIPTIONID>/resourcegroups/myResourceGroupVM
133133
DisplayName: ID1
134134
SignInName:
135135
RoleDefinitionName: Reader

articles/application-gateway/application-gateway-metrics.md

Lines changed: 18 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -27,34 +27,41 @@ Application Gateway provides several built‑in timing metrics related to the re
2727
2828
- **Backend connect time**
2929

30-
Time spent establishing a connection with the backend application.
30+
*Aggregation type:Avg/Max*
3131

32-
This includes the network latency as well as the time taken by the backend server’s TCP stack to establish new connections. For TLS, it also includes the time spent on handshake.
32+
Time spent establishing a connection with the backend application.
33+
34+
This includes the network latency as well as the time taken by the backend server’s TCP stack to establish new connections. For TLS, it also includes the time spent on handshake.
3335

3436
- **Backend first byte response time**
3537

36-
Time interval between start of establishing a connection to backend server and receiving the first byte of the response header.
38+
*Aggregation type:Avg/Max*
39+
40+
Time interval between start of establishing a connection to backend server and receiving the first byte of the response header.
3741

38-
This approximates the sum of *Backend connect time*, time taken by the request to reach the backend from Application Gateway, time taken by backend application to respond (the time the server took to generate content, potentially fetch database queries), and the time taken by first byte
39-
of the response to reach the Application Gateway from the backend.
42+
This approximates the sum of *Backend connect time*, time taken by the request to reach the backend from Application Gateway, time taken by backend application to respond (the time the server took to generate content, potentially fetch database queries), and the time taken by first byte of the response to reach the Application Gateway from the backend.
4043

4144
- **Backend last byte response time**
4245

43-
Time interval between start of establishing a connection to backend server and receiving the last byte of the response body.
46+
*Aggregation type:Avg/Max*
47+
48+
Time interval between start of establishing a connection to backend server and receiving the last byte of the response body.
4449

45-
This approximates the sum of *Backend first byte response time* and data transfer time (this number may vary greatly depending on the size of objects requested and the latency of the server network).
50+
This approximates the sum of *Backend first byte response time* and data transfer time (this number may vary greatly depending on the size of objects requested and the latency of the server network).
4651

4752
- **Application gateway total time**
4853

49-
Average time that it takes for a request to be received, processed and its response to be sent.
54+
*Aggregation type:Avg/Max*
5055

51-
This is the interval from the time when Application Gateway receives the first byte of the HTTP request to the time when the last response byte has been sent to the client. This includes the processing time taken by Application Gateway, the *Backend last byte response time*, and the time taken by Application Gateway to send all the response.
56+
This metric captures either the Average/Max time taken for a request to be received, processed and its response to be sent.
5257

53-
- **Client RTT**
58+
This is the interval from the time when Application Gateway receives the first byte of the HTTP request to the time when the last response byte has been sent to the client. This includes the processing time taken by Application Gateway, the *Backend last byte response time*, and the time taken by Application Gateway to send all the response.
5459

55-
Average round trip time between clients and Application Gateway.
60+
- **Client RTT**
5661

62+
*Aggregation type:Avg/Max*
5763

64+
This metric captures the Average/Max round trip time between clients and Application Gateway.
5865

5966
These metrics can be used to determine whether the observed slowdown is due to the client network, Application Gateway performance, the backend network and backend server TCP stack saturation, backend application performance, or large file size.
6067

90.1 KB
Loading
558 KB
Loading
Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
---
2+
title: Convert Map and Filled map visuals to an Azure Maps Visual
3+
titleSuffix: Microsoft Azure Maps Power BI visual
4+
description: This article covers how to convert Map and Filled map visuals to an Azure Maps Visual.
5+
author: deniseatmicrosoft
6+
ms.author: limingchen
7+
ms.date: 05/23/2023
8+
ms.topic: how-to
9+
ms.service: azure-maps
10+
services: azure-maps
11+
---
12+
13+
# Convert Map and Filled map visuals to an Azure Maps Visual
14+
15+
The Azure Maps Visual is now Generally Available, providing a streamlined and intuitive experience for working with your data.
16+
17+
## How to convert your existing Map and Filled map visuals
18+
19+
A conversion function is available in Power BI desktop to convert any existing Map and Filled map visuals to the new Azure Maps Visual.
20+
21+
When opening a report with Map and Filled map visuals, you will see the following dialog giving you the option to upgrade to the new Azure Maps Visual:
22+
23+
:::image type="content" source="media/power-bi-visual/introducing-azure-map-visual.png" alt-text="Screenshot showing the option to upgrade maps to the Azure Maps Visual.":::
24+
25+
When selecting the **Upgrade maps** button, all Map and Filled map visuals in the current report are converted. You can also convert a specific Map or Filled Map Visual to an Azure Maps Visual in the Visual gallery.
26+
27+
All settings associated with the original visuals are carried over to the new Azure Maps Visual, ensuring consistency in the migrated report.
28+
29+
:::image type="content" source="media/power-bi-visual/the-new-azure-maps-visual.png" alt-text="Screenshot showing the Bubble chart Description automatically generated.":::
30+
31+
> [!NOTE]
32+
> Due to differences in supported bubble size ranges between the two platforms, you may notice that some bubbles appear smaller on the converted Azure Maps visual compared to their original size in the Maps visual. This is because the maximum bubble size in Azure Maps is smaller than the maximum bubble size in Bing Maps. Bubble size differences can vary based on the visual dimension and the report's zoom level.
33+
34+
The migration function streamlines the process of converting Map and Filled map visuals to Azure Maps Visuals, providing users with an efficient and easy-to-use solution.
35+
36+
## Next steps
37+
38+
> [!div class="nextstepaction"]
39+
> [Get started with Azure Maps Power BI visual](power-bi-visual-get-started.md)

articles/machine-learning/concept-automl-forecasting-lags.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ Table 2: Lag featurization for $h=1$ <a name="tbl:classic-lag-1"></a>
4242
| 3/1/2001 | 20 | 2/1/2001 | 10 | 1 |
4343
| 4/1/2001 | 30 | 3/1/2001 | 20 | 1 |
4444
| 5/1/2001 | 40 | 4/1/2001 | 30 | 1 |
45-
| 6/1/2001 | 50 | 4/1/2001 | 40 | 1 |
45+
| 6/1/2001 | 50 | 5/1/2001 | 40 | 1 |
4646

4747
Table 2 is generated from Table 1 by shifting the $y_t$ column down by a single observation. We've added a column named `Origin` that has the dates that the lag features originate from. Next, we generate the lagging feature for the forecast horizon $h=2$ only.
4848

0 commit comments

Comments
 (0)