public class DataLakeRequestConditions
extends com.azure.core.http.RequestConditions
| Constructor and Description |
|---|
DataLakeRequestConditions() |
| Modifier and Type | Method and Description |
|---|---|
String |
getLeaseId()
Gets the lease ID that blobs and containers must match.
|
DataLakeRequestConditions |
setIfMatch(String ifMatch)
Optionally limit requests to resources that match the passed ETag.
|
DataLakeRequestConditions |
setIfModifiedSince(OffsetDateTime ifModifiedSince)
Optionally limit requests to resources that have only been modified since the passed
datetime. |
DataLakeRequestConditions |
setIfNoneMatch(String ifNoneMatch)
Optionally limit requests to resources that do not match the passed ETag.
|
DataLakeRequestConditions |
setIfUnmodifiedSince(OffsetDateTime ifUnmodifiedSince)
Optionally limit requests to resources that have remained unmodified since the passed
datetime. |
DataLakeRequestConditions |
setLeaseId(String leaseId)
Optionally limits requests to blobs and containers that match the lease ID.
|
public DataLakeRequestConditions setIfMatch(String ifMatch)
setIfMatch in class com.azure.core.http.RequestConditionsifMatch - ETag that resources must match.public DataLakeRequestConditions setIfNoneMatch(String ifNoneMatch)
setIfNoneMatch in class com.azure.core.http.RequestConditionsifNoneMatch - ETag that resources must not match.public DataLakeRequestConditions setIfModifiedSince(OffsetDateTime ifModifiedSince)
datetime.setIfModifiedSince in class com.azure.core.http.RequestConditionsifModifiedSince - The datetime that resources must have been modified since.public DataLakeRequestConditions setIfUnmodifiedSince(OffsetDateTime ifUnmodifiedSince)
datetime.setIfUnmodifiedSince in class com.azure.core.http.RequestConditionsifUnmodifiedSince - The datetime that resources must have remained unmodified since.public String getLeaseId()
public DataLakeRequestConditions setLeaseId(String leaseId)
leaseId - Lease ID that blobs and containers must match.Visit the Azure for Java Developers site for more Java documentation, including quick starts, tutorials, and code samples.