BlobBeginCopySourceRequestConditions Class

public class BlobBeginCopySourceRequestConditions
extends RequestConditions

This class contains values which will restrict the successful operation of a variety of blob requests to the conditions present on the source 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

Constructor Description
BlobBeginCopySourceRequestConditions()

Method Summary

Modifier and Type Method and Description
String getTagsConditions()

Gets the SQL statement that apply to the tags of the blob.

BlobBeginCopySourceRequestConditions setIfMatch(String ifMatch)

Optionally limit requests to resources that match the passed ETag.

BlobBeginCopySourceRequestConditions setIfModifiedSince(OffsetDateTime ifModifiedSince)

Optionally limit requests to resources that have only been modified since the passed datetime.

BlobBeginCopySourceRequestConditions setIfNoneMatch(String ifNoneMatch)

Optionally limit requests to resources that do not match the passed ETag.

BlobBeginCopySourceRequestConditions setIfUnmodifiedSince(OffsetDateTime ifUnmodifiedSince)

Optionally limit requests to resources that have remained unmodified since the passed datetime.

BlobBeginCopySourceRequestConditions setTagsConditions(String tagsConditions)

Optionally applies the SQL statement to the tags of the blob.

Methods inherited from MatchConditions

Methods inherited from RequestConditions

Methods inherited from java.lang.Object

Constructor Details

BlobBeginCopySourceRequestConditions

public BlobBeginCopySourceRequestConditions()

Method Details

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.

setIfMatch

public BlobBeginCopySourceRequestConditions setIfMatch(String ifMatch)

Optionally limit requests to resources that match the passed ETag.

Overrides:

BlobBeginCopySourceRequestConditions.setIfMatch(String ifMatch)

Parameters:

ifMatch - ETag that resources must match.

Returns:

The updated BlobSourceRequestConditions object.

setIfModifiedSince

public BlobBeginCopySourceRequestConditions setIfModifiedSince(OffsetDateTime ifModifiedSince)

Optionally limit requests to resources that have only been modified since the passed datetime.

Overrides:

BlobBeginCopySourceRequestConditions.setIfModifiedSince(OffsetDateTime ifModifiedSince)

Parameters:

ifModifiedSince - The datetime that resources must have been modified since.

Returns:

The updated BlobSourceRequestConditions object.

setIfNoneMatch

public BlobBeginCopySourceRequestConditions setIfNoneMatch(String ifNoneMatch)

Optionally limit requests to resources that do not match the passed ETag.

Overrides:

BlobBeginCopySourceRequestConditions.setIfNoneMatch(String ifNoneMatch)

Parameters:

ifNoneMatch - ETag that resources must not match.

Returns:

The updated BlobSourceRequestConditions object.

setIfUnmodifiedSince

public BlobBeginCopySourceRequestConditions setIfUnmodifiedSince(OffsetDateTime ifUnmodifiedSince)

Optionally limit requests to resources that have remained unmodified since the passed datetime.

Overrides:

BlobBeginCopySourceRequestConditions.setIfUnmodifiedSince(OffsetDateTime ifUnmodifiedSince)

Parameters:

ifUnmodifiedSince - The datetime that resources must have remained unmodified since.

Returns:

The updated BlobSourceRequestConditions object.

setTagsConditions

public BlobBeginCopySourceRequestConditions 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 BlobSourceRequestConditions object.

Applies to