Skip to content

Commit ce05d48

Browse files
committed
Add data_type property for v2.
1 parent 35fb95d commit ce05d48

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -405,6 +405,7 @@ For Python v2 functions defined using decorators, the following properties on th
405405
|`arg_name` | The name of the variable that represents the blob in function code. |
406406
|`path` | The path to the blob For the `blob_input` decorator, it's the blob read. For the `blob_output` decorator, it's the output or copy of the input blob. |
407407
|`connection` | The storage account connection string. |
408+
|`data_type` | For dynamically typed languages, specifies the underlying data type. Possible values are `string`, `binary`, or `stream`. For more detail, refer to the [triggers and bindings concepts](functions-triggers-bindings.md?tabs=python#trigger-and-binding-definitions). |
408409

409410
For Python functions defined by using *function.json*, see the [Configuration](#configuration) section.
410411
::: zone-end

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -457,6 +457,8 @@ For Python v2 functions defined using decorators, the following properties on th
457457
|`arg_name` | The name of the variable that represents the blob in function code. |
458458
|`path` | The path to the blob For the `blob_input` decorator, it's the blob read. For the `blob_output` decorator, it's the output or copy of the input blob. |
459459
|`connection` | The storage account connection string. |
460+
|`dataType` | For dynamically typed languages, specifies the underlying data type. Possible values are `string`, `binary`, or `stream`. For more detail, refer to the [triggers and bindings concepts](functions-triggers-bindings.md?tabs=python#trigger-and-binding-definitions). |
461+
460462

461463
For Python functions defined by using *function.json*, see the [Configuration](#configuration) section.
462464
::: zone-end

0 commit comments

Comments
 (0)