
com.pulumi.azurenative.servicebus.outputs.SBSkuResponse Maven / Gradle / Ivy
// *** 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.servicebus.outputs;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.Integer;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class SBSkuResponse {
/**
* @return The specified messaging units for the tier. For Premium tier, capacity are 1,2 and 4.
*
*/
private @Nullable Integer capacity;
/**
* @return Name of this SKU.
*
*/
private String name;
/**
* @return The billing tier of this particular SKU.
*
*/
private @Nullable String tier;
private SBSkuResponse() {}
/**
* @return The specified messaging units for the tier. For Premium tier, capacity are 1,2 and 4.
*
*/
public Optional capacity() {
return Optional.ofNullable(this.capacity);
}
/**
* @return Name of this SKU.
*
*/
public String name() {
return this.name;
}
/**
* @return The billing tier of this particular SKU.
*
*/
public Optional tier() {
return Optional.ofNullable(this.tier);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(SBSkuResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable Integer capacity;
private String name;
private @Nullable String tier;
public Builder() {}
public Builder(SBSkuResponse defaults) {
Objects.requireNonNull(defaults);
this.capacity = defaults.capacity;
this.name = defaults.name;
this.tier = defaults.tier;
}
@CustomType.Setter
public Builder capacity(@Nullable Integer capacity) {
this.capacity = capacity;
return this;
}
@CustomType.Setter
public Builder name(String name) {
if (name == null) {
throw new MissingRequiredPropertyException("SBSkuResponse", "name");
}
this.name = name;
return this;
}
@CustomType.Setter
public Builder tier(@Nullable String tier) {
this.tier = tier;
return this;
}
public SBSkuResponse build() {
final var _resultValue = new SBSkuResponse();
_resultValue.capacity = capacity;
_resultValue.name = name;
_resultValue.tier = tier;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy