public class PageBlobCopyIncrementalRequestConditions
extends com.azure.core.http.RequestConditions
Constructor and Description |
---|
PageBlobCopyIncrementalRequestConditions() |
Modifier and Type | Method and Description |
---|---|
String |
getTagsConditions()
Gets the SQL statement that apply to the tags of the blob.
|
PageBlobCopyIncrementalRequestConditions |
setIfMatch(String ifMatch)
Optionally limit requests to resources that match the passed ETag.
|
PageBlobCopyIncrementalRequestConditions |
setIfModifiedSince(OffsetDateTime ifModifiedSince)
Optionally limit requests to resources that have only been modified since the passed
datetime . |
PageBlobCopyIncrementalRequestConditions |
setIfNoneMatch(String ifNoneMatch)
Optionally limit requests to resources that do not match the passed ETag.
|
PageBlobCopyIncrementalRequestConditions |
setIfUnmodifiedSince(OffsetDateTime ifUnmodifiedSince)
Optionally limit requests to resources that have remained unmodified since the passed
datetime . |
PageBlobCopyIncrementalRequestConditions |
setTagsConditions(String tagsConditions)
Optionally applies the SQL statement to the tags of the blob.
|
public PageBlobCopyIncrementalRequestConditions()
public PageBlobCopyIncrementalRequestConditions setIfMatch(String ifMatch)
setIfMatch
in class com.azure.core.http.RequestConditions
ifMatch
- ETag that resources must match.public PageBlobCopyIncrementalRequestConditions setIfNoneMatch(String ifNoneMatch)
setIfNoneMatch
in class com.azure.core.http.RequestConditions
ifNoneMatch
- ETag that resources must not match.public PageBlobCopyIncrementalRequestConditions setIfModifiedSince(OffsetDateTime ifModifiedSince)
datetime
.setIfModifiedSince
in class com.azure.core.http.RequestConditions
ifModifiedSince
- The datetime that resources must have been modified since.public PageBlobCopyIncrementalRequestConditions setIfUnmodifiedSince(OffsetDateTime ifUnmodifiedSince)
datetime
.setIfUnmodifiedSince
in class com.azure.core.http.RequestConditions
ifUnmodifiedSince
- The datetime that resources must have remained unmodified since.public String getTagsConditions()
public PageBlobCopyIncrementalRequestConditions setTagsConditions(String tagsConditions)
tagsConditions
- The SQL statement that apply to the tags of the blob.Visit the Azure for Java Developers site for more Java documentation, including quick starts, tutorials, and code samples.