public final class AppendBlobAccessConditions
extends java.lang.Object
Modifier and Type | Field and Description |
---|---|
static AppendBlobAccessConditions |
NONE
An object representing no access conditions.
|
Constructor and Description |
---|
AppendBlobAccessConditions(java.lang.Integer ifAppendPositionEquals,
java.lang.Integer ifMaxSizeLessThanOrEqual)
Creates a
AppendBlobAccessConditions object. |
Modifier and Type | Method and Description |
---|---|
java.lang.Integer |
getIfAppendPositionEquals() |
java.lang.Integer |
getIfMaxSizeLessThanOrEqual() |
public static final AppendBlobAccessConditions NONE
public AppendBlobAccessConditions(java.lang.Integer ifAppendPositionEquals, java.lang.Integer ifMaxSizeLessThanOrEqual)
AppendBlobAccessConditions
object.ifAppendPositionEquals
- Ensures that the AppendBlock operation succeeds only if the append position is equal to a value.ifMaxSizeLessThanOrEqual
- Ensures that the AppendBlock operation succeeds only if the append blob's size is less than or
equal to a value.public java.lang.Integer getIfAppendPositionEquals()
Integer
for ensuring that the AppendBlock operation succeeds only if the append position
is equal to a value.public java.lang.Integer getIfMaxSizeLessThanOrEqual()
Integer
for ensuring that the AppendBlock operation succeeds only if the append blob's size
is less than or equal to a value.