Note
Access to this page requires authorization. You can try signing in or .
Access to this page requires authorization. You can try .
PageBlobRequestConditions interface
- Package:
- @azure/storage-blob
Conditions to add to the creation of this page blob.
Inherited Properties
| ifMatch | Specify an ETag value to operate only on blobs with a matching value. |
| ifModifiedSince | Specify this header value to operate only on a blob if it has been modified since the specified date/time. |
| ifNoneMatch | Specify an ETag value to operate only on blobs without a matching value. |
| ifSequenceNumberEqualTo | Specify this header value to operate only on a blob if it has the specified sequence number. |
| ifSequenceNumberLessThan | Specify this header value to operate only on a blob if it has a sequence number less than the specified. |
| ifSequenceNumberLessThanOrEqualTo | Specify this header value to operate only on a blob if it has a sequence number less than or equal to the specified. |
| ifUnmodifiedSince | Specify this header value to operate only on a blob if it has not been modified since the specified date/time. |
| leaseId | If specified, the operation only succeeds if the resource's lease is active and matches this ID. |
| tagConditions | Optional SQL statement to apply to the tags of the blob. |
Inherited Property Details
ifMatch
Specify an ETag value to operate only on blobs with a matching value.
ifMatch?: string
Property Value
string
Inherited From BlobRequestConditions.ifMatch
ifModifiedSince
Specify this header value to operate only on a blob if it has been modified since the specified date/time.
ifModifiedSince?: Date
Property Value
Date
Inherited From BlobRequestConditions.ifModifiedSince
ifNoneMatch
Specify an ETag value to operate only on blobs without a matching value.
ifNoneMatch?: string
Property Value
string
Inherited From BlobRequestConditions.ifNoneMatch
ifSequenceNumberEqualTo
Specify this header value to operate only on a blob if it has the specified sequence number.
ifSequenceNumberEqualTo?: number
Property Value
number
Inherited From SequenceNumberAccessConditions.ifSequenceNumberEqualTo
ifSequenceNumberLessThan
Specify this header value to operate only on a blob if it has a sequence number less than the specified.
ifSequenceNumberLessThan?: number
Property Value
number
Inherited From SequenceNumberAccessConditions.ifSequenceNumberLessThan
ifSequenceNumberLessThanOrEqualTo
Specify this header value to operate only on a blob if it has a sequence number less than or equal to the specified.
ifSequenceNumberLessThanOrEqualTo?: number
Property Value
number
Inherited From SequenceNumberAccessConditions.ifSequenceNumberLessThanOrEqualTo
ifUnmodifiedSince
Specify this header value to operate only on a blob if it has not been modified since the specified date/time.
ifUnmodifiedSince?: Date
Property Value
Date
Inherited From BlobRequestConditions.ifUnmodifiedSince
leaseId
If specified, the operation only succeeds if the resource's lease is active and matches this ID.
leaseId?: string
Property Value
string
Inherited From BlobRequestConditions.leaseId
tagConditions
Optional SQL statement to apply to the tags of the blob.
tagConditions?: string
Property Value
string
Inherited From BlobRequestConditions.tagConditions
