com.pulumi.azure.iot.outputs.IoTHubSku Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure Show documentation
Show all versions of azure Show documentation
A Pulumi package for creating and managing Microsoft Azure cloud resources, based on the Terraform azurerm provider. We recommend using the [Azure Native provider](https://github.com/pulumi/pulumi-azure-native) to provision Azure infrastructure. Azure Native provides complete coverage of Azure resources and same-day access to new resources and resource updates.
// *** 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.azure.iot.outputs;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.Integer;
import java.lang.String;
import java.util.Objects;
@CustomType
public final class IoTHubSku {
/**
* @return The number of provisioned IoT Hub units.
*
* > **NOTE:** Only one IotHub can be on the `Free` tier per subscription.
*
*/
private Integer capacity;
/**
* @return The name of the sku. Possible values are `B1`, `B2`, `B3`, `F1`, `S1`, `S2`, and `S3`.
*
* > **NOTE:** The `F1` sku is on `Free` tier.
*
*/
private String name;
private IoTHubSku() {}
/**
* @return The number of provisioned IoT Hub units.
*
* > **NOTE:** Only one IotHub can be on the `Free` tier per subscription.
*
*/
public Integer capacity() {
return this.capacity;
}
/**
* @return The name of the sku. Possible values are `B1`, `B2`, `B3`, `F1`, `S1`, `S2`, and `S3`.
*
* > **NOTE:** The `F1` sku is on `Free` tier.
*
*/
public String name() {
return this.name;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(IoTHubSku defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private Integer capacity;
private String name;
public Builder() {}
public Builder(IoTHubSku defaults) {
Objects.requireNonNull(defaults);
this.capacity = defaults.capacity;
this.name = defaults.name;
}
@CustomType.Setter
public Builder capacity(Integer capacity) {
if (capacity == null) {
throw new MissingRequiredPropertyException("IoTHubSku", "capacity");
}
this.capacity = capacity;
return this;
}
@CustomType.Setter
public Builder name(String name) {
if (name == null) {
throw new MissingRequiredPropertyException("IoTHubSku", "name");
}
this.name = name;
return this;
}
public IoTHubSku build() {
final var _resultValue = new IoTHubSku();
_resultValue.capacity = capacity;
_resultValue.name = name;
return _resultValue;
}
}
}