com.pulumi.azurenative.storage.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.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 SkuResponse {
/**
* @return The SKU name. Required for account creation; optional for update. Note that in older versions, SKU name was called accountType.
*
*/
private String name;
/**
* @return The SKU tier. This is based on the SKU name.
*
*/
private String tier;
private SkuResponse() {}
/**
* @return The SKU name. Required for account creation; optional for update. Note that in older versions, SKU name was called accountType.
*
*/
public String name() {
return this.name;
}
/**
* @return The SKU tier. This is based on the SKU name.
*
*/
public String tier() {
return 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 String name;
private String tier;
public Builder() {}
public Builder(SkuResponse defaults) {
Objects.requireNonNull(defaults);
this.name = defaults.name;
this.tier = defaults.tier;
}
@CustomType.Setter
public Builder name(String name) {
if (name == null) {
throw new MissingRequiredPropertyException("SkuResponse", "name");
}
this.name = name;
return this;
}
@CustomType.Setter
public Builder tier(String tier) {
if (tier == null) {
throw new MissingRequiredPropertyException("SkuResponse", "tier");
}
this.tier = tier;
return this;
}
public SkuResponse build() {
final var _resultValue = new SkuResponse();
_resultValue.name = name;
_resultValue.tier = tier;
return _resultValue;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy