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

com.pulumi.azurenative.search.enums.SkuName Maven / Gradle / Ivy

There is a newer version: 2.78.0
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.azurenative.search.enums;

import com.pulumi.core.annotations.EnumType;
import java.lang.String;
import java.util.Objects;
import java.util.StringJoiner;

    /**
     * The SKU of the search service. Valid values include: 'free': Shared service. 'basic': Dedicated service with up to 3 replicas. 'standard': Dedicated service with up to 12 partitions and 12 replicas. 'standard2': Similar to standard, but with more capacity per search unit. 'standard3': The largest Standard offering with up to 12 partitions and 12 replicas (or up to 3 partitions with more indexes if you also set the hostingMode property to 'highDensity'). 'storage_optimized_l1': Supports 1TB per partition, up to 12 partitions. 'storage_optimized_l2': Supports 2TB per partition, up to 12 partitions.'
     * 
     */
    @EnumType
    public enum SkuName {
        /**
         * Free tier, with no SLA guarantees and a subset of features offered to paid tiers.
         * 
         */
        Free("free"),
        /**
         * Paid tier dedicated service with up to 3 replicas.
         * 
         */
        Basic("basic"),
        /**
         * Paid tier dedicated service with up to 12 partitions and 12 replicas.
         * 
         */
        Standard("standard"),
        /**
         * Similar to 'standard', but with more capacity per search unit.
         * 
         */
        Standard2("standard2"),
        /**
         *  The largest Standard offering with up to 12 partitions and 12 replicas (or up to 3 partitions with more indexes if you also set the hostingMode property to 'highDensity').
         * 
         */
        Standard3("standard3"),
        /**
         * Paid tier dedicated service that supports 1TB per partition, up to 12 partitions.
         * 
         */
        StorageOptimizedL1("storage_optimized_l1"),
        /**
         * Paid tier dedicated service that supports 2TB per partition, up to 12 partitions.
         * 
         */
        StorageOptimizedL2("storage_optimized_l2");

        private final String value;

        SkuName(String value) {
            this.value = Objects.requireNonNull(value);
        }

        @EnumType.Converter
        public String getValue() {
            return this.value;
        }

        @Override
        public java.lang.String toString() {
            return new StringJoiner(", ", "SkuName[", "]")
                .add("value='" + this.value + "'")
                .toString();
        }
    }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy