com.pulumi.azurenative.hardwaresecuritymodules.outputs.CloudHsmClusterSkuResponse 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.hardwaresecuritymodules.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 CloudHsmClusterSkuResponse {
/**
* @return Sku capacity
*
*/
private @Nullable Integer capacity;
/**
* @return Sku family of the Cloud HSM Cluster
*
*/
private String family;
/**
* @return Sku name of the Cloud HSM Cluster
*
*/
private String name;
private CloudHsmClusterSkuResponse() {}
/**
* @return Sku capacity
*
*/
public Optional capacity() {
return Optional.ofNullable(this.capacity);
}
/**
* @return Sku family of the Cloud HSM Cluster
*
*/
public String family() {
return this.family;
}
/**
* @return Sku name of the Cloud HSM Cluster
*
*/
public String name() {
return this.name;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(CloudHsmClusterSkuResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable Integer capacity;
private String family;
private String name;
public Builder() {}
public Builder(CloudHsmClusterSkuResponse defaults) {
Objects.requireNonNull(defaults);
this.capacity = defaults.capacity;
this.family = defaults.family;
this.name = defaults.name;
}
@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("CloudHsmClusterSkuResponse", "family");
}
this.family = family;
return this;
}
@CustomType.Setter
public Builder name(String name) {
if (name == null) {
throw new MissingRequiredPropertyException("CloudHsmClusterSkuResponse", "name");
}
this.name = name;
return this;
}
public CloudHsmClusterSkuResponse build() {
final var _resultValue = new CloudHsmClusterSkuResponse();
_resultValue.capacity = capacity;
_resultValue.family = family;
_resultValue.name = name;
return _resultValue;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy