com.pulumi.azurenative.notificationhubs.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.
The 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.notificationhubs.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 SkuResponse {
/**
* @return Gets or sets the capacity of the resource
*
*/
private @Nullable Integer capacity;
/**
* @return Gets or sets the Sku Family
*
*/
private @Nullable String family;
/**
* @return Namespace SKU name.
*
*/
private String name;
/**
* @return Gets or sets the Sku size
*
*/
private @Nullable String size;
/**
* @return Gets or sets the tier of particular sku
*
*/
private @Nullable String tier;
private SkuResponse() {}
/**
* @return Gets or sets the capacity of the resource
*
*/
public Optional capacity() {
return Optional.ofNullable(this.capacity);
}
/**
* @return Gets or sets the Sku Family
*
*/
public Optional family() {
return Optional.ofNullable(this.family);
}
/**
* @return Namespace SKU name.
*
*/
public String name() {
return this.name;
}
/**
* @return Gets or sets the Sku size
*
*/
public Optional size() {
return Optional.ofNullable(this.size);
}
/**
* @return Gets or sets the tier of particular sku
*
*/
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 Integer 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 Integer 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