You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/automation/automation-managing-data.md
+7-5Lines changed: 7 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@ title: Azure Automation data security
3
3
description: This article helps you learn how Azure Automation protects your privacy and secures your data.
4
4
services: automation
5
5
ms.subservice: shared-capabilities
6
-
ms.date: 11/20/2023
6
+
ms.date: 05/09/2024
7
7
ms.topic: conceptual
8
8
ms.custom:
9
9
ms.service: azure-automation
@@ -19,19 +19,21 @@ To ensure the security of data in transit to Azure Automation, we strongly encou
19
19
20
20
* Webhook calls
21
21
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)
23
23
24
-
* DSC nodes
24
+
* Machines managed by Azure Automation Update management and Azure Automation Change tracking & inventory
25
+
26
+
* Azure Automation DSC nodes
25
27
26
28
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.
27
29
28
30
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).
29
31
30
32
### Upgrade TLS protocol for Hybrid Workers and Webhook calls
31
33
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.
33
35
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.
35
37
36
38
For Linux Hybrid Workers, run the following Python script to upgrade to the latest TLS protocol.
description: This article demonstrates how to add a drawing toolbar to a map using Microsoft Azure Maps Web SDK
4
4
author: sinnypan
5
5
ms.author: sipa
6
-
ms.date: 05/23/2023
6
+
ms.date: 09/03/2024
7
7
ms.topic: how-to
8
8
ms.service: azure-maps
9
9
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
15
15
16
16
| Event | Description |
17
17
|-------|-------------|
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. |
19
19
|`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. |
21
21
|`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. |
23
23
|`drawingstarted`| Fired when the user starts drawing a shape or puts a shape into edit mode. |
24
24
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].
26
26
27
27
The following image shows a screenshot of the complete working sample that demonstrates how the events in the Drawing Tools module work.
28
28
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.":::
30
30
31
31
## Examples
32
32
@@ -38,23 +38,23 @@ This code demonstrates how to monitor an event of a user drawing shapes. For thi
38
38
39
39
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].
40
40
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.":::
42
42
43
43
### Draw and search in polygon area
44
44
45
45
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.
46
46
47
47
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].
48
48
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.":::
50
50
51
51
### Create a measuring tool
52
52
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.
54
54
55
55
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].
56
56
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.":::
Copy file name to clipboardExpand all lines: articles/azure-maps/map-add-snap-grid.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@ title: Add snap grid to the map | Microsoft Azure Maps
3
3
description: How to add a snap grid to a map using Azure Maps Web SDK
4
4
author: sinnypan
5
5
ms.author: sipa
6
-
ms.date: 06/08/2023
6
+
ms.date: 09/03/2024
7
7
ms.topic: how-to
8
8
ms.service: azure-maps
9
9
ms.subservice: web-sdk
@@ -19,9 +19,9 @@ The resolution of the snapping grid is in pixels. The grid is square and relativ
19
19
20
20
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.
21
21
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].
23
23
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.":::
@@ -31,7 +31,7 @@ The [Use a snapping grid] sample snaps an HTML marker to a grid when it's dragge
31
31
32
32
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].
33
33
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.":::
Copy file name to clipboardExpand all lines: articles/azure-maps/map-events.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@ titleSuffix: Microsoft Azure Maps
4
4
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.
5
5
author: sinnypan
6
6
ms.author: sipa
7
-
ms.date: 06/12/2023
7
+
ms.date: 08/30/2024
8
8
ms.topic: how-to
9
9
ms.service: azure-maps
10
10
ms.subservice: web-sdk
@@ -18,7 +18,7 @@ This article shows you how to use [map events class]. The property highlight eve
18
18
19
19
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].
20
20
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.":::
@@ -28,7 +28,7 @@ The [Map Events] sample highlights the name of the events that are firing as you
28
28
29
29
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].
30
30
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.":::
@@ -38,7 +38,7 @@ The [Layer Events] sample highlights the name of the events that are firing as y
38
38
39
39
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].
40
40
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.":::
0 commit comments