diff --git a/searchmanagementclient/resource-manager/v2015_08_19/src/main/java/com/microsoft/azure/management/searchmanagementclient/v2015_08_19/Sku.java b/searchmanagementclient/resource-manager/v2015_08_19/src/main/java/com/microsoft/azure/management/searchmanagementclient/v2015_08_19/Sku.java index 09b8f256f22a..87506f896ddb 100644 --- a/searchmanagementclient/resource-manager/v2015_08_19/src/main/java/com/microsoft/azure/management/searchmanagementclient/v2015_08_19/Sku.java +++ b/searchmanagementclient/resource-manager/v2015_08_19/src/main/java/com/microsoft/azure/management/searchmanagementclient/v2015_08_19/Sku.java @@ -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 */ @@ -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. diff --git a/searchmanagementclient/resource-manager/v2015_08_19/src/main/java/com/microsoft/azure/management/searchmanagementclient/v2015_08_19/SkuName.java b/searchmanagementclient/resource-manager/v2015_08_19/src/main/java/com/microsoft/azure/management/searchmanagementclient/v2015_08_19/SkuName.java index bc9e880c3d0b..39e48200f3fb 100644 --- a/searchmanagementclient/resource-manager/v2015_08_19/src/main/java/com/microsoft/azure/management/searchmanagementclient/v2015_08_19/SkuName.java +++ b/searchmanagementclient/resource-manager/v2015_08_19/src/main/java/com/microsoft/azure/management/searchmanagementclient/v2015_08_19/SkuName.java @@ -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;