Skip to content

Commit bda2d04

Browse files
Learn Build Service GitHub AppLearn Build Service GitHub App
authored andcommitted
Merging changes synced from https://github.com/MicrosoftDocs/azure-docs-pr (branch live)
2 parents 557cdc9 + 7aab186 commit bda2d04

17 files changed

+332
-118
lines changed

articles/api-center/manage-apis-azure-cli.md

Lines changed: 18 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,6 @@ az apic api create --resource-group myResourceGroup \
3939
--title "Petstore API" --type "rest"
4040
```
4141

42-
> [!NOTE]
43-
> After creating an API, you can update the API's properties by using the [az apic api update](/cli/azure/apic/api#az_apic_api_update) command.
44-
45-
4642
### Create an API version
4743

4844
Use the [az apic api version create](/cli/azure/apic/api/version#az_apic_api_version_create) command to create a version for your API.
@@ -117,8 +113,26 @@ az apic api register --resource-group myResourceGroup \
117113
* By default, the command sets the API's **Lifecycle stage** to *design*.
118114
* It creates an API version named according to the `version` property in the API definition (or *1-0-0* by default), and an API definition named according to the specification format (for example, *openapi*).
119115

116+
## Update API properties
117+
120118
After registering an API, you can update the API's properties by using the [az apic api update](/cli/azure/apic/api#az_apic_api_update), [az apic api version update](/cli/azure/apic/api/version#az_apic_api_version_update), and [az apic api definition update](/cli/azure/apic/api/definition#az_apic_api_definition_update) commands.
121119

120+
The following example updates the title of the *petstore-api* API to *Petstore API v2*.
121+
122+
```azurecli-interactive
123+
az apic api update --resource-group myResourceGroup \
124+
--service-name myAPICenter --api-id petstore-api \
125+
--title "Petstore API v2"
126+
```
127+
128+
The following example sets the API's Boolean *internal* custom property to *false*.
129+
130+
```azurecli-interactive
131+
az apic api update --resource-group myResourceGroup \
132+
--service-name myAPICenter --api-id petstore-api \
133+
--set custom_properties.internal=false
134+
```
135+
122136
## Delete API resources
123137

124138
Use the [az apic api delete](/cli/azure/apic/api#az_apic_api_delete) command to delete an API and all of its version and definition resources. For example:

articles/application-gateway/configuration-infrastructure.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -235,6 +235,22 @@ To use the route table to allow kubenet to work:
235235

236236
Any scenario where 0.0.0.0/0 needs to be redirected through a virtual appliance, a hub/spoke virtual network, or on-premises (forced tunneling) isn't supported for v2.
237237

238+
## Additional services
239+
240+
To view roles and permissions for other services, see the following links:
241+
242+
- [Azure ExpressRoute](../expressroute/roles-permissions.md)
243+
244+
- [Azure Firewall](../firewall/roles-permissions.md)
245+
246+
- [Azure Route Server](../route-server/roles-permissions.md)
247+
248+
- [Azure Virtual WAN](../virtual-wan/roles-permissions.md)
249+
250+
- [Managed NVA](../virtual-wan/roles-permissions.md#nva-resources)
251+
252+
- [Azure VPN Gateway](../vpn-gateway/roles-permissions.md)
253+
238254
## Next steps
239255

240256
- [Learn about frontend IP address configuration](configuration-frontend-ip.md)

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ The most recent stable release of the Azure Maps services.
3434

3535
## Previous releases
3636

37-
There are previous stable releases of an Azure Maps services that are still in use. The services in these lists will generally have a more recent version available, and are slated for retirement. If using a previous release, update to the latest version before it's retired to avoid disruption of service.
37+
There are previous stable releases of an Azure Maps service that are still in use. The services in these lists will generally have a more recent version available, and are slated for retirement. If using a previous release, update to the latest version before it's retired to avoid disruption of service.
3838

3939
### Version 2022-08-01
4040

@@ -55,7 +55,7 @@ Prerelease version of an Azure Maps service. Preview releases contain new functi
5555

5656
| API | API version | Description |
5757
|-----|-------------|-------------|
58-
| [Route][Route-2023-10-01-preview] | 2023-10-01-preview | Returns the ideal route in GeoJSON between locations for multiple modes of transportation.<BR><BR>Some of the updates in this version of the Route service include:<ul><li>Routes with "via" waypoints that the route must pass through.</li><li>More geographies</li><li>More languages available for localized travel instructions.</li></ul> |
58+
| [Route][Route-2024-07-01-preview] | 2024-07-01-preview | Returns the ideal route in GeoJSON between locations for multiple modes of transportation.<BR><BR>Some of the updates in this version of the Route service include:<ul><li>New Snap to Roads API that snaps GPS data to road aligned coordinates.</li><li>Support for up to 50,000 cells in Route Matrix async.</li><li>High-definition route range polygon.</li><li>Routes with "via" waypoints that the route must pass through.</li><li>More geographies</li><li>More languages available for localized travel instructions.</li> |
5959

6060
<!--- Links to latest versions of each service ---------------------------------->
6161
[Data Registry]: /rest/api/maps/data-registry
@@ -74,6 +74,6 @@ Prerelease version of an Azure Maps service. Preview releases contain new functi
7474
[Render v1]: /rest/api/maps/render?view=rest-maps-1.0
7575
[Search-v1]: /rest/api/maps/search?view=rest-maps-1.0
7676

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

articles/cdn/edgio-retirement-faq.md

Lines changed: 63 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -6,58 +6,103 @@ services: cdn
66
author: duongau
77
ms.service: azure-cdn
88
ms.topic: how-to
9-
ms.date: 12/17/2024
9+
ms.date: 12/20/2024
1010
ms.author: duau
1111
---
1212

1313
# Azure CDN from Edgio retirement FAQ
1414

15-
Azure CDN from Edgio will be retired on January 15, 2025. You must migrate your workload to Azure Front Door before this date to avoid service disruption. This article provides answers to common questions about the retirement of Azure CDN from Edgio.
15+
Azure CDN from Edgio will be shut down on January 15, 2025. You must migrate your workload to Azure Front Door before January 7, 2025 to avoid service disruption. This article provides answers to common questions about the retirement of Azure CDN from Edgio.
1616

1717
## Frequently asked questions
1818

1919
### Why was the retirement date of Azure CDN from Edgio changed from November 4, 2025, to January 15, 2025?
2020

21-
Edgio has informed us that their platform is now scheduled to shut down on January 15, 2025. Therefore, all Azure CDN from Edgio customers must migrate their workloads to Azure Front Door or other CDN services before this date.
21+
[Akamai acquired select assets](https://www.prnewswire.com/news-releases/akamai-completes-acquisition-of-select-assets-of-edgio-302331398.html) from Edgio in December of 2024, and Microsoft was informed that the Edgio platform will end service on January 15, 2025. All Azure CDN from Edgio users must migrate their workloads to Azure Front Door or other CDN services before this date.
2222

2323
### I see Edgio filed for Chapter 11 bankruptcy. Can Microsoft guarantee that Azure CDN from Edgio’s availability and services until November 4, 2025?
2424

25-
Edgio informed us that their services remain operational until at least January 15, 2025. However, we can't guarantee that Edgio doesn't unexpectedly cease operations before this date due to circumstances beyond our control.
25+
Edgio has informed us that their services will remain operational until at least January 15, 2025. However, we can't guarantee that Edgio won't unexpectedly cease operations before this date due to circumstances beyond our control. Therefore, we'll automatically migrate your workload if you haven't taken action by January 7, 2025.
2626

27-
### What options do I have with migrating my workloads from Azure CDN from Edgio?
27+
### How can I see my impacted Azure CDN from Edgio resources?
2828

29-
You're encouraged to migrate your workloads to Microsoft's flagship CDN product called Azure Front Door Standard or Premium. Next steps:
30-
1. Review [Azure Front Door and Azure CDN features](../frontdoor/front-door-cdn-comparison.md) to determine if Azure Front Door is compatible with your workload(s).
31-
2. Understand [Azure Front Door Pricing](https://azure.microsoft.com/pricing/details/frontdoor/).
32-
3. Follow the [Azure CDN to Azure Front Door migration guide](../frontdoor/migrate-cdn-to-front-door.md). This guide provides detailed instructions on how to set up an Azure Front Door profile, test functionality, and migrate your compatible workloads from Azure CDN from Edgio to Azure Front Door with the help of Azure Traffic Manager.
29+
You can see them in the [Migrate away from Azure CDN from Edgio](https://www.portal.azure.com/#view/Microsoft_Azure_Expert/RecommendationList.ReactView/recommendationTypeId/2c9e3f2a-7373-45e1-ab8b-f361e5f0c37f) dashboard.
30+
31+
### What options do I have with migrating my workloads out of Azure CDN from Edgio?
32+
33+
The following is a recap of the migration options we sent to all users:
34+
35+
- Validate if your workloads on Azure CDN from Edgio are compatible with Azure Front Door (see here and here to help verify) and migrate as soon as possible using these instructions before January 7, 2025.
36+
37+
- If Azure Front Door isn't compatible with your workloads, determine if Akamai could be compatible via Azure Marketplace or work with another CDN provider. If you chose to work with Akamai, feel free to contact Microsoft Support, and we can put you in touch with the Akamai team dedicated to performing migrations to their platform.
38+
39+
> [!IMPORTANT]
40+
> - If you plan a migration to Akamai or another CDN provider, you will need set a Feature Flag by following these instructions (select the Feature Flag “DoNotForceMigrateEdgioCDNProfiles”) before January 7, 2025. Doing so will prevent Microsoft from migrating you to Azure Front Door (please see below). Note you will have until January 14, 2025 to complete your migration to another CDN, but again Microsoft cannot guarantee your services will be available on the Edgio platform before this date.
41+
> - The Azure Marketplace is currently not available for customers in South Korea.
42+
> - Please be advised we will need to halt all configuration changes to Azure CDN by Edgio profiles starting on January 3, 2025. This means you will not be able update your CDN profile configuration, but your services on Azure CDN from Edgio will still operate until you are migrated or the Edgio platform is shut down on January 15, 2025
43+
44+
- If you have any services running on Azure CDN from Edgio on January 7, 2025 and haven't informed us of your plans (please see above), we'll attempt to migrate your services over to Azure Front Door on January 7, 2025. We'll be performing this migration to Azure Front Door on a “best effort” basis, and doing so might cause issues related to the billing, features, availability, and/or performance you're currently consuming with Azure CDN from Edgio.
45+
46+
### What are some key things I should do to verify my workloads are working properly on AFD?
3347

34-
### If I determine my workload isn't a match for Azure Front Door, what are my options?
48+
- Look at [metrics and logs](../frontdoor/front-door-diagnostics.md) for Azure Front Door resources to observe for 4xx/5xx errors, cache/byte hit ratios, and origin health.
49+
- See the following troubleshooting guides for any other issues:
50+
- [Troubleshoot Azure Front Door common issues](../frontdoor/troubleshoot-issues.md)
51+
- [Troubleshoot general performance problems](../frontdoor/troubleshoot-performance-issues.md)
52+
- [Frequently asked questions](../frontdoor/front-door-faq.yml)
3553

36-
Consider whether Akamai or another CDN provider might be compatible with your needs. You can explore Akamai options through Azure Marketplace. If you decide to work with Akamai, contact Microsoft Support for assistance, and we can connect you with the Akamai team dedicated to migrations.
54+
### How does Azure Front Door billing work?
3755

38-
> [!NOTE]
39-
> The Azure Marketplace is currently unavailable for customers in South Korea.
56+
Depending on your workloads, Azure Front Door can be more cost-effective than Azure CDN from Edgio. Note that the Azure Front Door billing model differs from Azure CDN from Edgio and includes different billing components. Specifically, Azure Front Door charges a base fee for each profile deployed. Additionally, charges are incurred for requests and data transfer based on usage. See the following for details:
4057

41-
### If I determined my workload isn't a match for Azure Front Door, what are my options?
58+
- [Understand Azure Front Door billing](../frontdoor/billing.md)
59+
- [Azure Content Delivery Network (CDN) pricing](https://azure.microsoft.com/pricing/details/cdn/?msockid=2995caa685d66a223dbede5b847b6b36#pricing)
60+
- [Azure Front Door pricing](https://azure.microsoft.com/pricing/details/frontdoor/?msockid=2995caa685d66a223dbede5b847b6b36)
61+
- [Pricing calculator](https://azure.microsoft.com/pricing/calculator/?service=frontdoor-standard-premium)
4262

43-
If you find that Azure Front Door isn't suitable for your workload, we offer an alternative service called [Routing Preference Unmetered](../virtual-network/ip-services/routing-preference-unmetered.md), also known as "CDN Interconnect." This service might allow free data transfer for traffic egressing from your Azure resources to another CDN of your choice.
63+
For any questions regarding billing changes, reach out to our support team or your account team.
64+
65+
### What options do I have with migrating my workloads from Azure CDN from Edgio?
66+
67+
You're encouraged to migrate your workloads to Microsoft's flagship CDN product called Azure Front Door Standard or Premium. Next steps:
68+
1. Review [Azure Front Door and Azure CDN features](../frontdoor/front-door-cdn-comparison.md) to determine if Azure Front Door is compatible with your workloads.
69+
2. Understand [Azure Front Door Pricing](https://azure.microsoft.com/pricing/details/frontdoor/).
70+
3. Follow the [Azure CDN to Azure Front Door migration guide](../frontdoor/migrate-cdn-to-front-door.md). This guide provides detailed instructions on how to set up an Azure Front Door profile, test functionality, and migrate your compatible workloads from Azure CDN from Edgio to Azure Front Door with the help of Azure Traffic Manager.
4471

4572
### Does Microsoft validate my workloads work on Azure Front Door?
4673

47-
You need to determine if Azure Front Door suits your workloads. We recommend setting up a test environment to validate that your services are compatible with Azure Front Door.
74+
No, you need to determine if Azure Front Door suits your workloads. We recommend setting up a test environment to validate that your services are compatible with Azure Front Door.
4875

4976
### What will happen if I don't take action before January 15, 2025?
5077

5178
If no action is taken before January 15, 2025, Azure CDN from Edgio profiles and associated data will be removed from Edgio systems. It's imperative that users migrate their workloads before this date to avoid any service disruptions and data loss.
5279

80+
### What will happen after Microsoft migrates my workloads to Azure Front Door on January 7, 2025?
81+
82+
After the migration, you'll receive an email notification confirming whether your workloads have been successfully migrated to Azure Front Door Standard or if the migration was unsuccessful. We're migrating you to Azure Front Door Standard as it may be more cost-effective. If you need the extra features of Azure Front Door Premium, you can [upgrade your service](../frontdoor/tier-upgrade.md).
83+
84+
If the migration was unsuccessful or if you encounter issues with availability, performance, or feature functionality after a successful migration, contact Microsoft support for assistance.
85+
5386
### How is Microsoft communicating the retirement of Azure CDN from Edgio, and how often are reminders sent?
5487

5588
We communicate the retirement of Azure CDN from Edgio through multiple channels, including email notifications and in-portal messages. Reminders are sent at least monthly to all users with active Edgio profiles to ensure they're aware of the upcoming changes and necessary actions.
5689

57-
### When will it no longer be possible to create new Azure CDN from Edgio profiles?
90+
### What is the recap of the key dates?
5891

59-
New Azure CDN from Edgio profiles can't be created after December 13, 2024.
92+
| Date | Event |
93+
|-------------------|---------------------------------------------------------------------------------------------------------------------------|
94+
| December 13, 2024 | Creation of new Azure CDN from Edgio profiles is no longer allowed. |
95+
| January 3, 2025 | No further changes to Azure CDN from Edgio profiles will be permitted. |
96+
| January 6, 2025 | Deadline for setting a Feature Flag to prevent automatic migration to Azure Front Door. |
97+
| January 7, 2025 | Automatic migration of remaining Azure CDN from Edgio profiles to Azure Front Door begins if the Feature Flag isn't set. |
98+
| January 7-8, 2025 | Notifications sent to customers regarding the status of their migration to Azure Front Door. |
99+
| January 14, 2025 | Final day of service for Azure CDN from Edgio. |
100+
| January 15, 2025 | Shutdown of the Edgio platform. |
60101

61102
### Can I request an extension for the retirement/shutdown of the Azure CDN from Edgio service?
62103

63104
No, extensions aren't possible. Edgio confirmed that their platform will shut down by January 15, 2025.
105+
106+
### Can I retain my existing *.azureedge.net domain when I move to Azure Front Door?
107+
108+
You can temporarily retain your *.azureedge.net domain by following the instructions provided in [Migrate to Azure Front Door while retaining *.azureedge.net domain](migrate-cdn-to-front-door-retain-edge-domain.md). However, this is only a short-term solution due to the urgent retirement of Azure CDN from Edgio. Relying on domains like *.azureedge.net and *.azurefd.net isn't recommended as it poses availability risks. To ensure greater flexibility and avoid a single point of failure, it's advisable to adopt a custom domain as soon as possible.

0 commit comments

Comments
 (0)