Skip to content

Commit 4ebcb92

Browse files
Merge branch 'release-build-container-apps' of https://github.com/MicrosoftDocs/azure-docs-pr into aca/env-ingress
2 parents 4864128 + 353c86f commit 4ebcb92

File tree

68 files changed

+532
-1065
lines changed

Some content is hidden

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

68 files changed

+532
-1065
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/container-apps/azure-arc-overview.md

Lines changed: 15 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@ As you configure your cluster, you carry out these actions:
3030

3131
- **A Container Apps connected environment**, which enables configuration common across apps but not related to cluster operations. Conceptually, it's deployed into the custom location resource, and app developers create apps into this environment.
3232

33-
## Public preview limitations
33+
## Limitations
3434

35-
The following public preview limitations apply to Azure Container Apps on Azure Arc enabled Kubernetes.
35+
The following limitations apply to Azure Container Apps on Azure Arc enabled Kubernetes.
3636

3737
| Limitation | Details |
3838
|---|---|
@@ -43,6 +43,17 @@ The following public preview limitations apply to Azure Container Apps on Azure
4343
| Feature: Pull images from ACR with managed identity | Not available (depends on managed identities) |
4444
| Logs | Log Analytics must be configured with cluster extension; not per-application |
4545

46+
The following features are supported:
47+
48+
- Labels
49+
- Metrics
50+
- Easy auth
51+
- Log stream
52+
- Resilience
53+
- Custom domains
54+
- Revision Management
55+
- App container console
56+
4657
> [!IMPORTANT]
4758
> If deploying onto **AKS on Azure Local** ensure that you have [setup HAProxy as your load balancer](/azure/aks/hybrid/configure-load-balancer) before attempting to install the extension.
4859
@@ -57,7 +68,7 @@ The following table describes the role of each revision created for you:
5768
| Pod | Description | Number of Instances | CPU | Memory | Type |
5869
|----|----|----|----|----|----|
5970
| `<extensionName>-k8se-activator` | Used as part of the scaling pipeline | 2 | 100 millicpu | 500 MB | ReplicaSet |
60-
| `<extensionName>-k8se-billing` | Billing record generation - Azure Container Apps on Azure Arc enabled Kubernetes is Free of Charge during preview | 3 | 100 millicpu | 100 MB | ReplicaSet |
71+
| `<extensionName>-k8se-billing` | Billing record generation | 3 | 100 millicpu | 100 MB | ReplicaSet |
6172
| `<extensionName>-k8se-containerapp-controller` | The core operator pod that creates resources on the cluster and maintains the state of components. | 2 | 100 millicpu | 1 GB | ReplicaSet |
6273
| `<extensionName>-k8se-envoy` | A front-end proxy layer for all data-plane http requests. It routes the inbound traffic to the correct apps. | 3 | 1 Core | 1,536 MB | ReplicaSet |
6374
| `<extensionName>-k8se-envoy-controller` | Operator, which generates Envoy configuration | 2 | 200 millicpu | 500 MB | ReplicaSet |
@@ -75,7 +86,6 @@ The following table describes the role of each revision created for you:
7586

7687
## FAQ for Azure Container Apps on Azure Arc
7788

78-
- [How much does it cost?](#how-much-does-it-cost)
7989
- [Which Container Apps features are supported?](#which-container-apps-features-are-supported)
8090
- [Are managed identities supported?](#are-managed-identities-supported)
8191
- [Are there any scaling limits?](#are-there-any-scaling-limits)
@@ -84,13 +94,9 @@ The following table describes the role of each revision created for you:
8494
- [Can the extension be installed on Windows nodes?](#can-the-extension-be-installed-on-windows-nodes)
8595
- [Can I deploy the Container Apps extension on an Arm64 based cluster?](#can-i-deploy-the-container-apps-extension-on-an-arm64-based-cluster)
8696

87-
### How much does it cost?
88-
89-
Azure Container Apps on Azure Arc-enabled Kubernetes is free during the public preview.
90-
9197
### Which Container Apps features are supported?
9298

93-
During the preview period, certain Azure Container App features are being validated. When they're supported, their left navigation options in the Azure portal will be activated. Features that aren't yet supported remain grayed out.
99+
Check the portal for the most up to date list. Features not supported are grayed out in the portal.
94100

95101
### Are managed identities supported?
96102

articles/cost-management-billing/dataset-schema/cost-usage-details-ea.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
---
22
title: Enterprise Agreement cost and usage details file schema
33
description: Learn about the data fields available in the Enterprise Agreement cost and usage details file.
4-
author: bandersmsft
4+
author: jojopm
55
ms.reviewer: jojoh
66
ms.service: cost-management-billing
77
ms.subservice: common
88
ms.topic: reference
99
ms.date: 01/24/2025
10-
ms.author: banders
10+
ms.author: jojoh
1111
---
1212

1313
# Enterprise Agreement cost and usage details file schema

0 commit comments

Comments
 (0)