Skip to content

Commit fc3ce9b

Browse files
authored
Merge pull request #286198 from MicrosoftDocs/main
9/5/2024 AM Publish
2 parents 104ce9d + bb320eb commit fc3ce9b

File tree

180 files changed

+530
-66
lines changed

Some content is hidden

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

180 files changed

+530
-66
lines changed

articles/automation/automation-managing-data.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Azure Automation data security
33
description: This article helps you learn how Azure Automation protects your privacy and secures your data.
44
services: automation
55
ms.subservice: shared-capabilities
6-
ms.date: 11/20/2023
6+
ms.date: 05/09/2024
77
ms.topic: conceptual
88
ms.custom:
99
ms.service: azure-automation
@@ -19,19 +19,21 @@ To ensure the security of data in transit to Azure Automation, we strongly encou
1919

2020
* Webhook calls
2121

22-
* Hybrid Runbook Workers, which include machines managed by Update Management and Change Tracking and Inventory.
22+
* User Hybrid Runbook Workers (extension-based and agent-based)
2323

24-
* DSC nodes
24+
* Machines managed by Azure Automation Update management and Azure Automation Change tracking & inventory
25+
26+
* Azure Automation DSC nodes
2527

2628
Older versions of TLS/Secure Sockets Layer (SSL) have been found to be vulnerable and while they still currently work to allow backwards compatibility, they are **not recommended**. We do not recommend explicitly setting your agent to only use TLS 1.2 unless its necessary, as it can break platform level security features that allow you to automatically detect and take advantage of newer more secure protocols as they become available, such as TLS 1.3.
2729

2830
For information about TLS support with the Log Analytics agent for Windows and Linux, which is a dependency for the Hybrid Runbook Worker role, see [Log Analytics agent overview - TLS](../azure-monitor/agents/log-analytics-agent.md#tls-protocol).
2931

3032
### Upgrade TLS protocol for Hybrid Workers and Webhook calls
3133

32-
From **31 October 2024**, all agent-based and extension-based User Hybrid Runbook Workers, Webhooks, and DSC nodes using Transport Layer Security (TLS) 1.0 and 1.1 protocols would no longer be able to connect to Azure Automation. All jobs running or scheduled on Hybrid Workers using TLS 1.0 and 1.1 protocols will fail.
34+
From **31 October 2024**, all agent-based and extension-based User Hybrid Runbook Workers, Webhooks, DSC nodes and Azure Automation Update management and Change Tracking managed machines, using Transport Layer Security (TLS) 1.0 and 1.1 protocols would no longer be able to connect to Azure Automation. All jobs running or scheduled on Hybrid Workers using TLS 1.0 and 1.1 protocols will fail.
3335

34-
Ensure that the Webhook calls that trigger runbooks navigate on TLS 1.2 or higher. Ensure to make registry changes so that Agent and Extension based workers negotiate only on TLS 1.2 and higher protocols. Learn how to [disable TLS 1.0/1.1 protocols on Windows Hybrid Worker and enable TLS 1.2 or above](/system-center/scom/plan-security-tls12-config#configure-windows-operating-system-to-only-use-tls-12-protocol) on Windows machine.
36+
Ensure that the Webhook calls that trigger runbooks navigate on TLS 1.2 or higher. Learn how to [disable TLS 1.0/1.1 protocols on Windows Hybrid Worker and enable TLS 1.2 or above](/system-center/scom/plan-security-tls12-config#configure-windows-operating-system-to-only-use-tls-12-protocol) on Windows machine.
3537

3638
For Linux Hybrid Workers, run the following Python script to upgrade to the latest TLS protocol.
3739

articles/azure-maps/data-driven-style-expressions-web-sdk.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Data-driven style expressions in the Azure Maps Web SDK | Microsoft Azure
33
description: Learn about data-driven style expressions. See how to use these expressions in the Azure Maps Web SDK to adjust styles in maps.
44
author: sinnypan
55
ms.author: sipa
6-
ms.date: 4/4/2019
6+
ms.date: 08/29/2024
77
ms.topic: how-to
88
ms.service: azure-maps
99
ms.subservice: web-sdk

articles/azure-maps/drawing-tools-events.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Drawing tools events | Microsoft Azure Maps
33
description: This article demonstrates how to add a drawing toolbar to a map using Microsoft Azure Maps Web SDK
44
author: sinnypan
55
ms.author: sipa
6-
ms.date: 05/23/2023
6+
ms.date: 09/03/2024
77
ms.topic: how-to
88
ms.service: azure-maps
99
ms.subservice: web-sdk
@@ -15,18 +15,18 @@ When using drawing tools on a map, it's useful to react to certain events as the
1515

1616
| Event | Description |
1717
|-------|-------------|
18-
| `drawingchanged` | Fired when any coordinate in a shape has been added or changed. |
18+
| `drawingchanged` | Fired when any coordinate in a shape is added or changed. |
1919
| `drawingchanging` | Fired when any preview coordinate for a shape is being displayed. For example, this event fires multiple times as a coordinate is dragged. |
20-
| `drawingcomplete` | Fired when a shape has finished being drawn or taken out of edit mode. |
20+
| `drawingcomplete` | Fired when a shape completes drawing or is taken out of edit mode. |
2121
| `drawingerased` | Fired when a shape is erased from the drawing manager when in `erase-geometry` mode. |
22-
| `drawingmodechanged` | Fired when the drawing mode has changed. The new drawing mode is passed into the event handler. |
22+
| `drawingmodechanged` | Fired when the drawing mode changes. The new drawing mode is passed into the event handler. |
2323
| `drawingstarted` | Fired when the user starts drawing a shape or puts a shape into edit mode. |
2424

25-
For a complete working sample of how to display data from a vector tile source on the map, see [Drawing tools events] in the [Azure Maps Samples]. In this sample you can draw shapes on the map and watch as the events fire. For the source code for this sample, see [Drawing tools events sample code].
25+
For a complete working sample of how to display data from a vector tile source on the map, see [Drawing tools events] in the [Azure Maps Samples]. This sample enables you to draw shapes on the map and watch as the events fire. For the source code for this sample, see [Drawing tools events sample code].
2626

2727
The following image shows a screenshot of the complete working sample that demonstrates how the events in the Drawing Tools module work.
2828

29-
:::image type="content" source="./media/drawing-tools-events/drawing-tools-events.png" alt-text="Screenshot showing a map displaying data from a vector tile source.":::
29+
:::image type="content" source="./media/drawing-tools-events/drawing-tools-events.png" lightbox="./media/drawing-tools-events/drawing-tools-events.png" alt-text="Screenshot showing a map displaying data from a vector tile source.":::
3030

3131
## Examples
3232

@@ -38,23 +38,23 @@ This code demonstrates how to monitor an event of a user drawing shapes. For thi
3838

3939
For a complete working sample of how to use the drawing tools to draw polygon areas on the map with points within them that can be selected, see [Select data in drawn polygon area] in the [Azure Maps Samples]. For the source code for this sample, see [Select data in drawn polygon area sample code].
4040

41-
:::image type="content" source="./media/drawing-tools-events/select-data-in-drawn-polygon-area.png" alt-text="Screenshot showing a map displaying points within polygon areas.":::
41+
:::image type="content" source="./media/drawing-tools-events/select-data-in-drawn-polygon-area.png" lightbox="./media/drawing-tools-events/select-data-in-drawn-polygon-area.png" alt-text="Screenshot showing a map displaying points within polygon areas.":::
4242

4343
### Draw and search in polygon area
4444

4545
This code searches for points of interests inside the area of a shape after the user finished drawing the shape. The `drawingcomplete` event is used to trigger the search logic. If the user draws a rectangle or polygon, a search inside geometry is performed. If a circle is drawn, the radius and center position is used to perform a point of interest search. The `drawingmodechanged` event is used to determine when the user switches to the drawing mode, and this event clears the drawing canvas.
4646

4747
For a complete working sample of how to use the drawing tools to search for points of interests within drawn areas, see [Draw and search polygon area] in the [Azure Maps Samples]. For the source code for this sample, see [Draw and search polygon area sample code].
4848

49-
:::image type="content" source="./media/drawing-tools-events/draw-and-search-polygon-area.png" alt-text="Screenshot showing a map displaying the Draw and search in polygon area sample.":::
49+
:::image type="content" source="./media/drawing-tools-events/draw-and-search-polygon-area.png" lightbox="./media/drawing-tools-events/draw-and-search-polygon-area.png" alt-text="Screenshot showing a map displaying the Draw and search in polygon area sample.":::
5050

5151
### Create a measuring tool
5252

53-
The following code shows how the drawing events can be used to create a measuring tool. The `drawingchanging` is used to monitor the shape, as it's being drawn. As the user moves the mouse, the dimensions of the shape are calculated. The `drawingcomplete` event is used to do a final calculation on the shape after it has been drawn. The `drawingmodechanged` event is used to determine when the user is switching into a drawing mode. Also, the `drawingmodechanged` event clears the drawing canvas and clears old measurement information.
53+
The following code shows how the drawing events can be used to create a measuring tool. The `drawingchanging` is used to monitor the shape, as it's being drawn. As the user moves the mouse, the dimensions of the shape are calculated. The `drawingcomplete` event is used to do a final calculation on the shape after drawing completes. The `drawingmodechanged` event is used to determine when the user is switching into a drawing mode. Also, the `drawingmodechanged` event clears the drawing canvas and clears old measurement information.
5454

5555
For a complete working sample of how to use the drawing tools to measure distances and areas, see [Create a measuring tool] in the [Azure Maps Samples]. For the source code for this sample, see [Create a measuring tool sample code].
5656

57-
:::image type="content" source="./media/drawing-tools-events/create-a-measuring-tool.png" alt-text="Screenshot showing a map displaying the measuring tool sample.":::
57+
:::image type="content" source="./media/drawing-tools-events/create-a-measuring-tool.png" lightbox="./media/drawing-tools-events/create-a-measuring-tool.png" alt-text="Screenshot showing a map displaying the measuring tool sample.":::
5858

5959
## Next steps
6060

articles/azure-maps/map-add-snap-grid.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Add snap grid to the map | Microsoft Azure Maps
33
description: How to add a snap grid to a map using Azure Maps Web SDK
44
author: sinnypan
55
ms.author: sipa
6-
ms.date: 06/08/2023
6+
ms.date: 09/03/2024
77
ms.topic: how-to
88
ms.service: azure-maps
99
ms.subservice: web-sdk
@@ -19,9 +19,9 @@ The resolution of the snapping grid is in pixels. The grid is square and relativ
1919

2020
Create a snap grid using the `atlas.drawing.SnapGridManager` class and pass in a reference to the map you want to connect the manager to. Set the `showGrid` option to `true` if you want to make the grid visible. To snap a shape to the grid, pass it into the snap grid managers `snapShape` function. If you want to snap an array of positions, pass it into the `snapPositions` function.
2121

22-
The [Use a snapping grid] sample snaps an HTML marker to a grid when it's dragged. Drawing tools are used to snap drawn shapes to the grid when the `drawingcomplete` event fires. For the source code for this sample, see [Use a snapping grid source code].
22+
The [Use a snapping grid] sample snaps an HTML marker to a grid when dragged. Drawing tools are used to snap drawn shapes to the grid when the `drawingcomplete` event fires. For the source code for this sample, see [Use a snapping grid source code].
2323

24-
:::image type="content" source="./media/map-add-snap-grid/use-snapping-grid.png"alt-text="A screenshot that shows the snap grid on map.":::
24+
:::image type="content" source="./media/map-add-snap-grid/use-snapping-grid.png" lightbox="./media/map-add-snap-grid/use-snapping-grid.png" alt-text="A screenshot that shows the snap grid on map.":::
2525

2626
<!--------------------------------------------------
2727
> [!VIDEO https://codepen.io/azuremaps/embed/rNmzvXO?default-tab=js%2Cresult]
@@ -31,7 +31,7 @@ The [Use a snapping grid] sample snaps an HTML marker to a grid when it's dragge
3131

3232
The [Snap grid options] sample shows the different customization options available for the snap grid manager. The grid line styles can be customized by retrieving the underlying line layer using the snap grid managers `getGridLayer` function. For the source code for this sample, see [Snap grid options source code].
3333

34-
:::image type="content" source="./media/map-add-snap-grid/snap-grid-options.png"alt-text="A screenshot of map with snap grid enabled and an options panel on the left where you can set various options and see the results in the map.":::
34+
:::image type="content" source="./media/map-add-snap-grid/snap-grid-options.png" lightbox="./media/map-add-snap-grid/snap-grid-options.png" alt-text="A screenshot of map with snap grid enabled and an options panel on the side for setting various options that are updated in the map.":::
3535

3636
<!--------------------------------------------------
3737
> [!VIDEO https://codepen.io/azuremaps/embed/RwVZJry?default-tab=result]

articles/azure-maps/map-events.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ titleSuffix: Microsoft Azure Maps
44
description: Learn which events are fired when users interact with maps. View a list of all supported map events. See how to use the Azure Maps Web SDK to handle events.
55
author: sinnypan
66
ms.author: sipa
7-
ms.date: 06/12/2023
7+
ms.date: 08/30/2024
88
ms.topic: how-to
99
ms.service: azure-maps
1010
ms.subservice: web-sdk
@@ -18,7 +18,7 @@ This article shows you how to use [map events class]. The property highlight eve
1818

1919
The [Map Events] sample highlights the name of the events that are firing as you interact with the map. For the source code for this sample, see [Map Events source code].
2020

21-
:::image type="content" source="./media/map-events/map-events.png"alt-text="A screenshot showing a map with a list of map events that are highlighted anytime your actions on the map trigger that event.":::
21+
:::image type="content" source="./media/map-events/map-events.png" lightbox="./media/map-events/map-events.png" alt-text="A screenshot showing a map with a list of map events that are highlighted anytime your actions on the map trigger that event.":::
2222

2323
<!-----------------------------------------------------------------------
2424
> [!VIDEO //codepen.io/azuremaps/embed/bLZEWd/?height=600&theme-id=0&default-tab=js,result&embed-version=2&editable=true]
@@ -28,7 +28,7 @@ The [Map Events] sample highlights the name of the events that are firing as you
2828

2929
The [Layer Events] sample highlights the name of the events that are firing as you interact with the Symbol Layer. The symbol, bubble, line, and polygon layer all support the same set of events. The heat map and tile layers don't support any of these events. For the source code for this sample, see [Layer Events source code].
3030

31-
:::image type="content" source="./media/map-events/layer-events.png"alt-text="A screenshot showing a map with a list of layer events that are highlighted anytime you interact with the Symbol Layer.":::
31+
:::image type="content" source="./media/map-events/layer-events.png" lightbox="./media/map-events/layer-events.png" alt-text="A screenshot showing a map with a list of layer events that are highlighted anytime you interact with the Symbol Layer.":::
3232

3333
<!-----------------------------------------------------------------------
3434
> [!VIDEO //codepen.io/azuremaps/embed/bQRRPE/?height=600&theme-id=0&default-tab=js,result&embed-version=2&editable=true]
@@ -38,7 +38,7 @@ The [Layer Events] sample highlights the name of the events that are firing as y
3838

3939
The [HTML marker layer events] sample highlights the name of the events that are firing as you interact with the HTML marker layer. For the source code for this sample, see [HTML marker layer Events source code].
4040

41-
:::image type="content" source="./media/map-events/html-marker-layer-events.png"alt-text="A screenshot showing a map with a list of HTML marker layer events that are highlighted anytime your actions on the map trigger that event.":::
41+
:::image type="content" source="./media/map-events/html-marker-layer-events.png" lightbox="./media/map-events/html-marker-layer-events.png" alt-text="A screenshot showing a map with a list of HTML marker layer events that are highlighted anytime your actions on the map trigger that event.":::
4242

4343
<!-----------------------------------------------------------------------
4444
> [!VIDEO //codepen.io/azuremaps/embed/VVzKJY/?height=500&theme-id=0&default-tab=js,result&embed-version=2&editable=true]

articles/azure-maps/map-get-shape-data.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ titleSuffix: Microsoft Azure Maps
44
description: In this article learn, how to get shape data drawn on a map using the Microsoft Azure Maps Web SDK.
55
author: sinnypan
66
ms.author: sipa
7-
ms.date: 07/13/2023
7+
ms.date: 09/03/2024
88
ms.topic: how-to
99
ms.service: azure-maps
1010
ms.subservice: web-sdk
289 KB
Loading
339 KB
Loading
361 KB
Loading
-182 KB
Loading

0 commit comments

Comments
 (0)