Skip to content

Commit b134f7a

Browse files
committed
Build + scorecard fixes
1 parent cab4d67 commit b134f7a

9 files changed

+43
-43
lines changed

articles/azure-functions/functions-bindings-cosmosdb-v2.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -214,9 +214,9 @@ SDK Type support for Azure Cosmos is in Preview. Follow the [Python SDK Bindings
214214

215215
---
216216

217-
[CosmosClient]: /python/api/azure-cosmos/azure.cosmos.cosmosclient?view=azure-python
218-
[DatabaseProxy]: python/api/azure-cosmos/azure.cosmos.databaseproxy?view=azure-python
219-
[ContainerProxy]: /python/api/azure-cosmos/azure.cosmos.containerproxy?view=azure-python
217+
[CosmosClient]: /python/api/azure-cosmos/azure.cosmos.cosmosclient
218+
[DatabaseProxy]: /python/api/azure-cosmos/azure.cosmos.databaseproxy
219+
[ContainerProxy]: /python/api/azure-cosmos/azure.cosmos.containerproxy
220220

221221
:::zone-end
222222

articles/azure-functions/functions-bindings-http-webhook-trigger.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -414,11 +414,11 @@ Push-OutputBinding -Name Response -Value ([HttpResponseContext]@{
414414
::: zone pivot="programming-language-python"
415415
# [v2](#tab/python-v2)
416416

417-
This example uses [HTTP streams](functions-reference-python.md#http-streams-preview) to return chunked response data.
417+
This example uses [HTTP streams](functions-reference-python.md#http-streams) to return chunked response data.
418418

419419
:::code language="python" source="~/functions-python-extensions/azurefunctions-extensions-http-fastapi/samples/fastapi_samples_streaming_download/function_app.py" range="5-26" :::
420420

421-
To learn more, including how to enable HTTP streams in your project, see [HTTP streams](functions-reference-python.md#http-streams-preview).
421+
To learn more, including how to enable HTTP streams in your project, see [HTTP streams](functions-reference-python.md#http-streams).
422422

423423
This example shows a trigger binding and a Python function that uses the binding. The function looks for a `name` parameter either in the query string or the body of the HTTP request.
424424

@@ -1011,7 +1011,7 @@ You can now stream requests to and responses from your HTTP endpoint in Node.js
10111011
::: zone pivot="programming-language-python"
10121012
### HTTP streams
10131013

1014-
HTTP streams support in Python lets you accept and return data from your HTTP endpoints using FastAPI request and response APIs enabled in your functions. These APIs enable the host to process data in HTTP messages as chunks instead of having to read an entire message into memory. For more information, see [HTTP streams in Python](./functions-reference-python.md#http-streams-preview)
1014+
HTTP streams support in Python lets you accept and return data from your HTTP endpoints using FastAPI request and response APIs enabled in your functions. These APIs enable the host to process data in HTTP messages as chunks instead of having to read an entire message into memory. For more information, see [HTTP streams in Python](./functions-reference-python.md#http-streams)
10151015

10161016
>[!IMPORTANT]
10171017
> HTTP streams support for Python is currently in preview and is only supported for the Python v2 programming model.

articles/azure-functions/functions-bindings-service-bus-trigger.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ Write-Host "PowerShell ServiceBus queue trigger function processed message: $myS
200200
::: zone-end
201201
::: zone pivot="programming-language-python"
202202

203-
This example uses SDK types to directly access the underlying [`ServiceBusReceivedMessage`](/python/api/azure-servicebus/azure.servicebus.servicebusreceivedmessage?view=azure-python) object provided by the Service Bus trigger:
203+
This example uses SDK types to directly access the underlying [`ServiceBusReceivedMessage`](/python/api/azure-servicebus/azure.servicebus.servicebusreceivedmessage) object provided by the Service Bus trigger:
204204

205205
The function reads various properties of the `ServiceBusReceivedMessage` type and logs them.
206206
```python
@@ -615,7 +615,7 @@ The queue message is available to the function via a parameter typed as `func.Se
615615

616616
Functions also support Python SDK type bindings for Azure Service Bus, which lets you work with data using these underlying SDK types:
617617

618-
+ [`ServiceBusReceivedMessage`](/python/api/azure-servicebus/azure.servicebus.servicebusreceivedmessage?view=azure-python)
618+
+ [`ServiceBusReceivedMessage`](/python/api/azure-servicebus/azure.servicebus.servicebusreceivedmessage)
619619

620620
> [!IMPORTANT]
621621
> Support for Service Bus SDK types support in Python is in Preview and is only supported for the Python v2 programming model. For more information, see [SDK types in Python](./functions-reference-python.md#sdk-type-bindings).

articles/azure-functions/functions-bindings-storage-blob-input.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,8 @@ public static void Run(
5959

6060
This section contains the following examples:
6161

62-
* [HTTP trigger, look up blob name from query string](#http-trigger-look-up-blob-name-from-query-string)
63-
* [Queue trigger, receive blob name from queue message](#queue-trigger-receive-blob-name-from-queue-message)
62+
* [HTTP trigger: look up blob name from query string](#http-trigger-look-up-blob-name-from-query-string)
63+
* [Queue trigger: receive blob name from queue message](#queue-trigger-receive-blob-name-from-queue-message)
6464

6565
#### HTTP trigger, look up blob name from query string
6666

@@ -87,7 +87,7 @@ This section contains the following examples:
8787
}
8888
```
8989

90-
#### Queue trigger, receive blob name from queue message
90+
#### Queue trigger: receive blob name from queue message
9191

9292
The following example shows a Java function that uses the `QueueTrigger` annotation to receive a message containing the name of a file in a blob storage container. The `BlobInput` annotation then reads the file and passes its contents to the function as a `byte[]`.
9393

@@ -109,7 +109,7 @@ This section contains the following examples:
109109
}
110110
```
111111

112-
In the [Java functions runtime library](/java/api/overview/azure/functions/runtime), use the `@BlobInput` annotation on parameters whose value would come from a blob. This annotation can be used with native Java types, POJOs, or nullable values using `Optional<T>`.
112+
In the [Java functions runtime library](/java/api/overview/azure/functions/runtime), use the `@BlobInput` annotation on parameters whose value would come from a blob. This annotation can be used with native Java types, POJOs, or nullable values using `Optional<T>`.
113113

114114
::: zone-end
115115
::: zone pivot="programming-language-typescript"
@@ -448,7 +448,7 @@ See [Binding types](./functions-bindings-storage-blob.md?tabs=in-process#binding
448448

449449
---
450450

451-
Binding to `string`, or `Byte[]` is only recommended when the blob size is small. This is recommended because the entire blob contents are loaded into memory. For most blobs, use a `Stream` or `BlobClient` type. For more information, see [Concurrency and memory usage](./functions-bindings-storage-blob-trigger.md#memory-usage-and-concurrency).
451+
Binding to `string`, or `Byte[]` is only recommended when the blob size is small, since the entire blob contents are loaded into memory. For most blobs, use a `Stream` or `BlobClient` type. For more information, see [Concurrency and memory usage](./functions-bindings-storage-blob-trigger.md#memory-usage-and-concurrency).
452452

453453
If you get an error message when trying to bind to one of the Storage SDK types, make sure that you have a reference to [the correct Storage SDK version](./functions-bindings-storage-blob.md#tabpanel_2_functionsv1_in-process).
454454

@@ -486,8 +486,8 @@ Functions also support Python SDK type bindings for Azure Blob storage, which le
486486
> Only synchronous SDK types are supported.
487487
488488
> [!IMPORTANT]
489-
> > SDK types support for Python is Generally Available and is only supported for the Python v2 programming model. For more information, see [SDK types in Python](./functions-reference-python.md#sdk-type-bindings).
490-
> ::: zone-end
489+
> SDK types support for Python is Generally Available and is only supported for the Python v2 programming model. For more information, see [SDK types in Python](./functions-reference-python.md#sdk-type-bindings).
490+
::: zone-end
491491

492492
[!INCLUDE [functions-storage-blob-connections](../../includes/functions-storage-blob-connections.md)]
493493

articles/azure-functions/functions-bindings-storage-blob.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -256,9 +256,9 @@ SDK Types for Azure Storage Blob are Generally Available! Follow the [Python SDK
256256

257257
---
258258

259-
[BlobClient]: /python/api/azure-storage-blob/azure.storage.blob.blobclient?view=azure-python
260-
[ContainerClient]: /python/api/azure-storage-blob/azure.storage.blob.containerclient?view=azure-python
261-
[StorageStreamDownloader]: /python/api/azure-storage-blob/azure.storage.blob.storagestreamdownloader?view=azure-python
259+
[BlobClient]: /python/api/azure-storage-blob/azure.storage.blob.blobclient
260+
[ContainerClient]: /python/api/azure-storage-blob/azure.storage.blob.containerclient
261+
[StorageStreamDownloader]: /python/api/azure-storage-blob/azure.storage.blob.storagestreamdownloader
262262

263263
:::zone-end
264264

articles/azure-functions/functions-reference-node.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1665,9 +1665,9 @@ HTTP streams is a feature that makes it easier to process large data, stream Ope
16651665

16661666
> [!IMPORTANT]
16671667
> HTTP streams aren't supported in the v3 model. [Upgrade to the v4 model](./functions-node-upgrade-v4.md) to use the HTTP streaming feature.
1668-
> ::: zone-end
1669-
> ::: zone pivot="nodejs-model-v4"
16701668
> The existing `HttpRequest` and `HttpResponse` types in programming model v4 already support various ways of handling the message body, including as a stream.
1669+
::: zone-end
1670+
::: zone pivot="nodejs-model-v4"
16711671

16721672
### Prerequisites
16731673

articles/azure-functions/functions-reference-python.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -500,7 +500,7 @@ For select triggers and bindings, you can work with data types implemented by th
500500
::: zone pivot="python-mode-configuration"
501501
`> [!IMPORTANT]
502502
> Using SDK type bindings requires the [Python v2 programming model](functions-reference-python.md?pivots=python-mode-decorators#sdk-type-bindings).
503-
`::: zone-end
503+
::: zone-end
504504
::: zone pivot="python-mode-decorators"
505505

506506
> [!IMPORTANT]
@@ -520,7 +520,7 @@ For select triggers and bindings, you can work with data types implemented by th
520520

521521
[blob-sdk-types]: ./functions-bindings-storage-blob.md?pivots=programming-language-python#sdk-binding-types
522522
[cosmos-sdk-types]: ./functions-bindings-cosmosdb-v2.md?pivots=programming-language-python#sdk-binding-types
523-
[eventhub-sdk-types]: ../../includes/functions-bindings-event-hubs.md
523+
[eventhub-sdk-types]: ./functions-bindings-event-hubs.md
524524
[servicebus-sdk-types]: ./functions-bindings-service-bus.md?pivots=programming-language-python#sdk-binding-types
525525
<sup>1</sup> For output scenarios in which you would use an SDK type, you should create and work with SDK clients directly instead of using an output binding.
526526
<sup>2</sup> The Cosmos DB trigger uses the [Azure Cosmos DB change feed](/azure/cosmos-db/change-feed) and exposes change feed items as JSON-serializable types. The absence of SDK types is by-design for this scenario.
@@ -535,7 +535,7 @@ HTTP streams lets you accept and return data from your HTTP endpoints using Fast
535535
This feature makes it possible to handle large data stream, OpenAI integrations, deliver dynamic content, and support other core HTTP scenarios requiring real-time interactions over HTTP. You can also use FastAPI response types with HTTP streams. Without HTTP streams, the size of your HTTP requests and responses are limited by memory restrictions that can be encountered when processing entire message payloads all in memory.
536536
::: zone pivot="python-mode-configuration"
537537
> [!IMPORTANT]
538-
> Support for HTTP streams requires the [Python v2 programming model](functions-reference-python.md?pivots=python-mode-decorators#http-streams-preview).
538+
> Support for HTTP streams requires the [Python v2 programming model](functions-reference-python.md?pivots=python-mode-decorators#http-streams).
539539
::: zone-end
540540
::: zone pivot="python-mode-decorators"
541541
> [!IMPORTANT]

0 commit comments

Comments
 (0)