Skip to content

Commit 34d4a30

Browse files
authored
Merge pull request #244942 from MicrosoftDocs/repo_sync_working_branch
Confirm merge from repo_sync_working_branch to main to sync with https://github.com/MicrosoftDocs/azure-docs (branch main)
2 parents 4233c34 + b636142 commit 34d4a30

File tree

16 files changed

+101
-73
lines changed

16 files changed

+101
-73
lines changed

articles/active-directory/fundamentals/what-is-deprecated.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,8 @@ Use the following table to learn about changes including deprecations, retiremen
2929
3030
|Functionality, feature, or service|Change|Change date |
3131
|---|---|---:|
32-
|[System-preferred authentication methods](https://techcommunity.microsoft.com/t5/microsoft-entra-azure-ad-blog/microsoft-entra-change-announcements-march-2023-train/ba-p/2967448)|Feature change|Sometime after GA|
33-
|[Azure AD Authentication Library (ADAL)](https://techcommunity.microsoft.com/t5/microsoft-entra-azure-ad-blog/microsoft-entra-change-announcements-march-2023-train/ba-p/2967448)|Retirement|Jun 30, 2023|
32+
|[System-preferred authentication methods](../authentication/concept-system-preferred-multifactor-authentication.md)|Feature change|Sometime after GA|
3433
|[Azure AD Graph API](https://aka.ms/aadgraphupdate)|Start of phased retirement|Jul 2023|
35-
|[My Apps improvements](https://techcommunity.microsoft.com/t5/microsoft-entra-azure-ad-blog/microsoft-entra-change-announcements-march-2023-train/ba-p/2967448)|Feature change|Jun 30, 2023|
3634
|[Terms of Use experience](https://techcommunity.microsoft.com/t5/microsoft-entra-azure-ad-blog/microsoft-entra-change-announcements-march-2023-train/ba-p/2967448)|Feature change|Jul 2023|
3735
|[Azure AD PowerShell and MSOnline PowerShell](https://aka.ms/aadgraphupdate)|Deprecation|Mar 30, 2024|
3836
|[Azure AD MFA Server](https://techcommunity.microsoft.com/t5/microsoft-entra-azure-ad-blog/microsoft-entra-change-announcements-march-2023-train/ba-p/2967448)|Retirement|Sep 30, 2024|
@@ -44,6 +42,8 @@ Use the following table to learn about changes including deprecations, retiremen
4442

4543
|Functionality, feature, or service|Change|Change date |
4644
|---|---|---:|
45+
|[Azure AD Authentication Library (ADAL)](https://techcommunity.microsoft.com/t5/microsoft-entra-azure-ad-blog/microsoft-entra-change-announcements-march-2023-train/ba-p/2967448)|Retirement|Jun 30, 2023|
46+
|[My Apps improvements](https://techcommunity.microsoft.com/t5/microsoft-entra-azure-ad-blog/microsoft-entra-change-announcements-march-2023-train/ba-p/2967448)|Feature change|Jun 30, 2023|
4747
|[Microsoft Authenticator Lite for Outlook mobile](../../active-directory/authentication/how-to-mfa-authenticator-lite.md)|Feature change|Jun 9, 2023|
4848
|[My Groups experience](https://techcommunity.microsoft.com/t5/microsoft-entra-azure-ad-blog/microsoft-entra-change-announcements-march-2023-train/ba-p/2967448)|Feature change|May 2023|
4949
|[My Apps browser extension](https://techcommunity.microsoft.com/t5/microsoft-entra-azure-ad-blog/microsoft-entra-change-announcements-march-2023-train/ba-p/2967448)|Feature change|May 2023|

articles/aks/coredns-custom.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -71,10 +71,10 @@ You can customize CoreDNS with AKS to perform on-the-fly DNS name rewrites.
7171
kubectl get configmaps --namespace=kube-system coredns-custom -o yaml
7272
```
7373

74-
4. Force CoreDNS to reload the ConfigMap using the [`kubectl delete pod`][kubectl delete] command and the `kube-dns` label. This command deletes the `kube-dns` pods, and then the Kubernetes Scheduler recreates them. The new pods contain the change in TTL value.
74+
4. To reload the ConfigMap and enable Kubernetes Scheduler to restart CoreDNS without downtime, perform a rolling restart using [`kubectl rollout restart`][kubectl-rollout].
7575

7676
```console
77-
kubectl delete pod --namespace kube-system -l k8s-app=kube-dns
77+
kubectl -n kube-system rollout restart deployment coredns
7878
```
7979

8080
## Custom forward server
@@ -102,10 +102,10 @@ If you need to specify a forward server for your network traffic, you can create
102102
kubectl apply -f corednsms.yaml
103103
```
104104

105-
3. Force CoreDNS to reload the ConfigMap using the [`kubectl delete pod`][kubectl delete] so the Kubernetes Scheduler can recreate them.
105+
3. To reload the ConfigMap and enable Kubernetes Scheduler to restart CoreDNS without downtime, perform a rolling restart using [`kubectl rollout restart`][kubectl-rollout].
106106

107107
```console
108-
kubectl delete pod --namespace kube-system -l k8s-app=kube-dns
108+
kubectl -n kube-system rollout restart deployment coredns
109109
```
110110

111111
## Use custom domains
@@ -135,10 +135,10 @@ You may want to configure custom domains that can only be resolved internally. F
135135
kubectl apply -f corednsms.yaml
136136
```
137137

138-
3. Force CoreDNS to reload the ConfigMap using the [`kubectl delete pod`][kubectl delete] so the Kubernetes Scheduler can recreate them.
138+
3. To reload the ConfigMap and enable Kubernetes Scheduler to restart CoreDNS without downtime, perform a rolling restart using [`kubectl rollout restart`][kubectl-rollout].
139139

140140
```console
141-
kubectl delete pod --namespace kube-system -l k8s-app=kube-dns
141+
kubectl -n kube-system rollout restart deployment coredns
142142
```
143143

144144
## Stub domains
@@ -174,10 +174,10 @@ CoreDNS can also be used to configure stub domains.
174174
kubectl apply -f corednsms.yaml
175175
```
176176

177-
3. Force CoreDNS to reload the ConfigMap using the [`kubectl delete pod`][kubectl delete] so the Kubernetes Scheduler can recreate them.
177+
3. To reload the ConfigMap and enable Kubernetes Scheduler to restart CoreDNS without downtime, perform a rolling restart using [`kubectl rollout restart`][kubectl-rollout].
178178

179179
```console
180-
kubectl delete pod --namespace kube-system -l k8s-app=kube-dns
180+
kubectl -n kube-system rollout restart deployment coredns
181181
```
182182

183183
## Hosts plugin
@@ -246,7 +246,7 @@ metadata:
246246
kubectl apply -f corednsms.yaml
247247
248248
# Force CoreDNS to reload the ConfigMap
249-
kubectl delete pod --namespace kube-system -l k8s-app=kube-dns
249+
kubectl -n kube-system rollout restart deployment coredns
250250
```
251251

252252
3. View the CoreDNS debug logging using the `kubectl logs` command.
@@ -267,7 +267,7 @@ To learn more about core network concepts, see [Network concepts for application
267267
[corednsk8s]: https://kubernetes.io/docs/tasks/administer-cluster/dns-custom-nameservers/#coredns
268268
[kubectl-apply]: https://kubernetes.io/docs/reference/generated/kubectl/kubectl-commands#apply
269269
[kubectl-get]: https://kubernetes.io/docs/reference/generated/kubectl/kubectl-commands#get
270-
[kubectl delete]: https://kubernetes.io/docs/reference/generated/kubectl/kubectl-commands#delete
270+
[kubectl-rollout]: https://kubernetes.io/docs/reference/generated/kubectl/kubectl-commands#rollout
271271
[coredns hosts]: https://coredns.io/plugins/hosts/
272272
[coredns-troubleshooting]: https://kubernetes.io/docs/tasks/administer-cluster/dns-debugging-resolution/
273273
[cluster-proportional-autoscaler]: https://github.com/kubernetes-sigs/cluster-proportional-autoscaler

articles/azure-maps/map-events.md

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
---
2-
title: Handle map events | Microsoft Azure Maps
2+
title: Handle map events
3+
titleSuffix: Microsoft Azure Maps
34
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.
45
author: dubiety
56
ms.author: yuchungchen
@@ -8,9 +9,9 @@ ms.topic: how-to
89
ms.service: azure-maps
910
---
1011

11-
# Interact with the map
12+
# Handle map events
1213

13-
This article shows you how to use [map events class](/javascript/api/azure-maps-control/atlas.map#events). The property highlight events on the map and on different layers of the map. You can also highlight events when you interact with an HTML marker.
14+
This article shows you how to use [map events class]. The property highlight events on the map and on different layers of the map. You can also highlight events when you interact with an HTML marker.
1415

1516
## Interact with the map
1617

@@ -52,7 +53,7 @@ The following table lists all supported map class events.
5253
| `boxzoomend` | Fired when a "box zoom" interaction ends.|
5354
| `boxzoomstart` | Fired when a "box zoom" interaction starts.|
5455
| `click` | Fired when a pointing device is pressed and released at the same point on the map.|
55-
| `close` | Fired when the popup is closed manually or programatically.|
56+
| `close` | Fired when the popup is closed manually or programmatically.|
5657
| `contextmenu` | Fired when the right button of the mouse is clicked.|
5758
| `data` | Fired when any map data loads or changes. |
5859
| `dataadded` | Fired when shapes are added to the `DataSource`.|
@@ -65,7 +66,7 @@ The following table lists all supported map class events.
6566
| `error` | Fired when an error occurs.|
6667
| `idle` | <p>Fired after the last frame rendered before the map enters an "idle" state:<ul><li>No camera transitions are in progress.</li><li>All currently requested tiles have loaded.</li><li>All fade/transition animations have completed.</li></ul></p>|
6768
| `keydown` | Fired when a key is pressed down.|
68-
| `keypress` | Fired when a key that produces a typable character (an ANSI key) is pressed.|
69+
| `keypress` | Fired when a key that produces a typeable character (an ANSI key) is pressed.|
6970
| `keyup` | Fired when a key is released.|
7071
| `layeradded` | Fired when a layer is added to the map.|
7172
| `layerremoved` | Fired when a layer is removed from the map.|
@@ -80,7 +81,7 @@ The following table lists all supported map class events.
8081
| `move` | Fired repeatedly during an animated transition from one view to another, as the result of either user interaction or methods.|
8182
| `moveend` | Fired just after the map completes a transition from one view to another, as the result of either user interaction or methods.|
8283
| `movestart` | Fired just before the map begins a transition from one view to another, as the result of either user interaction or methods.|
83-
| `open` | Fired when the popup is opened manually or programatically.|
84+
| `open` | Fired when the popup is opened manually or programmatically.|
8485
| `pitch` | Fired whenever the map's pitch (tilt) changes as the result of either user interaction or methods.|
8586
| `pitchend` | Fired immediately after the map's pitch (tilt) finishes changing as the result of either user interaction or methods.|
8687
| `pitchstart` | Fired whenever the map's pitch (tilt) begins a change as the result of either user interaction or methods.|
@@ -111,15 +112,18 @@ The following table lists all supported map class events.
111112
See the following articles for full code examples:
112113

113114
> [!div class="nextstepaction"]
114-
> [Using the Azure Maps Services module](./how-to-use-services-module.md)
115+
> [Using the Azure Maps Services module]
115116
116117
> [!div class="nextstepaction"]
117-
> [Code samples](/samples/browse/?products=azure-maps)
118+
> [Code samples]
118119
120+
[map events class]: /javascript/api/azure-maps-control/atlas.map#events
119121
[Map Events]: https://samples.azuremaps.com/map/map-events
120122
[Layer Events]: https://samples.azuremaps.com/symbol-layer/symbol-layer-events
121123
[HTML marker layer events]: https://samples.azuremaps.com/html-markers/html-marker-layer-events
122124

123125
[Map Events source code]: https://github.com/Azure-Samples/AzureMapsCodeSamples/blob/main/Samples/Map/Map%20Events/Map%20Events.html
124126
[Layer Events source code]: https://github.com/Azure-Samples/AzureMapsCodeSamples/blob/main/Samples/Symbol%20Layer/Symbol%20layer%20events/Symbol%20layer%20events.html
125127
[HTML marker layer events source code]: https://github.com/Azure-Samples/AzureMapsCodeSamples/blob/main/Samples/HTML%20Markers/HTML%20marker%20layer%20events/HTML%20marker%20layer%20events.html
128+
[Using the Azure Maps Services module]: how-to-use-services-module.md
129+
[Code samples]: /samples/browse/?products=azure-maps

articles/azure-maps/map-extruded-polygon.md

Lines changed: 17 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
---
2-
title: Add a polygon extrusion layer to a map | Microsoft Azure Maps
2+
title: Add a polygon extrusion layer to a map
3+
titleSuffix: Microsoft Azure Maps
34
description: How to add a polygon extrusion layer to the Microsoft Azure Maps Web SDK.
45
author: dubiety
56
ms.author: yuchungchen
@@ -10,11 +11,11 @@ ms.service: azure-maps
1011

1112
# Add a polygon extrusion layer to the map
1213

13-
This article shows you how to use the polygon extrusion layer to render areas of `Polygon` and `MultiPolygon` feature geometries as extruded shapes. The Azure Maps Web SDK supports rendering of Circle geometries as defined in the [extended GeoJSON schema](extend-geojson.md#circle). These circles can be transformed into polygons when rendered on the map. All feature geometries may be updated easily when wrapped with the [atlas.Shape](/javascript/api/azure-maps-control/atlas.shape) class.
14+
This article shows you how to use the polygon extrusion layer to render areas of `Polygon` and `MultiPolygon` feature geometries as extruded shapes. The Azure Maps Web SDK supports rendering of Circle geometries as defined in the [extended GeoJSON schema]. These circles can be transformed into polygons when rendered on the map. All feature geometries may be updated easily when wrapped with the [atlas.Shape] class.
1415

1516
## Use a polygon extrusion layer
1617

17-
Connect the [polygon extrusion layer](/javascript/api/azure-maps-control/atlas.layer.polygonextrusionlayer) to a data source. Then, loaded it on the map. The polygon extrusion layer renders the areas of a `Polygon` and `MultiPolygon` features as extruded shapes. The `height` and `base` properties of the polygon extrusion layer define the base distance from the ground and height of the extruded shape in **meters**. The following code shows how to create a polygon, add it to a data source, and render it using the Polygon extrusion layer class.
18+
Connect the [polygon extrusion layer] to a data source. Then, loaded it on the map. The polygon extrusion layer renders the areas of a `Polygon` and `MultiPolygon` features as extruded shapes. The `height` and `base` properties of the polygon extrusion layer define the base distance from the ground and height of the extruded shape in **meters**. The following code shows how to create a polygon, add it to a data source, and render it using the Polygon extrusion layer class.
1819

1920
> [!NOTE]
2021
> The `base` value defined in the polygon extrusion layer should be less than or equal to that of the `height`.
@@ -123,7 +124,7 @@ The [Create a Choropleth Map] sample shows an extruded choropleth map of the Uni
123124

124125
## Add a circle to the map
125126

126-
Azure Maps uses an extended version of the GeoJSON schema that provides a [definition for circles](./extend-geojson.md#circle). An extruded circle can be rendered on the map by creating a `point` feature with a `subType` property of `Circle` and a numbered `Radius` property representing the radius in **meters**. For example:
127+
Azure Maps uses an extended version of the GeoJSON schema that provides a [definition for circles]. An extruded circle can be rendered on the map by creating a `point` feature with a `subType` property of `Circle` and a numbered `Radius` property representing the radius in **meters**. For example:
127128

128129
```javascript
129130
{
@@ -205,18 +206,23 @@ The Polygon Extrusion layer has several styling options. The [Polygon Extrusion
205206
Learn more about the classes and methods used in this article:
206207

207208
> [!div class="nextstepaction"]
208-
> [Polygon](/javascript/api/azure-maps-control/atlas.data.polygon)
209+
> [Polygon]
209210
210211
> [!div class="nextstepaction"]
211-
> [polygon extrusion layer](/javascript/api/azure-maps-control/atlas.layer.polygonextrusionlayer)
212+
> [polygon extrusion layer]
212213
213-
Additional resources:
214+
More resources:
214215

215216
> [!div class="nextstepaction"]
216-
> [Azure Maps GeoJSON specification extension](extend-geojson.md#circle)
217-
218-
[Create a Choropleth Map]: https://samples.azuremaps.com/?sample=create-a-choropleth-map
219-
[Polygon Extrusion Layer Options]: https://samples.azuremaps.com/?sample=polygon-extrusion-layer-options
217+
> [Azure Maps GeoJSON specification extension]
220218
219+
[atlas.Shape]: /javascript/api/azure-maps-control/atlas.shape
220+
[Azure Maps GeoJSON specification extension]: extend-geojson.md#circle
221221
[Create a Choropleth Map source code]: https://github.com/Azure-Samples/AzureMapsCodeSamples/blob/main/Samples/Demos/Create%20a%20Choropleth%20Map/Create%20a%20Choropleth%20Map.html
222+
[Create a Choropleth Map]: https://samples.azuremaps.com/?sample=create-a-choropleth-map
223+
[definition for circles]: extend-geojson.md#circle
224+
[extended GeoJSON schema]: extend-geojson.md#circle
222225
[Polygon Extrusion Layer Options source code]: https://github.com/Azure-Samples/AzureMapsCodeSamples/blob/main/Samples/Polygons/Polygon%20Extrusion%20Layer%20Options/Polygon%20Extrusion%20Layer%20Options.html
226+
[Polygon Extrusion Layer Options]: https://samples.azuremaps.com/?sample=polygon-extrusion-layer-options
227+
[polygon extrusion layer]: /javascript/api/azure-maps-control/atlas.layer.polygonextrusionlayer
228+
[Polygon]: /javascript/api/azure-maps-control/atlas.data.polygon

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: dubiety
66
ms.author: yuchungchen
7-
ms.date: 06/15/2023
7+
ms.date: 07/13/2023
88
ms.topic: how-to
99
ms.service: azure-maps
1010
---

0 commit comments

Comments
 (0)