public class BlobRequestConditions extends BlobLeaseRequestConditions
Constructor and Description |
---|
BlobRequestConditions() |
Modifier and Type | Method and Description |
---|---|
String |
getLeaseId()
Gets the lease ID that blobs and containers must match.
|
BlobRequestConditions |
setIfMatch(String ifMatch)
Optionally limit requests to resources that match the passed ETag.
|
BlobRequestConditions |
setIfModifiedSince(OffsetDateTime ifModifiedSince)
Optionally limit requests to resources that have only been modified since the passed
datetime . |
BlobRequestConditions |
setIfNoneMatch(String ifNoneMatch)
Optionally limit requests to resources that do not match the passed ETag.
|
BlobRequestConditions |
setIfUnmodifiedSince(OffsetDateTime ifUnmodifiedSince)
Optionally limit requests to resources that have remained unmodified since the passed
datetime . |
BlobRequestConditions |
setLeaseId(String leaseId)
Optionally limits requests to blobs and containers that match the lease ID.
|
BlobRequestConditions |
setTagsConditions(String tagsConditions)
Optionally applies the SQL statement to the tags of the blob.
|
getTagsConditions
public BlobRequestConditions setIfMatch(String ifMatch)
setIfMatch
in class BlobLeaseRequestConditions
ifMatch
- ETag that resources must match.public BlobRequestConditions setIfNoneMatch(String ifNoneMatch)
setIfNoneMatch
in class BlobLeaseRequestConditions
ifNoneMatch
- ETag that resources must not match.public BlobRequestConditions setIfModifiedSince(OffsetDateTime ifModifiedSince)
datetime
.setIfModifiedSince
in class BlobLeaseRequestConditions
ifModifiedSince
- The datetime that resources must have been modified since.public BlobRequestConditions setIfUnmodifiedSince(OffsetDateTime ifUnmodifiedSince)
datetime
.setIfUnmodifiedSince
in class BlobLeaseRequestConditions
ifUnmodifiedSince
- The datetime that resources must have remained unmodified since.public BlobRequestConditions setTagsConditions(String tagsConditions)
setTagsConditions
in class BlobLeaseRequestConditions
tagsConditions
- The SQL statement that apply to the tags of the blob.public String getLeaseId()
public BlobRequestConditions setLeaseId(String leaseId)
leaseId
- Lease ID that blobs and containers must match.Copyright © 2021 Microsoft Corporation. All rights reserved.