Skip to content

Commit b715272

Browse files
authored
Merge pull request #2 from cynthn/build-prep-service-groups
Build prep service groups
2 parents de98915 + 7decb7d commit b715272

File tree

135 files changed

+1124
-1887
lines changed

Some content is hidden

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

135 files changed

+1124
-1887
lines changed

articles/azure-app-configuration/howto-variant-feature-flags.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,3 +74,4 @@ In this tutorial, you create a web app named _Quote of the Day_. When the app is
7474

7575
2. Continue to the following instructions to use the variant feature flag in your application for the language or platform you're using.
7676
* [ASP.NET Core](./howto-variant-feature-flags-aspnet-core.md)
77+
* [Python](./howto-variant-feature-flags-python.md)

articles/azure-maps/itinerary-optimization-service.md

Lines changed: 37 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -78,31 +78,47 @@ Matrix size = 5 origins x 5 destinations = 25
7878
The Route Matrix POST request:
7979

8080
```html
81-
https://atlas.microsoft.com/route/matrix/json?api-version=1.0&routeType=shortest
81+
https://atlas.microsoft.com/route/matrix?api-version=2025-01-01&routeType=shortest&subscription-key={Your-Azure-Maps-Subscription-key}
8282
```
8383

8484
```json
8585
{
86-
"origins": {
87-
"type": "MultiPoint",
88-
"coordinates": [
89-
[4.85106, 52.36006], //restaurant or depot
90-
[4.85056, 52.36187], //delivery location 1
91-
[4.85003, 52.36241], //delivery location 2
92-
[4.42937, 52.50931], //delivery location 3
93-
[4.42940, 52.50843] //delivery location 4
94-
]
95-
},
96-
"destinations": {
97-
"type": "MultiPoint",
98-
[4.85106, 52.36006], //restaurant or depot
99-
[4.85056, 52.36187], //delivery location 1
100-
[4.85003, 52.36241], //delivery location 2
101-
[4.42937, 52.50931], //delivery location 3
102-
[4.42940, 52.50843] //delivery location 4
103-
]
104-
}
105-
}
86+
"type": "FeatureCollection",
87+
"features": [
88+
{
89+
"type": "Feature",
90+
"geometry": {
91+
"type": "MultiPoint",
92+
"coordinates": [
93+
[4.85106, 52.36006], //restaurant or depot
94+
[4.85056, 52.36187], //delivery location 1
95+
[4.85003, 52.36241], //delivery location 2
96+
[4.42937, 52.50931], //delivery location 3
97+
[4.42940, 52.50843] //delivery location 4
98+
]
99+
},
100+
"properties": {
101+
"pointType": "origins"
102+
}
103+
},
104+
{
105+
"type": "Feature",
106+
"geometry": {
107+
"type": "MultiPoint",
108+
"coordinates": [
109+
[4.85106, 52.36006], //restaurant or depot
110+
[4.85056, 52.36187], //delivery location 1
111+
[4.85003, 52.36241], //delivery location 2
112+
[4.42937, 52.50931], //delivery location 3
113+
[4.42940, 52.50843] //delivery location 4
114+
]
115+
},
116+
"properties": {
117+
"pointType": "destinations"
118+
}
119+
}
120+
]
121+
}
106122
```
107123

108124
The Route Matrix response returns a 5x5 multi-dimensional array where each row represents the origins and columns represent the destinations. Use the field `travelTimeInSeconds` to get the time cost for each location pair. The time unit should be consistent across the solution. Once the preprocessing stage is complete, the order, depot, fleet info and the cost matrix, are sent over and imported to the cuOpt Server via API calls.

articles/azure-maps/migrate-calculate-route.md

Lines changed: 33 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -69,42 +69,44 @@ http://dev.virtualearth.net/REST/V1/Routes/driving?wp.0=47.610173,-122.204171&wp
6969
Azure Maps _Route Directions_ API POST request:
7070

7171
``` http
72-
https://atlas.microsoft.com/route/directions?api-version=2023-10-01-preview&subscription-key={Your-Azure-Maps-Subscription-key}
72+
https://atlas.microsoft.com/route/directions?api-version=2025-01-01&subscription-key={Your-Azure-Maps-Subscription-key}
7373
```
7474

7575
Included in the body of the request:
7676

7777
```json
78-
{
79-
  "type": "FeatureCollection",`
80-
  "features": [
81-
    {
82-
      "type": "Feature",
83-
      "geometry": {
84-
        "coordinates": [
85-
         -122.204171,47.610173
86-
        ],
87-
        "type": "Point"
88-
      },
89-
      "properties": {
90-
        "pointIndex": 0,
91-
        "pointType": "waypoint"
92-
      }
93-
    },
94-
    {
95-
      "type": "Feature",
96-
      "geometry": {
97-
        "coordinates": [
98-
          -122.204171,47.612440
99-
        ],
100-
        "type": "Point"
101-
      },
102-
      "properties": {
103-
        "pointIndex": 1,
104-
        "pointType": "waypoint"
105-
      }
106-
    }
107-
  ]
78+
{
79+
"type": "FeatureCollection",
80+
"features": [
81+
{
82+
"type": "Feature",
83+
"geometry": {
84+
"coordinates": [
85+
-122.204171,
86+
47.610173
87+
],
88+
"type": "Point"
89+
},
90+
"properties": {
91+
"pointIndex": 0,
92+
"pointType": "waypoint"
93+
}
94+
},
95+
{
96+
"type": "Feature",
97+
"geometry": {
98+
"coordinates": [
99+
-122.204171,
100+
47.612440
101+
],
102+
"type": "Point"
103+
},
104+
"properties": {
105+
"pointIndex": 1,
106+
"pointType": "Waypoint"
107+
}
108+
}
109+
]
108110
}
109111
```
110112

articles/azure-maps/migrate-calculate-truck-route.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ Included in the body of the request:
9494
Azure Maps _Route Directions_ API POST request:
9595

9696
``` http
97-
https://atlas.microsoft.com/route/directions?api-version=2023-10-01-preview&subscription-key={Your-Azure-Maps-Subscription-key}
97+
https://atlas.microsoft.com/route/directions?api-version=2025-01-01&subscription-key={Your-Azure-Maps-Subscription-key}
9898
```
9999

100100
Included in the body of the request:

articles/azure-maps/migrate-help-using-copilot.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ Step 6. Create and add a SymbolLayer to the map.
208208

209209
Step 7. Create and add a LineLayer to the map.
210210

211-
Step 8. Utilize the Route POST API: <https://atlas.microsoft.com/route/directions?api-version=2023-10-01-preview&subscription-key=${subscriptionKey}> to find the route between the start and end points. Add the GeoJSON response to the DataSource and adjust the map's camera based on the bounding box of the response.
211+
Step 8. Utilize the Route POST API: <https://atlas.microsoft.com/route/directions?api-version=2025-01-01&subscription-key=${subscriptionKey}> to find the route between the start and end points. Add the GeoJSON response to the DataSource and adjust the map's camera based on the bounding box of the response.
212212

213213
Example request body:
214214

@@ -335,7 +335,7 @@ GitHub Copilot can create the following code snippet to provide an interface for
335335
336336
function getRoute(startCoordinates, endCoordinates) {
337337
fetch(
338-
`https://atlas.microsoft.com/route/directions?api-version=2023-10-01-preview&subscription-key=${subscriptionKey}`,
338+
`https://atlas.microsoft.com/route/directions?api-version=2025-01-01&subscription-key=${subscriptionKey}`,
339339
{
340340
method: "POST",
341341
headers: {

articles/azure-maps/rest-api-azure-maps.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,4 +75,4 @@ Prerelease version of an Azure Maps service. Preview releases contain new functi
7575

7676
<!--- 2024-07-01-preview is the latest preview release of the Route service,
7777
currently the only Azure Maps service in Preview -------------------------->
78-
[Route-2024-07-01-preview]: /rest/api/maps/route?view=rest-maps-2024-07-01-preview
78+
[Route-2024-07-01-preview]: /rest/api/maps/route?view=rest-maps-2024-07-01-preview

articles/azure-maps/supported-languages.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,9 +92,9 @@ Azure Maps have been localized in variety languages across its services. The fol
9292
<sup>1</sup> Neutral Ground Truth (Local) - Official languages for all regions in local scripts if available<br>
9393
<sup>2</sup> Neutral Ground Truth (Latin) - Latin exonyms are used if available
9494

95-
## Routing v2 services (preview) supported languages
95+
## Routing services supported languages
9696

97-
Azure Maps have been localized in variety languages across its services. The following table provides the supported language codes for the routing v2 services. The routing column in the following table includes routes for driving and walking.
97+
Azure Maps have been localized in variety languages across its services. The following table provides the supported language codes for the latest version of the Azure Maps [Route] service. The routing column in the following table includes routes for driving and walking.
9898

9999
| Culture | Language | Routing | Truck Routing |
100100
|----------------|--------------------------------------------|:-------:|:-------------:|
@@ -266,3 +266,5 @@ The following table provides supported views.
266266
| YE | Yemen (Arabic View) || |
267267
| Auto | Automatically detect based on request |||
268268
| Unified | Unified View (Others) |||
269+
270+
[Route]: /rest/api/maps/route

articles/azure-maps/tutorial-snap-to-road.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ The code in this notebook cell reads raw GPS data from the data file in lakehous
142142
import json
143143

144144
az_maps_subkey = ""
145-
az_maps_snaproads_url = "https://atlas.microsoft.com/route/snapToRoads?api-version=2024-07-01-preview&subscription-key=" + az_maps_subkey
145+
az_maps_snaproads_url = "https://atlas.microsoft.com/route/snapToRoads?api-version=2025-01-01&subscription-key=" + az_maps_subkey
146146

147147
# Function to process snap to road for each given trip
148148
def process_route(df, outputFilePath):

articles/azure-netapp-files/application-volume-group-disaster-recovery.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
---
2-
title: Add volumes for an SAP HANA system as a DR system using Azure NetApp Files cross-region replication | Microsoft Docs
2+
title: Add volumes for an SAP HANA system as a DR system using Azure NetApp Files cross-region replication
33
description: Describes using an application volume group to add volumes for an SAP HANA system as a disaster recovery (DR) system.
44
services: azure-netapp-files
55
author: b-hchen
66
ms.service: azure-netapp-files
77
ms.topic: how-to
8-
ms.date: 04/22/2025
8+
ms.date: 05/06/2025
99
ms.author: anfdocs
1010
---
1111
# Add volumes for an SAP HANA system as a DR system using cross-region replication
@@ -26,7 +26,7 @@ The following diagram illustrates cross-region replication between the source an
2626
> When you use an HA deployment with HSR at the primary side, you can choose to replicate not only the primary HANA system as described in this section, but also the HANA secondary system using cross-region replication. To automatically adapt the naming convention, you select both the **HSR secondary** and **Disaster recovery destination** options in the Create a Volume Group screen. The prefix then changes to `DR2-`.
2727
2828
> [!IMPORTANT]
29-
> * Recovering the HANA database at the destination region requires that you use application-consistent storage snapshots for your HANA backup. You can create such snapshots by using data-protection solutions such as SnapCenter and the [Azure Application Consistent Snapshot tool](azacsnap-introduction.md) (AzAcSnap).
29+
> * Recovering the HANA database at the destination region requires that you use application-consistent storage snapshots for your HANA backup. You can create such snapshots by using data-protection solutions including [SnapCenter](https://docs.netapp.com/us-en/snapcenter/protect-azure/protect-applications-azure-netapp-files.html), [Azure Application Consistent Snapshot tool](azacsnap-introduction.md) (AzAcSnap), or other [validated partner solutions](../storage/solution-integration/validated-partners/backup-archive-disaster-recovery/partner-overview.md).
3030
> * You need to replicate at least the data volume and the log-backup volume.
3131
> * You can optionally replicate the data-backup volume and the shared volume.
3232
> * You should *never* replicate the log volume. The application volume group will create the log volume as a standard volume.

articles/azure-netapp-files/application-volume-group-manage-volumes-oracle.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
11
---
2-
title: Manage volumes in Azure NetApp Files application volume group for Oracle | Microsoft Docs
2+
title: Manage volumes in Azure NetApp Files application volume group for Oracle
33
description: Describes how to manage a volume from its application volume group for Oracle, including resizing, deleting, or changing throughput for the volume.
44
services: azure-netapp-files
5-
documentationcenter: ''
65
author: b-hchen
76
ms.service: azure-netapp-files
87
ms.workload: storage
98
ms.topic: how-to
10-
ms.date: 04/17/2025
9+
ms.date: 05/06/2025
1110
ms.author: anfdocs
1211
---
1312
# Manage volumes in an application volume group for Oracle
@@ -34,7 +33,7 @@ You can manage a volume from its volume group. You can resize, delete, or change
3433
> Changing the protocol type involves reconfiguration at the Linux host. When using dNFS, it's not recommended to mix volumes using NFSv3 and NFSv4.1.
3534
3635
> [!NOTE]
37-
> Using Azure NetApp Files built-in automated snapshots doesn't create database consistent backups. Instead, use data protection software such as [SnapCenter](https://docs.netapp.com/us-en/snapcenter/protect-azure/protect-applications-azure-netapp-files.html) and [AzAcSnap](azacsnap-introduction.md) that supports snapshot-based data protection for Oracle.
36+
> Using Azure NetApp Files built-in automated snapshots doesn't create database consistent backups. Instead, use data protection software such as [SnapCenter](https://docs.netapp.com/us-en/snapcenter/protect-azure/protect-applications-azure-netapp-files.html), [AzAcSnap](azacsnap-introduction.md), or other [validated partner solutions](../storage/solution-integration/validated-partners/backup-archive-disaster-recovery/partner-overview.md) that supports snapshot-based data protection for Oracle.
3837
3938
* **Change Throughput**
4039
You can adapt the throughput of the volume.

0 commit comments

Comments
 (0)