public class BlobLeaseRequestConditions
extends com.azure.core.http.RequestConditions
| Constructor and Description |
|---|
BlobLeaseRequestConditions() |
| Modifier and Type | Method and Description |
|---|---|
String |
getTagsConditions()
Gets the SQL statement that apply to the tags of the blob.
|
BlobLeaseRequestConditions |
setIfMatch(String ifMatch)
Optionally limit requests to resources that match the passed ETag.
|
BlobLeaseRequestConditions |
setIfModifiedSince(OffsetDateTime ifModifiedSince)
Optionally limit requests to resources that have only been modified since the passed
datetime. |
BlobLeaseRequestConditions |
setIfNoneMatch(String ifNoneMatch)
Optionally limit requests to resources that do not match the passed ETag.
|
BlobLeaseRequestConditions |
setIfUnmodifiedSince(OffsetDateTime ifUnmodifiedSince)
Optionally limit requests to resources that have remained unmodified since the passed
datetime. |
BlobLeaseRequestConditions |
setTagsConditions(String tagsConditions)
Optionally applies the SQL statement to the tags of the blob.
|
public BlobLeaseRequestConditions setIfMatch(String ifMatch)
setIfMatch in class com.azure.core.http.RequestConditionsifMatch - ETag that resources must match.public BlobLeaseRequestConditions setIfNoneMatch(String ifNoneMatch)
setIfNoneMatch in class com.azure.core.http.RequestConditionsifNoneMatch - ETag that resources must not match.public BlobLeaseRequestConditions setIfModifiedSince(OffsetDateTime ifModifiedSince)
datetime.setIfModifiedSince in class com.azure.core.http.RequestConditionsifModifiedSince - The datetime that resources must have been modified since.public BlobLeaseRequestConditions setIfUnmodifiedSince(OffsetDateTime ifUnmodifiedSince)
datetime.setIfUnmodifiedSince in class com.azure.core.http.RequestConditionsifUnmodifiedSince - The datetime that resources must have remained unmodified since.public String getTagsConditions()
public BlobLeaseRequestConditions setTagsConditions(String tagsConditions)
tagsConditions - The SQL statement that apply to the tags of the blob.Copyright © 2020 Microsoft Corporation. All rights reserved.