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
r/storage_blob: removing support for defining source_content for Page blobs
In retrospect this doesn't make sense since the content needs to be aligned to a 512-byte boundary
As such it's more likely this'll be used for Block Blobs rather than Page Blobs
Copy file name to clipboardexpand all lines: website/docs/r/storage_blob.html.markdown
+3-3
Original file line number
Diff line number
Diff line change
@@ -62,12 +62,12 @@ The following arguments are supported:
62
62
63
63
*`content_type` - (Optional) The content type of the storage blob. Cannot be defined if `source_uri` is defined. Defaults to `application/octet-stream`.
64
64
65
-
*`source` - (Optional) An absolute path to a file on the local system. Cannot be specified if `source_content` or `source_uri` is specified.
65
+
*`source` - (Optional) An absolute path to a file on the local system. This field cannot be specified for Append blobs and annot be specified if `source_content` or `source_uri` is specified.
66
66
67
-
*`source_content` - (Optional) The content for this blob which should be defined inline. Cannot be specified if `source` or `source_uri` is specified.
67
+
*`source_content` - (Optional) The content for this blob which should be defined inline. This field can only be specified for Block blobs and cannot be specified if `source` or `source_uri` is specified.
68
68
69
69
*`source_uri` - (Optional) The URI of an existing blob, or a file in the Azure File service, to use as the source contents
70
-
for the blob to be created. Changing this forces a new resource to be created. Cannot be specified if `source` or `source_content` is specified.
70
+
for the blob to be created. Changing this forces a new resource to be created. This field cannot be specified for Append blobs and cannot be specified if `source` or `source_content` is specified.
71
71
72
72
*`parallelism` - (Optional) The number of workers per CPU core to run for concurrent uploads. Defaults to `8`.
0 commit comments