Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -20,16 +20,19 @@ public class Sku {
* 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': Offers maximum capacity per search unit 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'). Possible values
* include: 'free', 'basic', 'standard', 'standard2', 'standard3'.
* '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.'. Possible values include:
* 'free', 'basic', 'standard', 'standard2', 'standard3',
* 'storage_optimized_l1', 'storage_optimized_l2'.
*/
@JsonProperty(value = "name")
private SkuName name;

/**
* Get 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': Offers maximum capacity per search unit 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'). Possible values include: 'free', 'basic', 'standard', 'standard2', 'standard3'.
* Get 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.'. Possible values include: 'free', 'basic', 'standard', 'standard2', 'standard3', 'storage_optimized_l1', 'storage_optimized_l2'.
*
* @return the name value
*/
Expand All @@ -38,7 +41,7 @@ public SkuName name() {
}

/**
* Set 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': Offers maximum capacity per search unit 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'). Possible values include: 'free', 'basic', 'standard', 'standard2', 'standard3'.
* Set 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.'. Possible values include: 'free', 'basic', 'standard', 'standard2', 'standard3', 'storage_optimized_l1', 'storage_optimized_l2'.
*
* @param name the name value to set
* @return the Sku object itself.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,13 @@ public enum SkuName {
STANDARD2("standard2"),

/** Enum value standard3. */
STANDARD3("standard3");
STANDARD3("standard3"),

/** Enum value storage_optimized_l1. */
STORAGE_OPTIMIZED_L1("storage_optimized_l1"),

/** Enum value storage_optimized_l2. */
STORAGE_OPTIMIZED_L2("storage_optimized_l2");

/** The actual serialized value for a SkuName instance. */
private String value;
Expand Down