Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT License. See License.txt in the project root for license information. Code generated by Microsoft (R) AutoRest Code Generator.
/** * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for * license information. * * Code generated by Microsoft (R) AutoRest Code Generator. */
package com.microsoft.azure.management.storage; import com.fasterxml.jackson.annotation.JsonProperty;
Blob range.
/** * Blob range. */
public class BlobRestoreRange {
Blob start range. This is inclusive. Empty means account start.
/** * Blob start range. This is inclusive. Empty means account start. */
@JsonProperty(value = "startRange", required = true) private String startRange;
Blob end range. This is exclusive. Empty means account end.
/** * Blob end range. This is exclusive. Empty means account end. */
@JsonProperty(value = "endRange", required = true) private String endRange;
Get blob start range. This is inclusive. Empty means account start.
Returns:the startRange value
/** * Get blob start range. This is inclusive. Empty means account start. * * @return the startRange value */
public String startRange() { return this.startRange; }
Set blob start range. This is inclusive. Empty means account start.
Params:
  • startRange – the startRange value to set
Returns:the BlobRestoreRange object itself.
/** * Set blob start range. This is inclusive. Empty means account start. * * @param startRange the startRange value to set * @return the BlobRestoreRange object itself. */
public BlobRestoreRange withStartRange(String startRange) { this.startRange = startRange; return this; }
Get blob end range. This is exclusive. Empty means account end.
Returns:the endRange value
/** * Get blob end range. This is exclusive. Empty means account end. * * @return the endRange value */
public String endRange() { return this.endRange; }
Set blob end range. This is exclusive. Empty means account end.
Params:
  • endRange – the endRange value to set
Returns:the BlobRestoreRange object itself.
/** * Set blob end range. This is exclusive. Empty means account end. * * @param endRange the endRange value to set * @return the BlobRestoreRange object itself. */
public BlobRestoreRange withEndRange(String endRange) { this.endRange = endRange; return this; } }