Package com.azure.storage.blob.models
Class PageBlobCopyIncrementalRequestConditions
- java.lang.Object
-
- com.azure.core.http.MatchConditions
-
- com.azure.core.http.RequestConditions
-
- com.azure.storage.blob.models.PageBlobCopyIncrementalRequestConditions
-
public class PageBlobCopyIncrementalRequestConditions extends com.azure.core.http.RequestConditionsThis class contains values which will restrict the successful operation of a variety of blob requests to the conditions present on the destination blob. These conditions are entirely optional. The entire object or any of its properties may be set to null when passed to a method to indicate that those conditions are not desired. Please refer to the type of each field for more information on those particular access conditions.
-
-
Constructor Summary
Constructors Constructor Description PageBlobCopyIncrementalRequestConditions()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetTagsConditions()Gets the SQL statement that apply to the tags of the blob.PageBlobCopyIncrementalRequestConditionssetIfMatch(String ifMatch)Optionally limit requests to resources that match the passed ETag.PageBlobCopyIncrementalRequestConditionssetIfModifiedSince(OffsetDateTime ifModifiedSince)Optionally limit requests to resources that have only been modified since the passeddatetime.PageBlobCopyIncrementalRequestConditionssetIfNoneMatch(String ifNoneMatch)Optionally limit requests to resources that do not match the passed ETag.PageBlobCopyIncrementalRequestConditionssetIfUnmodifiedSince(OffsetDateTime ifUnmodifiedSince)Optionally limit requests to resources that have remained unmodified since the passeddatetime.PageBlobCopyIncrementalRequestConditionssetTagsConditions(String tagsConditions)Optionally applies the SQL statement to the tags of the blob.
-
-
-
Method Detail
-
setIfMatch
public PageBlobCopyIncrementalRequestConditions setIfMatch(String ifMatch)
Optionally limit requests to resources that match the passed ETag.- Overrides:
setIfMatchin classcom.azure.core.http.RequestConditions- Parameters:
ifMatch- ETag that resources must match.- Returns:
- The updated BlobDestinationRequestConditions object.
-
setIfNoneMatch
public PageBlobCopyIncrementalRequestConditions setIfNoneMatch(String ifNoneMatch)
Optionally limit requests to resources that do not match the passed ETag.- Overrides:
setIfNoneMatchin classcom.azure.core.http.RequestConditions- Parameters:
ifNoneMatch- ETag that resources must not match.- Returns:
- The updated BlobDestinationRequestConditions object.
-
setIfModifiedSince
public PageBlobCopyIncrementalRequestConditions setIfModifiedSince(OffsetDateTime ifModifiedSince)
Optionally limit requests to resources that have only been modified since the passeddatetime.- Overrides:
setIfModifiedSincein classcom.azure.core.http.RequestConditions- Parameters:
ifModifiedSince- The datetime that resources must have been modified since.- Returns:
- The updated BlobDestinationRequestConditions object.
-
setIfUnmodifiedSince
public PageBlobCopyIncrementalRequestConditions setIfUnmodifiedSince(OffsetDateTime ifUnmodifiedSince)
Optionally limit requests to resources that have remained unmodified since the passeddatetime.- Overrides:
setIfUnmodifiedSincein classcom.azure.core.http.RequestConditions- Parameters:
ifUnmodifiedSince- The datetime that resources must have remained unmodified since.- Returns:
- The updated BlobDestinationRequestConditions object.
-
getTagsConditions
public String getTagsConditions()
Gets the SQL statement that apply to the tags of the blob.- Returns:
- The SQL statement that apply to the tags of the blob.
-
setTagsConditions
public PageBlobCopyIncrementalRequestConditions setTagsConditions(String tagsConditions)
Optionally applies the SQL statement to the tags of the blob.- Parameters:
tagsConditions- The SQL statement that apply to the tags of the blob.- Returns:
- The updated BlobDestinationRequestConditions object.
-
-