com.pulumi.azurenative.signalrservice.outputs.ResourceSkuResponse 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.signalrservice.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 ResourceSkuResponse {
/**
* @return Optional, integer. The unit count of the resource. 1 by default.
*
* If present, following values are allowed:
* Free: 1;
* Standard: 1,2,3,4,5,6,7,8,9,10,20,30,40,50,60,70,80,90,100;
* Premium: 1,2,3,4,5,6,7,8,9,10,20,30,40,50,60,70,80,90,100;
*
*/
private @Nullable Integer capacity;
/**
* @return Not used. Retained for future use.
*
*/
private String family;
/**
* @return The name of the SKU. Required.
*
* Allowed values: Standard_S1, Free_F1, Premium_P1
*
*/
private String name;
/**
* @return Not used. Retained for future use.
*
*/
private String size;
/**
* @return Optional tier of this particular SKU. 'Standard' or 'Free'.
*
* `Basic` is deprecated, use `Standard` instead.
*
*/
private @Nullable String tier;
private ResourceSkuResponse() {}
/**
* @return Optional, integer. The unit count of the resource. 1 by default.
*
* If present, following values are allowed:
* Free: 1;
* Standard: 1,2,3,4,5,6,7,8,9,10,20,30,40,50,60,70,80,90,100;
* Premium: 1,2,3,4,5,6,7,8,9,10,20,30,40,50,60,70,80,90,100;
*
*/
public Optional capacity() {
return Optional.ofNullable(this.capacity);
}
/**
* @return Not used. Retained for future use.
*
*/
public String family() {
return this.family;
}
/**
* @return The name of the SKU. Required.
*
* Allowed values: Standard_S1, Free_F1, Premium_P1
*
*/
public String name() {
return this.name;
}
/**
* @return Not used. Retained for future use.
*
*/
public String size() {
return this.size;
}
/**
* @return Optional tier of this particular SKU. 'Standard' or 'Free'.
*
* `Basic` is deprecated, use `Standard` instead.
*
*/
public Optional tier() {
return Optional.ofNullable(this.tier);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(ResourceSkuResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable Integer capacity;
private String family;
private String name;
private String size;
private @Nullable String tier;
public Builder() {}
public Builder(ResourceSkuResponse 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(String family) {
if (family == null) {
throw new MissingRequiredPropertyException("ResourceSkuResponse", "family");
}
this.family = family;
return this;
}
@CustomType.Setter
public Builder name(String name) {
if (name == null) {
throw new MissingRequiredPropertyException("ResourceSkuResponse", "name");
}
this.name = name;
return this;
}
@CustomType.Setter
public Builder size(String size) {
if (size == null) {
throw new MissingRequiredPropertyException("ResourceSkuResponse", "size");
}
this.size = size;
return this;
}
@CustomType.Setter
public Builder tier(@Nullable String tier) {
this.tier = tier;
return this;
}
public ResourceSkuResponse build() {
final var _resultValue = new ResourceSkuResponse();
_resultValue.capacity = capacity;
_resultValue.family = family;
_resultValue.name = name;
_resultValue.size = size;
_resultValue.tier = tier;
return _resultValue;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy