Class BlobRestoreRange
- java.lang.Object
-
- com.azure.resourcemanager.storage.models.BlobRestoreRange
-
public final class BlobRestoreRange extends Object
Blob range.
-
-
Constructor Summary
Constructors Constructor Description BlobRestoreRange()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringendRange()Get the endRange property: Blob end range.StringstartRange()Get the startRange property: Blob start range.voidvalidate()Validates the instance.BlobRestoreRangewithEndRange(String endRange)Set the endRange property: Blob end range.BlobRestoreRangewithStartRange(String startRange)Set the startRange property: Blob start range.
-
-
-
Method Detail
-
startRange
public String startRange()
Get the startRange property: Blob start range. This is inclusive. Empty means account start.- Returns:
- the startRange value.
-
withStartRange
public BlobRestoreRange withStartRange(String startRange)
Set the startRange property: Blob start range. This is inclusive. Empty means account start.- Parameters:
startRange- the startRange value to set.- Returns:
- the BlobRestoreRange object itself.
-
endRange
public String endRange()
Get the endRange property: Blob end range. This is exclusive. Empty means account end.- Returns:
- the endRange value.
-
withEndRange
public BlobRestoreRange withEndRange(String endRange)
Set the endRange property: Blob end range. This is exclusive. Empty means account end.- Parameters:
endRange- the endRange value to set.- Returns:
- the BlobRestoreRange object itself.
-
validate
public void validate()
Validates the instance.- Throws:
IllegalArgumentException- thrown if the instance is not valid.
-
-