@@ -105,9 +105,11 @@ class Database(TrackedResource):
105105 NonReadableSecondary or OnlineSecondary, this value is ignored. To see
106106 possible values, query the capabilities API
107107 (/subscriptions/{subscriptionId}/providers/Microsoft.Sql/locations/{locationID}/capabilities)
108- referred to by operationId: "Capabilities_ListByLocation.". Possible
109- values include: 'Web', 'Business', 'Basic', 'Standard', 'Premium', 'Free',
110- 'Stretch', 'DataWarehouse', 'System', 'System2'
108+ referred to by operationId: "Capabilities_ListByLocation." or use the
109+ Azure CLI command `az sql db list-editions -l westus --query [].name`.
110+ Possible values include: 'Web', 'Business', 'Basic', 'Standard',
111+ 'Premium', 'PremiumRS', 'Free', 'Stretch', 'DataWarehouse', 'System',
112+ 'System2'
111113 :type edition: str or ~azure.mgmt.sql.models.DatabaseEdition
112114 :param max_size_bytes: The max size of the database expressed in bytes. If
113115 createMode is not Default, this value is ignored. To see possible values,
@@ -124,22 +126,40 @@ class Database(TrackedResource):
124126 requestedServiceObjectiveName. To see possible values, query the
125127 capabilities API
126128 (/subscriptions/{subscriptionId}/providers/Microsoft.Sql/locations/{locationID}/capabilities)
127- referred to by operationId: "Capabilities_ListByLocation."
129+ referred to by operationId: "Capabilities_ListByLocation." or use the
130+ Azure CLI command `az sql db list-editions --location <location> --query
131+ [].supportedServiceLevelObjectives[].name` .
128132 :type requested_service_objective_id: str
129133 :param requested_service_objective_name: The name of the configured
130134 service level objective of the database. This is the service level
131135 objective that is in the process of being applied to the database. Once
132136 successfully updated, it will match the value of serviceLevelObjective
133137 property. To see possible values, query the capabilities API
134138 (/subscriptions/{subscriptionId}/providers/Microsoft.Sql/locations/{locationID}/capabilities)
135- referred to by operationId: "Capabilities_ListByLocation.". Possible
136- values include: 'Basic', 'S0', 'S1', 'S2', 'S3', 'P1', 'P2', 'P3', 'P4',
137- 'P6', 'P11', 'P15', 'System', 'System2', 'ElasticPool'
139+ referred to by operationId: "Capabilities_ListByLocation." or use the
140+ Azure CLI command `az sql db list-editions --location <location> --query
141+ [].supportedServiceLevelObjectives[].name`. Possible values include:
142+ 'System', 'System0', 'System1', 'System2', 'System3', 'System4',
143+ 'System2L', 'System3L', 'System4L', 'Free', 'Basic', 'S0', 'S1', 'S2',
144+ 'S3', 'S4', 'S6', 'S7', 'S9', 'S12', 'P1', 'P2', 'P3', 'P4', 'P6', 'P11',
145+ 'P15', 'PRS1', 'PRS2', 'PRS4', 'PRS6', 'DW100', 'DW200', 'DW300', 'DW400',
146+ 'DW500', 'DW600', 'DW1000', 'DW1200', 'DW1000c', 'DW1500', 'DW1500c',
147+ 'DW2000', 'DW2000c', 'DW3000', 'DW2500c', 'DW3000c', 'DW6000', 'DW5000c',
148+ 'DW6000c', 'DW7500c', 'DW10000c', 'DW15000c', 'DW30000c', 'DS100',
149+ 'DS200', 'DS300', 'DS400', 'DS500', 'DS600', 'DS1000', 'DS1200', 'DS1500',
150+ 'DS2000', 'ElasticPool'
138151 :type requested_service_objective_name: str or
139152 ~azure.mgmt.sql.models.ServiceObjectiveName
140153 :ivar service_level_objective: The current service level objective of the
141- database. Possible values include: 'Basic', 'S0', 'S1', 'S2', 'S3', 'P1',
142- 'P2', 'P3', 'P4', 'P6', 'P11', 'P15', 'System', 'System2', 'ElasticPool'
154+ database. Possible values include: 'System', 'System0', 'System1',
155+ 'System2', 'System3', 'System4', 'System2L', 'System3L', 'System4L',
156+ 'Free', 'Basic', 'S0', 'S1', 'S2', 'S3', 'S4', 'S6', 'S7', 'S9', 'S12',
157+ 'P1', 'P2', 'P3', 'P4', 'P6', 'P11', 'P15', 'PRS1', 'PRS2', 'PRS4',
158+ 'PRS6', 'DW100', 'DW200', 'DW300', 'DW400', 'DW500', 'DW600', 'DW1000',
159+ 'DW1200', 'DW1000c', 'DW1500', 'DW1500c', 'DW2000', 'DW2000c', 'DW3000',
160+ 'DW2500c', 'DW3000c', 'DW6000', 'DW5000c', 'DW6000c', 'DW7500c',
161+ 'DW10000c', 'DW15000c', 'DW30000c', 'DS100', 'DS200', 'DS300', 'DS400',
162+ 'DS500', 'DS600', 'DS1000', 'DS1200', 'DS1500', 'DS2000', 'ElasticPool'
143163 :vartype service_level_objective: str or
144164 ~azure.mgmt.sql.models.ServiceObjectiveName
145165 :ivar status: The status of the database.
0 commit comments