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 @@ -25,6 +25,8 @@ class SkuName(str, Enum):
standard = "standard"
standard2 = "standard2"
standard3 = "standard3"
storage_optimized_l1 = "storage_optimized_l1"
storage_optimized_l2 = "storage_optimized_l2"


class HostingMode(str, Enum):
Expand Down
11 changes: 7 additions & 4 deletions azure-mgmt-search/azure/mgmt/search/models/sku.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,13 @@ class Sku(Model):
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'
'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'
:type name: str or ~azure.mgmt.search.models.SkuName
"""

Expand Down
11 changes: 7 additions & 4 deletions azure-mgmt-search/azure/mgmt/search/models/sku_py3.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,13 @@ class Sku(Model):
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'
'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'
:type name: str or ~azure.mgmt.search.models.SkuName
"""

Expand Down