Skip to content

Commit aeb364e

Browse files
authored
Fixed urls (Azure#39115)
1 parent 8a74c48 commit aeb364e

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

sdk/appconfiguration/azure-appconfiguration-provider/samples/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,5 +60,5 @@ Check out our Django and Flask examples to see how to use the provider in a web
6060

6161
<!-- LINKS -->
6262
[azure_sub]: https://azure.microsoft.com/free/
63-
[azure_cli]: https://docs.microsoft.com/cli/azure
63+
[azure_cli]: https://learn.microsoft.com/cli/azure
6464
[configuration_store]: https://azure.microsoft.com/services/app-configuration/

sdk/appconfiguration/azure-appconfiguration/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ export AZURE_CLIENT_SECRET="random password"
109109
export AZURE_TENANT_ID="tenant id"
110110
```
111111
112-
Assign one of the applicable [App Configuration roles](https://docs.microsoft.com/azure/azure-app-configuration/rest-api-authorization-azure-ad) to the service principal.
112+
Assign one of the applicable [App Configuration roles](https://learn.microsoft.com/azure/azure-app-configuration/rest-api-authorization-azure-ad) to the service principal.
113113

114114
##### Create a client
115115
Once the **AZURE_CLIENT_ID**, **AZURE_CLIENT_SECRET** and
@@ -447,9 +447,9 @@ see the [Code of Conduct FAQ][coc_faq] or contact [[email protected]][coc_c
447447
additional questions or comments.
448448

449449
<!-- LINKS -->
450-
[appconfig_docs]: https://docs.microsoft.com/azure/azure-app-configuration/
450+
[appconfig_docs]: https://learn.microsoft.com/azure/azure-app-configuration/
451451
[appconfig_rest]: https://github.com/Azure/AppConfiguration#rest-api-reference
452-
[azure_cli]: https://docs.microsoft.com/cli/azure
452+
[azure_cli]: https://learn.microsoft.com/cli/azure
453453
[azure_sub]: https://azure.microsoft.com/free/
454454
[configuration_client_class]: https://github.com/Azure/azure-sdk-for-python/blob/main/sdk/appconfiguration/azure-appconfiguration/azure/appconfiguration/_azure_appconfiguration_client.py
455455
[package]: https://pypi.org/project/azure-appconfiguration/
@@ -461,4 +461,4 @@ additional questions or comments.
461461
[coc_faq]: https://opensource.microsoft.com/codeofconduct/faq/
462462
[coc_contact]: mailto:[email protected]
463463
[troubleshooting_guide]: https://aka.ms/azsdk/python/appconfiguration/troubleshoot
464-
[label_concept]: https://docs.microsoft.com/azure/azure-app-configuration/concept-key-value#label-keys
464+
[label_concept]: https://learn.microsoft.com/azure/azure-app-configuration/concept-key-value#label-keys

sdk/appconfiguration/azure-appconfiguration/TROUBLESHOOTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Basic information about HTTP sessions (URLs, headers, etc.) is logged at `INFO`
2424

2525
Detailed `DEBUG` level logging, including request/response bodies and **unredacted** headers, can be enabled on the client or per-operation with the `logging_enable` keyword argument.
2626

27-
See full Python SDK logging documentation with examples [here](https://docs.microsoft.com/azure/developer/python/azure-sdk-logging).
27+
See full Python SDK logging documentation with examples [here](https://learn.microsoft.com/azure/developer/python/azure-sdk-logging).
2828

2929
## Troubleshooting authentication issues
3030

sdk/appconfiguration/azure-appconfiguration/samples/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ pip install azure-appconfiguration
4545

4646
<!-- LINKS -->
4747
[azure_sub]: https://azure.microsoft.com/free/
48-
[azure_cli]: https://docs.microsoft.com/cli/azure
48+
[azure_cli]: https://learn.microsoft.com/cli/azure
4949
[configuration_store]: https://azure.microsoft.com/services/app-configuration/
5050
[hello_world_sample]: https://github.com/Azure/azure-sdk-for-python/blob/main/sdk/appconfiguration/azure-appconfiguration/samples/hello_world_sample.py
5151
[hello_world_sample_async]: https://github.com/Azure/azure-sdk-for-python/blob/main/sdk/appconfiguration/azure-appconfiguration/samples/hello_world_sample_async.py

sdk/appconfiguration/azure-appconfiguration/tests/test_azure_appconfiguration_client_aad_async.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@ async def test_list_configuration_settings_reserved_chars(self, appconfiguration
277277
assert all(x.label == LABEL_RESERVED_CHARS for x in items)
278278
await client.delete_configuration_setting(reserved_char_kv.key)
279279

280-
# NOTE: Label filter does not support wildcard at beginning on filters. https://docs.microsoft.com/azure/azure-app-configuration/rest-api-key-value#supported-filters
280+
# NOTE: Label filter does not support wildcard at beginning on filters. https://learn.microsoft.com/azure/azure-app-configuration/rest-api-key-value#supported-filters
281281
@app_config_aad_decorator_async
282282
@recorded_by_proxy_async
283283
async def test_list_configuration_settings_contains(self, appconfiguration_endpoint_string):

0 commit comments

Comments
 (0)