File tree Expand file tree Collapse file tree 1 file changed +51
-9
lines changed
src/ResourceManager/Compute/Commands.Compute/Extension/AEM Expand file tree Collapse file tree 1 file changed +51
-9
lines changed Original file line number Diff line number Diff line change @@ -153,53 +153,95 @@ internal AzureSLA GetVMSLA(VirtualMachine virtualMachine)
153
153
switch ( virtualMachine . HardwareProfile . VmSize )
154
154
{
155
155
case "Standard_DS1" :
156
- case "Standard_DS1_v2" :
157
156
result . HasSLA = true ;
158
157
result . IOPS = 3200 ;
159
158
result . TP = 32 ;
160
159
break ;
160
+ case "Standard_DS1_v2" :
161
+ result . HasSLA = true ;
162
+ result . IOPS = 3200 ;
163
+ result . TP = 48 ;
164
+ break ;
161
165
case "Standard_DS2" :
162
- case "Standard_DS2_v2" :
163
166
result . HasSLA = true ;
164
167
result . IOPS = 6400 ;
165
168
result . TP = 64 ;
166
169
break ;
170
+ case "Standard_DS2_v2" :
171
+ result . HasSLA = true ;
172
+ result . IOPS = 6400 ;
173
+ result . TP = 96 ;
174
+ break ;
167
175
case "Standard_DS3" :
168
- case "Standard_DS3_v2" :
169
176
result . HasSLA = true ;
170
177
result . IOPS = 12800 ;
171
178
result . TP = 128 ;
172
179
break ;
180
+ case "Standard_DS3_v2" :
181
+ result . HasSLA = true ;
182
+ result . IOPS = 12800 ;
183
+ result . TP = 192 ;
184
+ break ;
173
185
case "Standard_DS4" :
174
- case "Standard_DS4_v2" :
175
186
result . HasSLA = true ;
176
187
result . IOPS = 25600 ;
177
188
result . TP = 256 ;
178
189
break ;
190
+ case "Standard_DS4_v2" :
191
+ result . HasSLA = true ;
192
+ result . IOPS = 25600 ;
193
+ result . TP = 384 ;
194
+ break ;
195
+ case "Standard_DS5_v2" :
196
+ result . HasSLA = true ;
197
+ result . IOPS = 51200 ;
198
+ result . TP = 768 ;
199
+ break ;
179
200
case "Standard_DS11" :
180
- case "Standard_DS11_v2" :
181
201
result . HasSLA = true ;
182
202
result . IOPS = 6400 ;
183
203
result . TP = 64 ;
184
204
break ;
205
+ case "Standard_DS11_v2" :
206
+ result . HasSLA = true ;
207
+ result . IOPS = 6400 ;
208
+ result . TP = 96 ;
209
+ break ;
185
210
case "Standard_DS12" :
186
- case "Standard_DS12_v2" :
187
211
result . HasSLA = true ;
188
212
result . IOPS = 12800 ;
189
213
result . TP = 128 ;
190
214
break ;
215
+ case "Standard_DS12_v2" :
216
+ result . HasSLA = true ;
217
+ result . IOPS = 12800 ;
218
+ result . TP = 192 ;
219
+ break ;
191
220
case "Standard_DS13" :
192
- case "Standard_DS13_v2" :
193
221
result . HasSLA = true ;
194
222
result . IOPS = 25600 ;
195
223
result . TP = 256 ;
196
224
break ;
225
+ case "Standard_DS13_v2" :
226
+ result . HasSLA = true ;
227
+ result . IOPS = 25600 ;
228
+ result . TP = 384 ;
229
+ break ;
197
230
case "Standard_DS14" :
198
- case "Standard_DS14_v2" :
199
231
result . HasSLA = true ;
200
- result . IOPS = 50000 ;
232
+ result . IOPS = 51200 ;
201
233
result . TP = 512 ;
202
234
break ;
235
+ case "Standard_DS14_v2" :
236
+ result . HasSLA = true ;
237
+ result . IOPS = 51200 ;
238
+ result . TP = 768 ;
239
+ break ;
240
+ case "Standard_DS15_v2" :
241
+ result . HasSLA = true ;
242
+ result . IOPS = 64000 ;
243
+ result . TP = 960 ;
244
+ break ;
203
245
case "Standard_GS1" :
204
246
result . HasSLA = true ;
205
247
result . IOPS = 5000 ;
You can’t perform that action at this time.
0 commit comments