All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.azurenative.storage.outputs.BlobRestoreRangeResponse Maven / Gradle / Ivy

There is a newer version: 2.82.0
Show newest version
// *** WARNING: this file was generated by pulumi-java-gen. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***

package com.pulumi.azurenative.storage.outputs;

import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;

@CustomType
public final class BlobRestoreRangeResponse {
    /**
     * @return Blob end range. This is exclusive. Empty means account end.
     * 
     */
    private String endRange;
    /**
     * @return Blob start range. This is inclusive. Empty means account start.
     * 
     */
    private String startRange;

    private BlobRestoreRangeResponse() {}
    /**
     * @return Blob end range. This is exclusive. Empty means account end.
     * 
     */
    public String endRange() {
        return this.endRange;
    }
    /**
     * @return Blob start range. This is inclusive. Empty means account start.
     * 
     */
    public String startRange() {
        return this.startRange;
    }

    public static Builder builder() {
        return new Builder();
    }

    public static Builder builder(BlobRestoreRangeResponse defaults) {
        return new Builder(defaults);
    }
    @CustomType.Builder
    public static final class Builder {
        private String endRange;
        private String startRange;
        public Builder() {}
        public Builder(BlobRestoreRangeResponse defaults) {
    	      Objects.requireNonNull(defaults);
    	      this.endRange = defaults.endRange;
    	      this.startRange = defaults.startRange;
        }

        @CustomType.Setter
        public Builder endRange(String endRange) {
            if (endRange == null) {
              throw new MissingRequiredPropertyException("BlobRestoreRangeResponse", "endRange");
            }
            this.endRange = endRange;
            return this;
        }
        @CustomType.Setter
        public Builder startRange(String startRange) {
            if (startRange == null) {
              throw new MissingRequiredPropertyException("BlobRestoreRangeResponse", "startRange");
            }
            this.startRange = startRange;
            return this;
        }
        public BlobRestoreRangeResponse build() {
            final var _resultValue = new BlobRestoreRangeResponse();
            _resultValue.endRange = endRange;
            _resultValue.startRange = startRange;
            return _resultValue;
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy