Skip to content

Commit 9fb3764

Browse files
fix broken links (Azure#39796)
* fix broken links * fix link * move links to latest; we no longer have older versions on github.io * Update sdk/ai/azure-ai-projects/README.md Co-authored-by: McCoy Patiño <[email protected]> --------- Co-authored-by: McCoy Patiño <[email protected]>
1 parent 69eea42 commit 9fb3764

File tree

10 files changed

+10
-10
lines changed

10 files changed

+10
-10
lines changed

sdk/ai/azure-ai-projects/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -630,7 +630,7 @@ az functionapp create --resource-group your-resource-group --consumption-plan-lo
630630
```
631631

632632
This function writes data to the output queue and hence needs to be authenticated to Azure, so we will need to assign the function system identity and provide it `Storage Queue Data Contributor`. To do that in Azure portal select the function, located in `your-resource-group` resource group and in Settings>Identity, switch it on and click Save. After that assign the `Storage Queue Data Contributor` permission on storage account used by our function (`storage_account_already_present_in_resource_group` in the script above) for just assigned System Managed identity.
633-
**Note:** in python we need to provide the explicit queue connection. It is defined in the line `connection="AzureWebJobsStorage".`. `AzureWebJobsStorage` is a setting, which can be viewed in `function_name` Settings>Environment variables>AzureWebJobsStorage and will look like DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storage_account_already_present_in_resource_group;AccountKey=xxxxx. Another option is to provide the Managed identity. In this case we will need to set `connection` to prefix, present in three environment variables. For example, `connection=STORAGE_CONNECTION` and the variables will be: `STORAGE_CONNECTION__clientId` (managed entity UUID), `STORAGE_CONNECTION__credential` ("managedidentity") and `STORAGE_CONNECTION__queueServiceUri` (the URI of storage account, for example https://storage_account_already_present_in_resource_group.queue.core.windows.net).
633+
**Note:** in python we need to provide the explicit queue connection. It is defined in the line `connection="AzureWebJobsStorage".`. `AzureWebJobsStorage` is a setting, which can be viewed in `function_name` Settings>Environment variables>AzureWebJobsStorage and will look like DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=storage_account_already_present_in_resource_group;AccountKey=xxxxx. Another option is to provide the Managed identity. In this case we will need to set `connection` to prefix, present in three environment variables. For example, `connection=STORAGE_CONNECTION` and the variables will be: `STORAGE_CONNECTION__clientId` (managed entity UUID), `STORAGE_CONNECTION__credential` ("managedidentity") and `STORAGE_CONNECTION__queueServiceUri` (the URI of storage account, for example `"https://storage_account_already_present_in_resource_group.queue.core.windows.net"`).
634634

635635
Now we will create the function itself. Install [.NET](https://dotnet.microsoft.com/download) and [Core Tools](https://go.microsoft.com/fwlink/?linkid=2174087) and create the function project using next commands.
636636
```

sdk/communication/azure-communication-chat/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Read more about Azure Communication Services [here](https://learn.microsoft.com/
66
[Source code](https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/communication/azure-communication-chat)
77
| [Package (Pypi)](https://pypi.org/project/azure-communication-chat/)
88
| [Package (Conda)](https://anaconda.org/microsoft/azure-communication/)
9-
| [API reference documentation](https://azuresdkdocs.z19.web.core.windows.net/python/azure-communication-chat/1.0.0b5/index.html)
9+
| [API reference documentation](https://azuresdkdocs.z19.web.core.windows.net/python/azure-communication-chat/latest/index.html)
1010
| [Product documentation](https://learn.microsoft.com/azure/communication-services/)
1111

1212
## _Disclaimer_

sdk/containerregistry/azure-containerregistry/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -315,7 +315,7 @@ additional questions or comments.
315315
<!-- LINKS -->
316316
[source]: https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/containerregistry/azure-containerregistry
317317
[package]: https://pypi.org/project/azure-containerregistry/
318-
[docs]: https://azuresdkdocs.z19.web.core.windows.net/python/azure-containerregistry/1.0.0b1/index.html
318+
[docs]: https://azuresdkdocs.z19.web.core.windows.net/python/azure-containerregistry/latest/index.html
319319
[rest_docs]: https://learn.microsoft.com/rest/api/containerregistry/
320320
[product_docs]: https://learn.microsoft.com/azure/container-registry
321321
[pip_link]: https://pypi.org

sdk/keyvault/azure-keyvault-keys/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -435,7 +435,7 @@ as a context manager, a `KeyClient` closes opened sockets on exit.
435435
### Breaking changes:
436436
- Removed `KeyClient.get_cryptography_client()` and `CryptographyClient.get_key()`
437437
- Moved the optional parameters of several methods into kwargs (
438-
[docs](https://azuresdkdocs.z19.web.core.windows.net/python/azure-keyvault-keys/4.0.0/index.html)
438+
[docs](https://azuresdkdocs.z19.web.core.windows.net/python/azure-keyvault-keys/latest/index.html)
439439
detail the new keyword arguments):
440440
- `create_key` now has positional parameters `name` and `key_type`
441441
- `create_ec_key` and `create_rsa_key` now have one positional parameter, `name`

sdk/keyvault/azure-keyvault-secrets/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ Used as a context manager, a `SecretClient` closes opened sockets on exit.
186186
## 4.0.0 (2019-10-31)
187187
### Breaking changes:
188188
- Moved optional parameters of two methods into kwargs (
189-
[docs](https://azuresdkdocs.z19.web.core.windows.net/python/azure-keyvault-secrets/4.0.0/azure.keyvault.secrets.html)
189+
[docs](https://azuresdkdocs.z19.web.core.windows.net/python/azure-keyvault-secrets/latest/azure.keyvault.secrets.html)
190190
detail the new keyword arguments):
191191
- `set_secret` now has positional parameters `name` and `value`
192192
- `update_secret_properties` now has positional parameters `name` and

sdk/storage/azure-storage-blob-changefeed/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,6 @@ This version and all future versions will require Python 3.6+. Python 2.7 is no
3333
- Support for ChangeFeedClient: get change feed events by page, get all change feed events, get events in a time range
3434

3535
This package's
36-
[documentation](https://aka.ms/azsdk-python-storage-blob-changefeed-ref)
36+
[documentation](https://learn.microsoft.com/python/api/overview/azure/storage-blob-changefeed-readme?view=azure-python-preview)
3737
and
3838
[samples](https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-blob-changefeed/samples)

sdk/storage/azure-storage-blob-changefeed/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
This preview package for Python enables users to get blob change feed events. These events can be lazily generated, iterated by page, retrieved for a specific time interval, or iterated from a specific continuation token.
44

55

6-
[Source code](https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-blob-changefeed/azure/storage/blob/changefeed) | [Package (PyPi)](https://pypi.org/project/azure-storage-blob-changefeed/) | [API reference documentation](https://aka.ms/azsdk-python-storage-blob-changefeed-ref) | [Product documentation](https://learn.microsoft.com/azure/storage/) | [Samples](https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-blob-changefeed/samples)
6+
[Source code](https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-blob-changefeed/azure/storage/blob/changefeed) | [Package (PyPi)](https://pypi.org/project/azure-storage-blob-changefeed/) | [API reference documentation](https://learn.microsoft.com/python/api/overview/azure/storage-blob-changefeed-readme?view=azure-python-preview) | [Product documentation](https://learn.microsoft.com/azure/storage/) | [Samples](https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-blob-changefeed/samples)
77

88

99
## Getting started

sdk/storage/azure-storage-blob-changefeed/samples/README.md

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

4646
## Next steps
4747

48-
Check out the [API reference documentation](https://aka.ms/azsdk-python-storage-blob-changefeed-ref) to learn more about
48+
Check out the [API reference documentation](https://learn.microsoft.com/python/api/overview/azure/storage-blob-changefeed-readme?view=azure-python-preview) to learn more about
4949
what you can do with the Azure Storage Blob client library.

sdk/storage/azure-storage-file-datalake/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ This preview package for Python includes ADLS Gen2 specific API support made ava
99
[Source code](https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-file-datalake/azure/storage/filedatalake)
1010
| [Package (PyPi)](https://pypi.org/project/azure-storage-file-datalake/)
1111
| [Package (Conda)](https://anaconda.org/microsoft/azure-storage/)
12-
| [API reference documentation](https://aka.ms/azsdk-python-storage-filedatalake-ref)
12+
| [API reference documentation](https://learn.microsoft.com/python/api/azure-storage-file-datalake/azure.storage.filedatalake?view=azure-python)
1313
| [Product documentation](https://learn.microsoft.com/azure/storage/)
1414
| [Samples](https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-file-datalake/samples)
1515

sdk/storage/azure-storage-file-datalake/samples/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,5 +61,5 @@ pip install azure-storage-file-datalake --pre
6161

6262
## Next steps
6363

64-
Check out the [API reference documentation](https://aka.ms/azsdk-python-storage-filedatalake-ref) to learn more about
64+
Check out the [API reference documentation](https://learn.microsoft.com/python/api/azure-storage-file-datalake/azure.storage.filedatalake?view=azure-python) to learn more about
6565
what you can do with the DataLake Storage client library.

0 commit comments

Comments
 (0)