com.pulumi.azurenative.recoveryservices.outputs.SkuResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-native Show documentation
Show all versions of azure-native Show documentation
A native Pulumi package for creating and managing Azure resources.
// *** 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.recoveryservices.outputs;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class SkuResponse {
/**
* @return The sku capacity
*
*/
private @Nullable String capacity;
/**
* @return The sku family
*
*/
private @Nullable String family;
/**
* @return Name of SKU is RS0 (Recovery Services 0th version) and the tier is standard tier. They do not have affect on backend storage redundancy or any other vault settings. To manage storage redundancy, use the backupstorageconfig
*
*/
private String name;
/**
* @return The sku size
*
*/
private @Nullable String size;
/**
* @return The Sku tier.
*
*/
private @Nullable String tier;
private SkuResponse() {}
/**
* @return The sku capacity
*
*/
public Optional capacity() {
return Optional.ofNullable(this.capacity);
}
/**
* @return The sku family
*
*/
public Optional family() {
return Optional.ofNullable(this.family);
}
/**
* @return Name of SKU is RS0 (Recovery Services 0th version) and the tier is standard tier. They do not have affect on backend storage redundancy or any other vault settings. To manage storage redundancy, use the backupstorageconfig
*
*/
public String name() {
return this.name;
}
/**
* @return The sku size
*
*/
public Optional size() {
return Optional.ofNullable(this.size);
}
/**
* @return The Sku tier.
*
*/
public Optional tier() {
return Optional.ofNullable(this.tier);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(SkuResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable String capacity;
private @Nullable String family;
private String name;
private @Nullable String size;
private @Nullable String tier;
public Builder() {}
public Builder(SkuResponse defaults) {
Objects.requireNonNull(defaults);
this.capacity = defaults.capacity;
this.family = defaults.family;
this.name = defaults.name;
this.size = defaults.size;
this.tier = defaults.tier;
}
@CustomType.Setter
public Builder capacity(@Nullable String capacity) {
this.capacity = capacity;
return this;
}
@CustomType.Setter
public Builder family(@Nullable String family) {
this.family = family;
return this;
}
@CustomType.Setter
public Builder name(String name) {
if (name == null) {
throw new MissingRequiredPropertyException("SkuResponse", "name");
}
this.name = name;
return this;
}
@CustomType.Setter
public Builder size(@Nullable String size) {
this.size = size;
return this;
}
@CustomType.Setter
public Builder tier(@Nullable String tier) {
this.tier = tier;
return this;
}
public SkuResponse build() {
final var _resultValue = new SkuResponse();
_resultValue.capacity = capacity;
_resultValue.family = family;
_resultValue.name = name;
_resultValue.size = size;
_resultValue.tier = tier;
return _resultValue;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy