Skip to content

Commit b377049

Browse files
committed
Merge branch 'main' of https://github.com/MicrosoftDocs/azure-docs-pr into apiccli
2 parents 9e89f86 + b4de787 commit b377049

File tree

56 files changed

+618
-244
lines changed

Some content is hidden

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

56 files changed

+618
-244
lines changed

.openpublishing.redirection.sentinel.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -215,11 +215,6 @@
215215
"redirect_url": "/azure/sentinel/data-connectors/rubrik-security-cloud-data-connector-using-azure-functions",
216216
"redirect_document_id": true
217217
},
218-
{
219-
"source_path": "articles/sentinel/data-connectors/cisco-asa-ftd-via-ama.md",
220-
"redirect_url": "/azure/sentinel/data-connectors-reference",
221-
"redirect_document_id": false
222-
},
223218
{
224219
"source_path": "articles/sentinel/data-connectors/okta-single-sign-on-using-azure-function.md",
225220
"redirect_url": "/azure/sentinel/data-connectors/okta-single-sign-on-using-azure-functions",
@@ -484,6 +479,11 @@
484479
"source_path": "articles/sentinel/data-connectors/cyberpion-security-logs.md",
485480
"redirect_url": "/azure/sentinel/data-connectors-reference",
486481
"redirect_document_id": false
487-
}
482+
},
483+
{
484+
"source_path": "articles/sentinel/data-connectors/azure-active-directory-identity-protection.md",
485+
"redirect_url": "/azure/sentinel/data-connectors/microsoft-entra-id-protection",
486+
"redirect_document_id": true
487+
}
488488
]
489489
}

articles/azure-cache-for-redis/cache-private-link.md

Lines changed: 16 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ ms.author: franlanglois
77
ms.service: cache
88
ms.custom: devx-track-azurecli, devx-track-azurepowershell
99
ms.topic: conceptual
10-
ms.date: 12/15/2023
10+
ms.date: 01/12/2024
1111

1212
---
1313

@@ -30,9 +30,9 @@ You can restrict public access to the private endpoint of your cache by disablin
3030
3131
## Scope of availability
3232

33-
|Tier | Basic, Standard, Premium |Enterprise, Enterprise Flash |
34-
|---------|---------|---------|
35-
|Available | Yes | Yes |
33+
|Tier | Basic, Standard, Premium |Enterprise, Enterprise Flash |
34+
|--------- |:------------------:|:---------:|
35+
|Available | Yes | Yes |
3636

3737
## Prerequisites
3838

@@ -44,7 +44,7 @@ You can restrict public access to the private endpoint of your cache by disablin
4444
4545
> [!IMPORTANT]
4646
> When using private link, you cannot export or import data to a to a storage account that has firewall enabled unless you're using [managed identity to autenticate to the storage account](cache-managed-identity.md).
47-
> For more information, see [How to export if I have firewall enabled on my storage account?](cache-how-to-import-export-data.md#how-to-export-if-i-have-firewall-enabled-on-my-storage-account)
47+
> For more information, see [How to export if I have firewall enabled on my storage account?](cache-how-to-import-export-data.md#how-to-export-if-i-have-firewall-enabled-on-my-storage-account)
4848
>
4949
5050
## Create a private endpoint with a new Azure Cache for Redis instance
@@ -349,23 +349,27 @@ az network private-endpoint delete --name MyPrivateEndpoint --resource-group MyR
349349

350350
### How do I connect to my cache with private endpoint?
351351

352-
For **Basic, Standard, and Premium tier** caches, your application should connect to `<cachename>.redis.cache.windows.net` on port `6380`. A private DNS zone, named `*.privatelink.redis.cache.windows.net`, is automatically created in your subscription. The private DNS zone is vital for establishing the TLS connection with the private endpoint. We recommend avoiding the use of `<cachename>.privatelink.redis.cache.windows.net` in configuration or connection string.
352+
For **Basic, Standard, and Premium tier** caches, your application should connect to `<cachename>.redis.cache.windows.net` on port `6380`. A private DNS zone, named `*.privatelink.redis.cache.windows.net`, is automatically created in your subscription. The private DNS zone is vital for establishing the TLS connection with the private endpoint. We recommend avoiding the use of `<cachename>.privatelink.redis.cache.windows.net` in configuration or connection string.
353353

354-
For **Enterprise and Enterprise Flash** tier caches, your application should connect to `<cachename>.<region>.redisenterprise.cache.azure.net` on port `10000`.
354+
For **Enterprise and Enterprise Flash** tier caches, your application should connect to `<cachename>.<region>.redisenterprise.cache.azure.net` on port `10000`.
355355

356356
For more information, see [Azure services DNS zone configuration](../private-link/private-endpoint-dns.md).
357357

358358
### Why can't I connect to a private endpoint?
359359

360-
- Private endpoints can't be used with your cache instance if your cache is already using the VNet injection network connection method.
361-
- You have a limit of one private link for clustered caches. For all other caches, your limit is 100 private links.
362-
- You try to [persist data to a storage account](cache-how-to-premium-persistence.md) with firewall rules and you're not using managed identity to connect to the storage account.
360+
- Private endpoints can't be used with your cache instance if your cache is already a VNet injected cache.
361+
362+
- On Premium tier caches, you have a limit of one private link for clustered caches. Enterprise and Enterprise Flash tier caches do not have this limitation for clustered caches. For all other caches, your limit is 100 private links.
363+
364+
- You try to [persist data to storage account](cache-how-to-premium-persistence.md) where firewall rules are applied might prevent you from creating the Private Link.
365+
363366
- You might not connect to your private endpoint if your cache instance is using an [unsupported feature](#what-features-arent-supported-with-private-endpoints).
364367

365368
### What features aren't supported with private endpoints?
366369

367370
- Trying to connect from the Azure portal console is an unsupported scenario where you see a connection failure.
368-
- Private links can't be added to Premium tier caches that are already geo-replicated. To add a private link to a cache using [passive geo-replication](cache-how-to-geo-replication.md): 1. Unlink the geo-replication. 2. Add a Private Link. 3. Last, relink the geo-replication.
371+
372+
- Private links can't be added to caches that are already using [passive geo-replication](cache-how-to-geo-replication.md) in the Premium tier. To add a private link to a geo-replicated cache: 1. Unlink the geo-replication. 2. Add a Private Link. 3. Last, relink the geo-replication. (Enterprise tier caches using [active geo-replication](cache-how-to-active-geo-replication.md) do not have this restriction.)
369373

370374
### How do I verify if my private endpoint is configured correctly?
371375

@@ -398,6 +402,7 @@ You can also change the value through a RESTful API PATCH request. For example,
398402
}
399403
400404
```
405+
401406
For more information, see [Redis - Update](/rest/api/redis/Redis/Update?tabs=HTTP).
402407

403408
### How can I migrate my VNet injected cache to a Private Link cache?

articles/azure-maps/about-azure-maps.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -227,20 +227,20 @@ Stay up to date on Azure Maps:
227227
[How to use the Get Map Attribution API]: how-to-show-attribution.md
228228
[Quickstart: Create a web app]: quick-demo-map-app.md
229229
[What is Azure Maps Creator?]: about-creator.md
230-
[v1]: /rest/api/maps/data
231-
[v2]: /rest/api/maps/data-v2
230+
[v1]: /rest/api/maps/data?view=rest-maps-1.0
231+
[v2]: /rest/api/maps/data
232232
[How to create data registry]: how-to-create-data-registries.md
233233
<!--------- REST API Links --------------->
234234
[Data registry]: /rest/api/maps/data-registry
235235
[Geolocation]: /rest/api/maps/geolocation
236-
[Get Map Tile]: /rest/api/maps/render-v2/get-map-tile
236+
[Get Map Tile]: /rest/api/maps/render/get-map-tile
237237
[Get Weather along route API]: /rest/api/maps/weather/getweatheralongroute
238-
[Render]: /rest/api/maps/render-v2
238+
[Render]: /rest/api/maps/render
239239
[REST APIs]: /rest/api/maps/
240240
[Route]: /rest/api/maps/route
241-
[Search]: /rest/api/maps/search
241+
[Search]: /rest/api/maps/search?view=rest-maps-1.0
242242
[Spatial]: /rest/api/maps/spatial
243-
[TilesetID]: /rest/api/maps/render-v2/get-map-tile#tilesetid
243+
[TilesetID]: /rest/api/maps/render/get-map-tile#tilesetid
244244
[Timezone]: /rest/api/maps/timezone
245245
[Traffic]: /rest/api/maps/traffic
246246
<!--------- JavaScript API Links --------------->

articles/azure-maps/azure-maps-authentication.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -430,7 +430,7 @@ To learn more about authenticating the Azure Maps Control with Microsoft Entra I
430430
[Data]: /rest/api/maps/data
431431
[Creator]: /rest/api/maps-creator/
432432
[Spatial]: /rest/api/maps/spatial
433-
[Search]: /rest/api/maps/search
433+
[Search]: /rest/api/maps/search?view=rest-maps-1.0
434434
[Route]: /rest/api/maps/route
435435

436436
[How to configure Azure RBAC for Azure Maps]: how-to-manage-authentication.md

articles/azure-maps/azure-maps-qps-rate-limits.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ When QPS limits are reached, an HTTP 429 error is returned. If you're using the
5050

5151
[Azure portal]: https://portal.azure.com/
5252
[Manage the pricing tier of your Azure Maps account]: how-to-manage-pricing-tier.md
53-
[v1]: /rest/api/maps/data
54-
[v2]: /rest/api/maps/data-v2
53+
[v1]: /rest/api/maps/data?view=rest-maps-1.0
54+
[v2]: /rest/api/maps/data
5555
[Data Registry]: /rest/api/maps/data-registry
5656
[How to create data registry]: how-to-create-data-registries.md

articles/azure-maps/create-data-source-android-sdk.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1045,9 +1045,9 @@ See the following articles for more code samples to add to your maps:
10451045
[Polygon layer]: how-to-add-shapes-to-android-map.md
10461046
[Tile layer]: how-to-add-tile-layer-android-map.md
10471047
<!--------- REST API Links --------------->
1048-
[Road tiles]: /rest/api/maps/render-v2/get-map-tile
1048+
[Road tiles]: /rest/api/maps/render/get-map-tile
10491049
[Traffic incidents]: /rest/api/maps/traffic/gettrafficincidenttile
10501050
[Traffic flow]: /rest/api/maps/traffic/gettrafficflowtile
1051-
[Render - Get Map Tile]: /rest/api/maps/render-v2/get-map-tile
1051+
[Render - Get Map Tile]: /rest/api/maps/render/get-map-tile
10521052
<!--------- External Links --------------->
10531053
[Mapbox Vector Tile Specification]: https://github.com/mapbox/vector-tile-spec

articles/azure-maps/create-data-source-ios-sdk.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -495,9 +495,9 @@ See the following articles for more code samples to add to your maps:
495495
[Polygon layer]: Add-polygon-layer-map-ios.md
496496
[Tile layer]: how-to-add-tile-layer-android-map.md
497497
<!--------- REST API Links --------------->
498-
[Road tiles]: /rest/api/maps/render-v2/get-map-tile
498+
[Road tiles]: /rest/api/maps/render/get-map-tile
499499
[Traffic incidents]: /rest/api/maps/traffic/gettrafficincidenttile
500500
[Traffic flow]: /rest/api/maps/traffic/gettrafficflowtile
501-
[Render - Get Map Tile]: /rest/api/maps/render-v2/get-map-tile
501+
[Render - Get Map Tile]: /rest/api/maps/render/get-map-tile
502502
<!--------- External Links --------------->
503503
[Mapbox Vector Tile Specification]: https://github.com/mapbox/vector-tile-spec

articles/azure-maps/create-data-source-web-sdk.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -271,8 +271,8 @@ See the following articles for more code samples to add to your maps:
271271
[Line layer]: map-add-line-layer.md
272272
[Mapbox Vector Tile Specification]: https://github.com/mapbox/vector-tile-spec
273273
[Polygon layer]: map-add-shape.md
274-
[Render - Get Map Tile]: /rest/api/maps/render-v2/get-map-tile
275-
[Road tiles]: /rest/api/maps/render-v2/get-map-tile
274+
[Render - Get Map Tile]: /rest/api/maps/render/get-map-tile
275+
[Road tiles]: /rest/api/maps/render/get-map-tile
276276
[SourceManager]: /javascript/api/azure-maps-control/atlas.sourcemanager
277277
[Symbol layer]: map-add-pin.md
278278
[Tile layer]: map-add-tile-layer.md

articles/azure-maps/extend-geojson.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,6 @@ Review the glossary of common technical terms associated with Azure Maps and loc
9898
> [Azure Maps glossary]
9999
100100
[GeoJSON spec]: https://tools.ietf.org/html/rfc7946
101-
[Search Inside Geometry]: /rest/api/maps/search/postsearchinsidegeometry
101+
[Search Inside Geometry]: /rest/api/maps/search/postsearchinsidegeometry?view=rest-maps-1.0
102102
[Geofence GeoJSON format]: geofence-geojson.md
103103
[Azure Maps glossary]: glossary.md

articles/azure-maps/geocoding-coverage.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -295,6 +295,6 @@ Learn more about Azure Maps geocoding:
295295
> [!div class="nextstepaction"]
296296
> [Azure Maps Search service]
297297
298-
[Search service]: /rest/api/maps/search
299-
[Azure Maps Search service]: /rest/api/maps/search
300-
[Get Search Address]: /rest/api/maps/search/get-search-address
298+
[Search service]: /rest/api/maps/search?view=rest-maps-1.0
299+
[Azure Maps Search service]: /rest/api/maps/search?view=rest-maps-1.0
300+
[Get Search Address]: /rest/api/maps/search/get-search-address?view=rest-maps-1.0

0 commit comments

Comments
 (0)