All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.azure.mssql.outputs.GetElasticPoolSkus Maven / Gradle / Ivy

Go to download

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.

There is a newer version: 6.10.0-alpha.1731737215
Show newest version
// *** 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.mssql.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 GetElasticPoolSkus {
    /**
     * @return The scale up/out capacity, representing server's compute units.
     * 
     */
    private Integer capacity;
    /**
     * @return The `family` of hardware.
     * 
     */
    private String family;
    /**
     * @return The name of the elastic pool.
     * 
     */
    private String name;
    /**
     * @return The tier of the particular SKU.
     * 
     */
    private String tier;

    private GetElasticPoolSkus() {}
    /**
     * @return The scale up/out capacity, representing server's compute units.
     * 
     */
    public Integer capacity() {
        return this.capacity;
    }
    /**
     * @return The `family` of hardware.
     * 
     */
    public String family() {
        return this.family;
    }
    /**
     * @return The name of the elastic pool.
     * 
     */
    public String name() {
        return this.name;
    }
    /**
     * @return The tier of the particular SKU.
     * 
     */
    public String tier() {
        return this.tier;
    }

    public static Builder builder() {
        return new Builder();
    }

    public static Builder builder(GetElasticPoolSkus defaults) {
        return new Builder(defaults);
    }
    @CustomType.Builder
    public static final class Builder {
        private Integer capacity;
        private String family;
        private String name;
        private String tier;
        public Builder() {}
        public Builder(GetElasticPoolSkus defaults) {
    	      Objects.requireNonNull(defaults);
    	      this.capacity = defaults.capacity;
    	      this.family = defaults.family;
    	      this.name = defaults.name;
    	      this.tier = defaults.tier;
        }

        @CustomType.Setter
        public Builder capacity(Integer capacity) {
            if (capacity == null) {
              throw new MissingRequiredPropertyException("GetElasticPoolSkus", "capacity");
            }
            this.capacity = capacity;
            return this;
        }
        @CustomType.Setter
        public Builder family(String family) {
            if (family == null) {
              throw new MissingRequiredPropertyException("GetElasticPoolSkus", "family");
            }
            this.family = family;
            return this;
        }
        @CustomType.Setter
        public Builder name(String name) {
            if (name == null) {
              throw new MissingRequiredPropertyException("GetElasticPoolSkus", "name");
            }
            this.name = name;
            return this;
        }
        @CustomType.Setter
        public Builder tier(String tier) {
            if (tier == null) {
              throw new MissingRequiredPropertyException("GetElasticPoolSkus", "tier");
            }
            this.tier = tier;
            return this;
        }
        public GetElasticPoolSkus build() {
            final var _resultValue = new GetElasticPoolSkus();
            _resultValue.capacity = capacity;
            _resultValue.family = family;
            _resultValue.name = name;
            _resultValue.tier = tier;
            return _resultValue;
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy