Skip to main content

append_blob

Creates, updates, deletes, gets or lists an append_blob resource.

Overview

Nameappend_blob
TypeResource
Idazure.storage_blob.append_blob

Fields

The following fields are returned by SELECT queries:

SELECT not supported for this resource, use SHOW METHODS to view available operations for the resource.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
createinsertContent-Length, x-ms-version, accounttimeout, x-ms-blob-content-type, x-ms-blob-content-encoding, x-ms-blob-content-language, x-ms-blob-content-md5, x-ms-blob-cache-control, x-ms-meta, x-ms-lease-id, x-ms-blob-content-disposition, x-ms-encryption-key, x-ms-encryption-key-sha256, x-ms-encryption-algorithm, x-ms-encryption-scope, If-Modified-Since, If-Unmodified-Since, If-Match, If-None-Match, x-ms-if-tags, x-ms-client-request-id, x-ms-tags, x-ms-immutability-policy-until-date, x-ms-immutability-policy-mode, x-ms-legal-holdThe Create Append Blob operation creates a new append blob.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
Content-LengthintegerThe length of the request. Required.
accountstringStorage account name. (default: )
x-ms-versionstring
If-Matchstring
If-Modified-Sincestring
If-None-Matchstring
If-Unmodified-Sincestring
timeoutintegerThe timeout parameter is expressed in seconds. For more information, see
x-ms-blob-cache-controlstring
x-ms-blob-content-dispositionstring
x-ms-blob-content-encodingstring
x-ms-blob-content-languagestring
x-ms-blob-content-md5string (byte)
x-ms-blob-content-typestring
x-ms-client-request-idstringProvides a client-generated, opaque value with a 1 KB character limit that is recorded in the analytics logs when storage analytics logging is enabled. Default value is None.
x-ms-encryption-algorithmstring
x-ms-encryption-keystring
x-ms-encryption-key-sha256string
x-ms-encryption-scopestring
x-ms-if-tagsstring
x-ms-immutability-policy-modestringSpecifies the immutability policy mode to set on the blob. Known values are: "Mutable", "Unlocked", and "Locked". Default value is None.
x-ms-immutability-policy-until-datestringSpecifies the date time when the blobs immutability policy is set to expire. Default value is None.
x-ms-lease-idstring
x-ms-metaobjectOptional. Specifies a user-defined name-value pair associated with the blob. If no name-value pairs are specified, the operation will copy the metadata from the source blob or file to the destination blob. If one or more name-value pairs are specified, the destination blob is created with the specified metadata, and metadata is not copied from the source blob or file. Note that beginning with version 2009-09-19, metadata names must adhere to the naming rules for C# identifiers. See Naming and Referencing Containers, Blobs, and Metadata for more information. Default value is None.
x-ms-tagsstringOptional. Used to set blob tags in various blob operations. Default value is None.

INSERT examples

The Create Append Blob operation creates a new append blob.

INSERT INTO azure.storage_blob.append_blob (
blobCacheControl,
blobContentType,
blobContentMD5,
blobContentEncoding,
blobContentLanguage,
blobContentDisposition,
Content-Length,
x-ms-version,
account,
timeout,
x-ms-blob-content-type,
x-ms-blob-content-encoding,
x-ms-blob-content-language,
x-ms-blob-content-md5,
x-ms-blob-cache-control,
x-ms-meta,
x-ms-lease-id,
x-ms-blob-content-disposition,
x-ms-encryption-key,
x-ms-encryption-key-sha256,
x-ms-encryption-algorithm,
x-ms-encryption-scope,
If-Modified-Since,
If-Unmodified-Since,
If-Match,
If-None-Match,
x-ms-if-tags,
x-ms-client-request-id,
x-ms-tags,
x-ms-immutability-policy-until-date,
x-ms-immutability-policy-mode,
x-ms-legal-hold
)
SELECT
'{{ blobCacheControl }}',
'{{ blobContentType }}',
'{{ blobContentMD5 }}',
'{{ blobContentEncoding }}',
'{{ blobContentLanguage }}',
'{{ blobContentDisposition }}',
'{{ Content-Length }}',
'{{ x-ms-version }}',
'{{ account }}',
'{{ timeout }}',
'{{ x-ms-blob-content-type }}',
'{{ x-ms-blob-content-encoding }}',
'{{ x-ms-blob-content-language }}',
'{{ x-ms-blob-content-md5 }}',
'{{ x-ms-blob-cache-control }}',
'{{ x-ms-meta }}',
'{{ x-ms-lease-id }}',
'{{ x-ms-blob-content-disposition }}',
'{{ x-ms-encryption-key }}',
'{{ x-ms-encryption-key-sha256 }}',
'{{ x-ms-encryption-algorithm }}',
'{{ x-ms-encryption-scope }}',
'{{ If-Modified-Since }}',
'{{ If-Unmodified-Since }}',
'{{ If-Match }}',
'{{ If-None-Match }}',
'{{ x-ms-if-tags }}',
'{{ x-ms-client-request-id }}',
'{{ x-ms-tags }}',
'{{ x-ms-immutability-policy-until-date }}',
'{{ x-ms-immutability-policy-mode }}',
'{{ x-ms-legal-hold }}'
;