DataLakeRequestConditions Class
- java.
lang. Object - com.
azure. core. http. MatchConditions - com.
azure. core. http. RequestConditions - com.
azure. storage. file. datalake. models. DataLakeRequestConditions
- com.
- com.
- com.
public class DataLakeRequestConditions
extends RequestConditions
This class contains values which will restrict the successful operation of a variety of requests to the conditions present. 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 |
---|---|
DataLakeRequestConditions() |
Creates a new instance of DataLakeRequestConditions. |
Method Summary
Modifier and Type | Method and Description |
---|---|
String |
getLeaseId()
Gets the lease ID that blobs and containers must match. |
Data |
setIfMatch(String ifMatch)
Optionally limit requests to resources that match the passed ETag. |
Data |
setIfModifiedSince(OffsetDateTime ifModifiedSince)
Optionally limit requests to resources that have only been modified since the passed datetime. |
Data |
setIfNoneMatch(String ifNoneMatch)
Optionally limit requests to resources that do not match the passed ETag. |
Data |
setIfUnmodifiedSince(OffsetDateTime ifUnmodifiedSince)
Optionally limit requests to resources that have remained unmodified since the passed datetime. |
Data |
setLeaseId(String leaseId)
Optionally limits requests to blobs and containers that match the lease ID. |
Methods inherited from MatchConditions
Methods inherited from RequestConditions
Methods inherited from java.lang.Object
Constructor Details
DataLakeRequestConditions
public DataLakeRequestConditions()
Creates a new instance of DataLakeRequestConditions.
Method Details
getLeaseId
public String getLeaseId()
Gets the lease ID that blobs and containers must match.
Returns:
setIfMatch
public DataLakeRequestConditions setIfMatch(String ifMatch)
Optionally limit requests to resources that match the passed ETag.
Overrides:
DataLakeRequestConditions.setIfMatch(String ifMatch)Parameters:
Returns:
setIfModifiedSince
public DataLakeRequestConditions setIfModifiedSince(OffsetDateTime ifModifiedSince)
Optionally limit requests to resources that have only been modified since the passed datetime.
Overrides:
DataLakeRequestConditions.setIfModifiedSince(OffsetDateTime ifModifiedSince)Parameters:
Returns:
setIfNoneMatch
public DataLakeRequestConditions setIfNoneMatch(String ifNoneMatch)
Optionally limit requests to resources that do not match the passed ETag.
Overrides:
DataLakeRequestConditions.setIfNoneMatch(String ifNoneMatch)Parameters:
Returns:
setIfUnmodifiedSince
public DataLakeRequestConditions setIfUnmodifiedSince(OffsetDateTime ifUnmodifiedSince)
Optionally limit requests to resources that have remained unmodified since the passed datetime.
Overrides:
DataLakeRequestConditions.setIfUnmodifiedSince(OffsetDateTime ifUnmodifiedSince)Parameters:
Returns:
setLeaseId
public DataLakeRequestConditions setLeaseId(String leaseId)
Optionally limits requests to blobs and containers that match the lease ID.
Parameters:
Returns:
Applies to
Azure SDK for Java