Skip to content

Commit 8a4fa1f

Browse files
authored
Fix urls (Azure#39259)
1 parent 523fe37 commit 8a4fa1f

File tree

32 files changed

+215
-215
lines changed

32 files changed

+215
-215
lines changed

sdk/maps/azure-maps-geolocation/README.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# Azure Maps Geolocation Package client library for Python
22

33
This package contains a Python SDK for Azure Maps Services for Geolocation.
4-
Read more about Azure Maps Services [here](https://docs.microsoft.com/azure/azure-maps/)
4+
Read more about Azure Maps Services [here](https://learn.microsoft.com/azure/azure-maps/)
55

6-
[Source code](https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/maps/azure-maps-geolocation) | [API reference documentation](https://docs.microsoft.com/rest/api/maps/geolocation) | [Product documentation](https://docs.microsoft.com/azure/azure-maps/)
6+
[Source code](https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/maps/azure-maps-geolocation) | [API reference documentation](https://learn.microsoft.com/rest/api/maps/geolocation) | [Product documentation](https://learn.microsoft.com/azure/azure-maps/)
77

88
## _Disclaimer_
99

@@ -14,10 +14,10 @@ _Azure SDK Python packages support for Python 2.7 has ended 01 January 2022. For
1414
### Prerequisites
1515

1616
- Python 3.8 or later is required to use this package.
17-
- An [Azure subscription][azure_subscription] and an [Azure Maps account](https://docs.microsoft.com/azure/azure-maps/how-to-manage-account-keys).
17+
- An [Azure subscription][azure_subscription] and an [Azure Maps account](https://learn.microsoft.com/azure/azure-maps/how-to-manage-account-keys).
1818
- A deployed Maps Services resource. You can create the resource via [Azure Portal][azure_portal] or [Azure CLI][azure_cli].
1919

20-
If you use Azure CLI, replace `<resource-group-name>` and `<account-name>` of your choice, and select a proper [pricing tier](https://docs.microsoft.com/azure/azure-maps/choose-pricing-tier) based on your needs via the `<sku-name>` parameter. Please refer to [this page](https://docs.microsoft.com/cli/azure/maps/account?view=azure-cli-latest#az_maps_account_create) for more details.
20+
If you use Azure CLI, replace `<resource-group-name>` and `<account-name>` of your choice, and select a proper [pricing tier](https://learn.microsoft.com/azure/azure-maps/choose-pricing-tier) based on your needs via the `<sku-name>` parameter. Please refer to [this page](https://learn.microsoft.com/cli/azure/maps/account?view=azure-cli-latest#az_maps_account_create) for more details.
2121

2222
```bash
2323
az maps account create --resource-group <resource-group-name> --account-name <account-name> --sku <sku-name>
@@ -75,7 +75,7 @@ from azure.mgmt.maps import AzureMapsManagementClient
7575
Before run the sample, please set the values of the client ID, tenant ID and client secret
7676
of the AAD application as environment variables: AZURE_CLIENT_ID, AZURE_TENANT_ID,
7777
AZURE_CLIENT_SECRET. For more info about how to get the value, please see:
78-
https://docs.microsoft.com/azure/active-directory/develop/howto-create-service-principal-portal
78+
https://learn.microsoft.com/azure/active-directory/develop/howto-create-service-principal-portal
7979
"""
8080

8181

@@ -242,7 +242,7 @@ Further detail please refer to [Samples Introduction](https://github.com/Azure/a
242242

243243
### Additional documentation
244244

245-
For more extensive documentation on Azure Maps Geolocation, see the [Azure Maps Geolocation documentation](https://docs.microsoft.com/rest/api/maps/geolocation) on docs.microsoft.com.
245+
For more extensive documentation on Azure Maps Geolocation, see the [Azure Maps Geolocation documentation](https://learn.microsoft.com/rest/api/maps/geolocation) on learn.microsoft.com.
246246

247247
## Contributing
248248

@@ -256,11 +256,11 @@ This project has adopted the [Microsoft Open Source Code of Conduct](https://ope
256256
[azure_subscription]: https://azure.microsoft.com/free/
257257
[azure_identity]: https://github.com/Azure/azure-sdk-for-python/blob/master/sdk/identity/azure-identity
258258
[azure_portal]: https://portal.azure.com
259-
[azure_cli]: https://docs.microsoft.com/cli/azure
259+
[azure_cli]: https://learn.microsoft.com/cli/azure
260260
[azure-key-credential]: https://aka.ms/azsdk/python/core/azurekeycredential
261261
[default_azure_credential]: https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/identity/azure-identity#defaultazurecredential
262-
[register_microsoft_entra_id_app]: https://docs.microsoft.com/powershell/module/Az.Resources/New-AzADApplication?view=azps-8.0.0
263-
[maps_authentication_microsoft_entra_id]: https://docs.microsoft.com/azure/azure-maps/how-to-manage-authentication
262+
[register_microsoft_entra_id_app]: https://learn.microsoft.com/powershell/module/Az.Resources/New-AzADApplication?view=azps-8.0.0
263+
[maps_authentication_microsoft_entra_id]: https://learn.microsoft.com/azure/azure-maps/how-to-manage-authentication
264264
[create_new_application_registration]: https://portal.azure.com/#blade/Microsoft_AAD_RegisteredApps/applicationsListBlade/quickStartType/AspNetWebAppQuickstartPage/sourceType/docs
265-
[manage_microsoft_entra_id_auth_page]: https://docs.microsoft.com/azure/azure-maps/how-to-manage-authentication
266-
[how_to_manage_authentication]: https://docs.microsoft.com/azure/azure-maps/how-to-manage-authentication#view-authentication-details
265+
[manage_microsoft_entra_id_auth_page]: https://learn.microsoft.com/azure/azure-maps/how-to-manage-authentication
266+
[how_to_manage_authentication]: https://learn.microsoft.com/azure/azure-maps/how-to-manage-authentication#view-authentication-details

sdk/maps/azure-maps-geolocation/samples/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ products:
1111

1212
These code samples show common scenario operations with the Azure Maps Geolocation client library.
1313

14-
Authenticate the client with a Azure Maps Geolocation [API Key Credential](https://docs.microsoft.com/azure/azure-maps/how-to-manage-account-keys):
14+
Authenticate the client with a Azure Maps Geolocation [API Key Credential](https://learn.microsoft.com/azure/azure-maps/how-to-manage-account-keys):
1515

1616
[samples authentication](https://github.com/Azure/azure-sdk-for-python/blob/main/sdk/maps/azure-maps-geolocation/samples/sample_authentication.py) ([async version](https://github.com/Azure/azure-sdk-for-python/blob/main/sdk/maps/azure-maps-geolocation/samples/async_samples/sample_authentication_async.py))
1717

@@ -44,9 +44,9 @@ Then for common Azure Maps Geolocation operations:
4444

4545
## Next steps
4646

47-
Check out the [API reference documentation](https://docs.microsoft.com/rest/api/maps/geolocation)
47+
Check out the [API reference documentation](https://learn.microsoft.com/rest/api/maps/geolocation)
4848
to learn more about what you can do with the Azure Maps Geolocation client library.
4949

5050
<!-- LINKS -->
5151
[azure_portal]: https://portal.azure.com
52-
[azure_cli]: https://docs.microsoft.com/cli/azure
52+
[azure_cli]: https://learn.microsoft.com/cli/azure

sdk/maps/azure-maps-geolocation/samples/async_samples/sample_authentication_async.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
DESCRIPTION:
1212
This sample demonstrates how to authenticate with the Azure Maps Geolocation
1313
service with an Subscription key. See more details about authentication here:
14-
https://docs.microsoft.com/azure/azure-maps/how-to-manage-account-keys
14+
https://learn.microsoft.com/azure/azure-maps/how-to-manage-account-keys
1515
USAGE:
1616
python sample_authentication_async.py
1717
Set the environment variables with your own values before running the sample:

sdk/maps/azure-maps-geolocation/samples/sample_authentication.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
DESCRIPTION:
1212
This sample demonstrates how to authenticate with the Azure Maps Geolocation
1313
service with an Subscription key. See more details about authentication here:
14-
https://docs.microsoft.com/azure/azure-maps/how-to-manage-account-keys
14+
https://learn.microsoft.com/azure/azure-maps/how-to-manage-account-keys
1515
USAGE:
1616
python sample_authentication.py
1717
Set the environment variables with your own values before running the sample:

sdk/maps/azure-maps-render/README.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# Azure Maps Render Package client library for Python
22

33
This package contains a Python SDK for Azure Maps Services for Render.
4-
Read more about Azure Maps Services [here](https://docs.microsoft.com/azure/azure-maps/)
4+
Read more about Azure Maps Services [here](https://learn.microsoft.com/azure/azure-maps/)
55

6-
[Source code](https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/maps/azure-maps-render) | [API reference documentation](https://docs.microsoft.com/rest/api/maps/render) | [Product documentation](https://docs.microsoft.com/azure/azure-maps/)
6+
[Source code](https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/maps/azure-maps-render) | [API reference documentation](https://learn.microsoft.com/rest/api/maps/render) | [Product documentation](https://learn.microsoft.com/azure/azure-maps/)
77

88
## _Disclaimer_
99

@@ -14,10 +14,10 @@ _Azure SDK Python packages support for Python 2.7 has ended 01 January 2022. For
1414
### Prerequisites
1515

1616
- Python 3.8 or later is required to use this package.
17-
- An [Azure subscription][azure_subscription] and an [Azure Maps account](https://docs.microsoft.com/azure/azure-maps/how-to-manage-account-keys).
17+
- An [Azure subscription][azure_subscription] and an [Azure Maps account](https://learn.microsoft.com/azure/azure-maps/how-to-manage-account-keys).
1818
- A deployed Maps Services resource. You can create the resource via [Azure Portal][azure_portal] or [Azure CLI][azure_cli].
1919

20-
If you use Azure CLI, replace `<resource-group-name>` and `<account-name>` of your choice, and select a proper [pricing tier](https://docs.microsoft.com/azure/azure-maps/choose-pricing-tier) based on your needs via the `<sku-name>` parameter. Please refer to [this page](https://docs.microsoft.com/cli/azure/maps/account?view=azure-cli-latest#az_maps_account_create) for more details.
20+
If you use Azure CLI, replace `<resource-group-name>` and `<account-name>` of your choice, and select a proper [pricing tier](https://learn.microsoft.com/azure/azure-maps/choose-pricing-tier) based on your needs via the `<sku-name>` parameter. Please refer to [this page](https://learn.microsoft.com/cli/azure/maps/account?view=azure-cli-latest#az_maps_account_create) for more details.
2121

2222
```bash
2323
az maps account create --resource-group <resource-group-name> --account-name <account-name> --sku <sku-name>
@@ -75,7 +75,7 @@ from azure.mgmt.maps import AzureMapsManagementClient
7575
Before run the sample, please set the values of the client ID, tenant ID and client secret
7676
of the AAD application as environment variables: AZURE_CLIENT_ID, AZURE_TENANT_ID,
7777
AZURE_CLIENT_SECRET. For more info about how to get the value, please see:
78-
https://docs.microsoft.com/azure/active-directory/develop/howto-create-service-principal-portal
78+
https://learn.microsoft.com/azure/active-directory/develop/howto-create-service-principal-portal
7979
"""
8080

8181

@@ -324,7 +324,7 @@ Further detail please refer to [Samples Introduction](https://github.com/Azure/a
324324

325325
### Additional documentation
326326

327-
For more extensive documentation on Azure Maps Render, see the [Azure Maps Render documentation](https://docs.microsoft.com/rest/api/maps/render) on docs.microsoft.com.
327+
For more extensive documentation on Azure Maps Render, see the [Azure Maps Render documentation](https://learn.microsoft.com/rest/api/maps/render) on learn.microsoft.com.
328328

329329
## Contributing
330330

@@ -338,11 +338,11 @@ This project has adopted the [Microsoft Open Source Code of Conduct](https://ope
338338
[azure_subscription]: https://azure.microsoft.com/free/
339339
[azure_identity]: https://github.com/Azure/azure-sdk-for-python/blob/master/sdk/identity/azure-identity
340340
[azure_portal]: https://portal.azure.com
341-
[azure_cli]: https://docs.microsoft.com/cli/azure
341+
[azure_cli]: https://learn.microsoft.com/cli/azure
342342
[azure-key-credential]: https://aka.ms/azsdk/python/core/azurekeycredential
343343
[default_azure_credential]: https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/identity/azure-identity#defaultazurecredential
344-
[register_microsoft_entra_id_app]: https://docs.microsoft.com/powershell/module/Az.Resources/New-AzADApplication?view=azps-8.0.0
345-
[maps_authentication_microsoft_entra_id]: https://docs.microsoft.com/azure/azure-maps/how-to-manage-authentication
344+
[register_microsoft_entra_id_app]: https://learn.microsoft.com/powershell/module/Az.Resources/New-AzADApplication?view=azps-8.0.0
345+
[maps_authentication_microsoft_entra_id]: https://learn.microsoft.com/azure/azure-maps/how-to-manage-authentication
346346
[create_new_application_registration]: https://portal.azure.com/#blade/Microsoft_AAD_RegisteredApps/applicationsListBlade/quickStartType/AspNetWebAppQuickstartPage/sourceType/docs
347-
[manage_microsoft_entra_id_auth_page]: https://docs.microsoft.com/azure/azure-maps/how-to-manage-authentication
348-
[how_to_manage_authentication]: https://docs.microsoft.com/azure/azure-maps/how-to-manage-authentication#view-authentication-details
347+
[manage_microsoft_entra_id_auth_page]: https://learn.microsoft.com/azure/azure-maps/how-to-manage-authentication
348+
[how_to_manage_authentication]: https://learn.microsoft.com/azure/azure-maps/how-to-manage-authentication#view-authentication-details

0 commit comments

Comments
 (0)