com.azure.resourcemanager.storage.models.BlobRestoreRange Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-storage Show documentation
Show all versions of azure-resourcemanager-storage Show documentation
This package contains Microsoft Azure Storage Management SDK.
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.storage.models;
import com.azure.core.annotation.Fluent;
import com.azure.core.util.logging.ClientLogger;
import com.fasterxml.jackson.annotation.JsonProperty;
/**
* Blob range.
*/
@Fluent
public final class BlobRestoreRange {
/*
* 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.
*/
@JsonProperty(value = "endRange", required = true)
private String endRange;
/**
* Creates an instance of BlobRestoreRange class.
*/
public BlobRestoreRange() {
}
/**
* Get the startRange property: Blob start range. This is inclusive. Empty means account start.
*
* @return the startRange value.
*/
public String startRange() {
return this.startRange;
}
/**
* Set the startRange property: 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 the endRange property: Blob end range. This is exclusive. Empty means account end.
*
* @return the endRange value.
*/
public String endRange() {
return this.endRange;
}
/**
* Set the endRange property: 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;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
if (startRange() == null) {
throw LOGGER.atError()
.log(new IllegalArgumentException("Missing required property startRange in model BlobRestoreRange"));
}
if (endRange() == null) {
throw LOGGER.atError()
.log(new IllegalArgumentException("Missing required property endRange in model BlobRestoreRange"));
}
}
private static final ClientLogger LOGGER = new ClientLogger(BlobRestoreRange.class);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy