com.pulumi.azurenative.devices.outputs.IotHubSkuInfoResponse 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.devices.outputs;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.Double;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class IotHubSkuInfoResponse {
/**
* @return The number of provisioned IoT Hub units. See: https://docs.microsoft.com/azure/azure-subscription-service-limits#iot-hub-limits.
*
*/
private @Nullable Double capacity;
/**
* @return The name of the SKU.
*
*/
private String name;
/**
* @return The billing tier for the IoT hub.
*
*/
private String tier;
private IotHubSkuInfoResponse() {}
/**
* @return The number of provisioned IoT Hub units. See: https://docs.microsoft.com/azure/azure-subscription-service-limits#iot-hub-limits.
*
*/
public Optional capacity() {
return Optional.ofNullable(this.capacity);
}
/**
* @return The name of the SKU.
*
*/
public String name() {
return this.name;
}
/**
* @return The billing tier for the IoT hub.
*
*/
public String tier() {
return this.tier;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(IotHubSkuInfoResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable Double capacity;
private String name;
private String tier;
public Builder() {}
public Builder(IotHubSkuInfoResponse defaults) {
Objects.requireNonNull(defaults);
this.capacity = defaults.capacity;
this.name = defaults.name;
this.tier = defaults.tier;
}
@CustomType.Setter
public Builder capacity(@Nullable Double capacity) {
this.capacity = capacity;
return this;
}
@CustomType.Setter
public Builder name(String name) {
if (name == null) {
throw new MissingRequiredPropertyException("IotHubSkuInfoResponse", "name");
}
this.name = name;
return this;
}
@CustomType.Setter
public Builder tier(String tier) {
if (tier == null) {
throw new MissingRequiredPropertyException("IotHubSkuInfoResponse", "tier");
}
this.tier = tier;
return this;
}
public IotHubSkuInfoResponse build() {
final var _resultValue = new IotHubSkuInfoResponse();
_resultValue.capacity = capacity;
_resultValue.name = name;
_resultValue.tier = tier;
return _resultValue;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy