Package version:

Interface ModifiedAccessConditions

standard HTTP conditional headers and tags condition.

interface ModifiedAccessConditions {
    ifMatch?: string;
    ifModifiedSince?: any;
    ifNoneMatch?: string;
    ifUnmodifiedSince?: any;
    tagConditions?: string;
}

Hierarchy (view full)

Properties

ifMatch?: string

Specify an ETag value to operate only on blobs with a matching value.

ifModifiedSince?: any

Specify this header value to operate only on a blob if it has been modified since the specified date/time.

ifNoneMatch?: string

Specify an ETag value to operate only on blobs without a matching value.

ifUnmodifiedSince?: any

Specify this header value to operate only on a blob if it has not been modified since the specified date/time.

tagConditions?: string

Optional SQL statement to apply to the tags of the blob.