
com.pulumi.azurenative.sql.outputs.GetInstancePoolResult 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.sql.outputs;
import com.pulumi.azurenative.sql.outputs.SkuResponse;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.Integer;
import java.lang.String;
import java.util.Map;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class GetInstancePoolResult {
/**
* @return Resource ID.
*
*/
private String id;
/**
* @return The license type. Possible values are 'LicenseIncluded' (price for SQL license is included) and 'BasePrice' (without SQL license price).
*
*/
private String licenseType;
/**
* @return Resource location.
*
*/
private String location;
/**
* @return Resource name.
*
*/
private String name;
/**
* @return The name and tier of the SKU.
*
*/
private @Nullable SkuResponse sku;
/**
* @return Resource ID of the subnet to place this instance pool in.
*
*/
private String subnetId;
/**
* @return Resource tags.
*
*/
private @Nullable Map tags;
/**
* @return Resource type.
*
*/
private String type;
/**
* @return Count of vCores belonging to this instance pool.
*
*/
private Integer vCores;
private GetInstancePoolResult() {}
/**
* @return Resource ID.
*
*/
public String id() {
return this.id;
}
/**
* @return The license type. Possible values are 'LicenseIncluded' (price for SQL license is included) and 'BasePrice' (without SQL license price).
*
*/
public String licenseType() {
return this.licenseType;
}
/**
* @return Resource location.
*
*/
public String location() {
return this.location;
}
/**
* @return Resource name.
*
*/
public String name() {
return this.name;
}
/**
* @return The name and tier of the SKU.
*
*/
public Optional sku() {
return Optional.ofNullable(this.sku);
}
/**
* @return Resource ID of the subnet to place this instance pool in.
*
*/
public String subnetId() {
return this.subnetId;
}
/**
* @return Resource tags.
*
*/
public Map tags() {
return this.tags == null ? Map.of() : this.tags;
}
/**
* @return Resource type.
*
*/
public String type() {
return this.type;
}
/**
* @return Count of vCores belonging to this instance pool.
*
*/
public Integer vCores() {
return this.vCores;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetInstancePoolResult defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String id;
private String licenseType;
private String location;
private String name;
private @Nullable SkuResponse sku;
private String subnetId;
private @Nullable Map tags;
private String type;
private Integer vCores;
public Builder() {}
public Builder(GetInstancePoolResult defaults) {
Objects.requireNonNull(defaults);
this.id = defaults.id;
this.licenseType = defaults.licenseType;
this.location = defaults.location;
this.name = defaults.name;
this.sku = defaults.sku;
this.subnetId = defaults.subnetId;
this.tags = defaults.tags;
this.type = defaults.type;
this.vCores = defaults.vCores;
}
@CustomType.Setter
public Builder id(String id) {
if (id == null) {
throw new MissingRequiredPropertyException("GetInstancePoolResult", "id");
}
this.id = id;
return this;
}
@CustomType.Setter
public Builder licenseType(String licenseType) {
if (licenseType == null) {
throw new MissingRequiredPropertyException("GetInstancePoolResult", "licenseType");
}
this.licenseType = licenseType;
return this;
}
@CustomType.Setter
public Builder location(String location) {
if (location == null) {
throw new MissingRequiredPropertyException("GetInstancePoolResult", "location");
}
this.location = location;
return this;
}
@CustomType.Setter
public Builder name(String name) {
if (name == null) {
throw new MissingRequiredPropertyException("GetInstancePoolResult", "name");
}
this.name = name;
return this;
}
@CustomType.Setter
public Builder sku(@Nullable SkuResponse sku) {
this.sku = sku;
return this;
}
@CustomType.Setter
public Builder subnetId(String subnetId) {
if (subnetId == null) {
throw new MissingRequiredPropertyException("GetInstancePoolResult", "subnetId");
}
this.subnetId = subnetId;
return this;
}
@CustomType.Setter
public Builder tags(@Nullable Map tags) {
this.tags = tags;
return this;
}
@CustomType.Setter
public Builder type(String type) {
if (type == null) {
throw new MissingRequiredPropertyException("GetInstancePoolResult", "type");
}
this.type = type;
return this;
}
@CustomType.Setter
public Builder vCores(Integer vCores) {
if (vCores == null) {
throw new MissingRequiredPropertyException("GetInstancePoolResult", "vCores");
}
this.vCores = vCores;
return this;
}
public GetInstancePoolResult build() {
final var _resultValue = new GetInstancePoolResult();
_resultValue.id = id;
_resultValue.licenseType = licenseType;
_resultValue.location = location;
_resultValue.name = name;
_resultValue.sku = sku;
_resultValue.subnetId = subnetId;
_resultValue.tags = tags;
_resultValue.type = type;
_resultValue.vCores = vCores;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy