Package version:

Interface BlobModifiedAccessConditions

Parameter group

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

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.