
com.pulumi.azurenative.synapse.outputs.AzureSkuResponse 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.synapse.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 AzureSkuResponse {
/**
* @return The number of instances of the cluster.
*
*/
private @Nullable Integer capacity;
/**
* @return SKU name.
*
*/
private String name;
/**
* @return SKU size.
*
*/
private String size;
private AzureSkuResponse() {}
/**
* @return The number of instances of the cluster.
*
*/
public Optional capacity() {
return Optional.ofNullable(this.capacity);
}
/**
* @return SKU name.
*
*/
public String name() {
return this.name;
}
/**
* @return SKU size.
*
*/
public String size() {
return this.size;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(AzureSkuResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable Integer capacity;
private String name;
private String size;
public Builder() {}
public Builder(AzureSkuResponse defaults) {
Objects.requireNonNull(defaults);
this.capacity = defaults.capacity;
this.name = defaults.name;
this.size = defaults.size;
}
@CustomType.Setter
public Builder capacity(@Nullable Integer capacity) {
this.capacity = capacity;
return this;
}
@CustomType.Setter
public Builder name(String name) {
if (name == null) {
throw new MissingRequiredPropertyException("AzureSkuResponse", "name");
}
this.name = name;
return this;
}
@CustomType.Setter
public Builder size(String size) {
if (size == null) {
throw new MissingRequiredPropertyException("AzureSkuResponse", "size");
}
this.size = size;
return this;
}
public AzureSkuResponse build() {
final var _resultValue = new AzureSkuResponse();
_resultValue.capacity = capacity;
_resultValue.name = name;
_resultValue.size = size;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy