You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/azure-functions/functions-bindings-storage-blob.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -317,7 +317,7 @@ The following table explains the binding configuration properties that you set i
317
317
|**direction** | n/a | Must be set to `in`. This property is set automatically when you create the trigger in the Azure portal. Exceptions are noted in the [usage](#trigger---usage) section. |
318
318
|**name** | n/a | The name of the variable that represents the blob in function code. |
319
319
|**path** | **BlobPath** |The [container](../storage/blobs/storage-blobs-introduction.md#blob-storage-resources) to monitor. May be a [blob name pattern](#trigger---blob-name-patterns). |
320
-
|**connection** | **Connection** | The name of an app setting that contains the Storage connection string to use for this binding. If the app setting name begins with "AzureWebJobs", you can specify only the remainder of the name here. For example, if you set `connection` to "MyStorage", the Functions runtime looks for an app setting that is named "AzureWebJobsMyStorage." If you leave `connection` empty, the Functions runtime uses the default Storage connection string in the app setting that is named `AzureWebJobsStorage`.<br><br>The connection string must be for a general-purpose storage account, not a [Blob storage account](../storage/common/storage-account-overview.md#types-of-storage-accounts).|
320
+
|**connection** | **Connection** | The name of an app setting that contains the Storage connection string to use for this binding. If the app setting name begins with "AzureWebJobs", you can specify only the remainder of the name here. For example, if you set `connection` to "MyStorage", the Functions runtime looks for an app setting that is named "MyStorage." If you leave `connection` empty, the Functions runtime uses the default Storage connection string in the app setting that is named `AzureWebJobsStorage`.<br><br>The connection string must be for a general-purpose storage account, not a [Blob storage account](../storage/common/storage-account-overview.md#types-of-storage-accounts).|
321
321
322
322
[!INCLUDE [app settings to local.settings.json](../../includes/functions-app-settings-local.md)]
323
323
@@ -733,7 +733,7 @@ The following table explains the binding configuration properties that you set i
733
733
|**direction**| n/a | Must be set to `in`. Exceptions are noted in the [usage](#input---usage) section. |
734
734
|**name**| n/a | The name of the variable that represents the blob in function code.|
735
735
|**path**|**BlobPath**| The path to the blob. |
736
-
|**connection**|**Connection**| The name of an app setting that contains the [Storage connection string](../storage/common/storage-configure-connection-string.md) to use for this binding. If the app setting name begins with "AzureWebJobs", you can specify only the remainder of the name here. For example, if you set `connection` to "MyStorage", the Functions runtime looks for an app setting that is named "AzureWebJobsMyStorage." If you leave `connection` empty, the Functions runtime uses the default Storage connection string in the app setting that is named `AzureWebJobsStorage`.<br><br>The connection string must be for a general-purpose storage account, not a [blob-only storage account](../storage/common/storage-account-overview.md#types-of-storage-accounts).|
736
+
|**connection**|**Connection**| The name of an app setting that contains the [Storage connection string](../storage/common/storage-configure-connection-string.md) to use for this binding. If the app setting name begins with "AzureWebJobs", you can specify only the remainder of the name here. For example, if you set `connection` to "MyStorage", the Functions runtime looks for an app setting that is named "MyStorage." If you leave `connection` empty, the Functions runtime uses the default Storage connection string in the app setting that is named `AzureWebJobsStorage`.<br><br>The connection string must be for a general-purpose storage account, not a [blob-only storage account](../storage/common/storage-account-overview.md#types-of-storage-accounts).|
737
737
|n/a |**Access**| Indicates whether you will be reading or writing. |
738
738
739
739
[!INCLUDE [app settings to local.settings.json](../../includes/functions-app-settings-local.md)]
@@ -1085,7 +1085,7 @@ The following table explains the binding configuration properties that you set i
1085
1085
|**direction**| n/a | Must be set to `out` for an output binding. Exceptions are noted in the [usage](#output---usage) section. |
1086
1086
|**name**| n/a | The name of the variable that represents the blob in function code. Set to `$return` to reference the function return value.|
1087
1087
|**path**|**BlobPath**| The path to the blob container. |
1088
-
|**connection**|**Connection**| The name of an app setting that contains the Storage connection string to use for this binding. If the app setting name begins with "AzureWebJobs", you can specify only the remainder of the name here. For example, if you set `connection` to "MyStorage", the Functions runtime looks for an app setting that is named "AzureWebJobsMyStorage." If you leave `connection` empty, the Functions runtime uses the default Storage connection string in the app setting that is named `AzureWebJobsStorage`.<br><br>The connection string must be for a general-purpose storage account, not a [blob-only storage account](../storage/common/storage-account-overview.md#types-of-storage-accounts).|
1088
+
|**connection**|**Connection**| The name of an app setting that contains the Storage connection string to use for this binding. If the app setting name begins with "AzureWebJobs", you can specify only the remainder of the name here. For example, if you set `connection` to "MyStorage", the Functions runtime looks for an app setting that is named "MyStorage." If you leave `connection` empty, the Functions runtime uses the default Storage connection string in the app setting that is named `AzureWebJobsStorage`.<br><br>The connection string must be for a general-purpose storage account, not a [blob-only storage account](../storage/common/storage-account-overview.md#types-of-storage-accounts).|
1089
1089
|n/a |**Access**| Indicates whether you will be reading or writing. |
1090
1090
1091
1091
[!INCLUDE [app settings to local.settings.json](../../includes/functions-app-settings-local.md)]
@@ -504,7 +504,7 @@ The following table explains the binding configuration properties that you set i
504
504
|**direction**| n/a | Must be set to `out`. This property is set automatically when you create the trigger in the Azure portal. |
505
505
|**name**| n/a | The name of the variable that represents the queue in function code. Set to `$return` to reference the function return value.|
506
506
|**queueName**|**QueueName**| The name of the queue. |
507
-
|**connection**|**Connection**|The name of an app setting that contains the Storage connection string to use for this binding. If the app setting name begins with "AzureWebJobs", you can specify only the remainder of the name here. For example, if you set `connection` to "MyStorage", the Functions runtime looks for an app setting that is named "AzureWebJobsMyStorage." If you leave `connection` empty, the Functions runtime uses the default Storage connection string in the app setting that is named `AzureWebJobsStorage`.|
507
+
|**connection**|**Connection**|The name of an app setting that contains the Storage connection string to use for this binding. If the app setting name begins with "AzureWebJobs", you can specify only the remainder of the name here. For example, if you set `connection` to "MyStorage", the Functions runtime looks for an app setting that is named "MyStorage." If you leave `connection` empty, the Functions runtime uses the default Storage connection string in the app setting that is named `AzureWebJobsStorage`.|
508
508
509
509
[!INCLUDE [app settings to local.settings.json](../../includes/functions-app-settings-local.md)]
Copy file name to clipboardExpand all lines: articles/azure-functions/functions-bindings-storage-table.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -504,7 +504,7 @@ The following table explains the binding configuration properties that you set i
504
504
|**rowKey** |**RowKey** | Optional. The row key of the table entity to read. See the [usage](#input---usage) section for guidance on how to use this property.|
505
505
|**take** |**Take** | Optional. The maximum number of entities to read in JavaScript. See the [usage](#input---usage) section for guidance on how to use this property.|
506
506
|**filter** |**Filter** | Optional. An OData filter expression for table input in JavaScript. See the [usage](#input---usage) section for guidance on how to use this property.|
507
-
|**connection** |**Connection** | The name of an app setting that contains the Storage connection string to use for this binding. If the app setting name begins with "AzureWebJobs", you can specify only the remainder of the name here. For example, if you set `connection` to "MyStorage", the Functions runtime looks for an app setting that is named "AzureWebJobsMyStorage." If you leave `connection` empty, the Functions runtime uses the default Storage connection string in the app setting that is named `AzureWebJobsStorage`.|
507
+
|**connection** |**Connection** | The name of an app setting that contains the Storage connection string to use for this binding. If the app setting name begins with "AzureWebJobs", you can specify only the remainder of the name here. For example, if you set `connection` to "MyStorage", the Functions runtime looks for an app setting that is named "MyStorage." If you leave `connection` empty, the Functions runtime uses the default Storage connection string in the app setting that is named `AzureWebJobsStorage`.|
508
508
509
509
[!INCLUDE [app settings to local.settings.json](../../includes/functions-app-settings-local.md)]
510
510
@@ -762,7 +762,7 @@ The following table explains the binding configuration properties that you set i
762
762
|**tableName**|**TableName**| The name of the table.|
763
763
|**partitionKey**|**PartitionKey**| The partition key of the table entity to write. See the [usage section](#output---usage) for guidance on how to use this property.|
764
764
|**rowKey**|**RowKey**| The row key of the table entity to write. See the [usage section](#output---usage) for guidance on how to use this property.|
765
-
|**connection**|**Connection**| The name of an app setting that contains the Storage connection string to use for this binding. If the app setting name begins with "AzureWebJobs", you can specify only the remainder of the name here. For example, if you set `connection` to "MyStorage", the Functions runtime looks for an app setting that is named "AzureWebJobsMyStorage." If you leave `connection` empty, the Functions runtime uses the default Storage connection string in the app setting that is named `AzureWebJobsStorage`.|
765
+
|**connection**|**Connection**| The name of an app setting that contains the Storage connection string to use for this binding. If the app setting name begins with "AzureWebJobs", you can specify only the remainder of the name here. For example, if you set `connection` to "MyStorage", the Functions runtime looks for an app setting that is named "MyStorage." If you leave `connection` empty, the Functions runtime uses the default Storage connection string in the app setting that is named `AzureWebJobsStorage`.|
766
766
767
767
[!INCLUDE [app settings to local.settings.json](../../includes/functions-app-settings-local.md)]
0 commit comments