-
Notifications
You must be signed in to change notification settings - Fork 8
/
sku.go
574 lines (509 loc) · 17.3 KB
/
sku.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
package skewer
import (
"fmt"
"strconv"
"strings"
"github.com/Azure/azure-sdk-for-go/services/compute/mgmt/2022-08-01/compute" //nolint:staticcheck
"github.com/pkg/errors"
)
// SKU wraps an Azure compute SKU with richer functionality
type SKU compute.ResourceSku
// ErrCapabilityNotFound will be returned when a capability could not be
// found, even without a value.
type ErrCapabilityNotFound struct {
capability string
}
func (e *ErrCapabilityNotFound) Error() string {
return e.capability + "CapabilityNotFound"
}
// ErrCapabilityValueNil will be returned when a capability was found by
// name but the value was nil.
type ErrCapabilityValueNil struct {
capability string
}
func (e *ErrCapabilityValueNil) Error() string {
return e.capability + "CapabilityValueNil"
}
// ErrCapabilityValueParse will be returned when a capability was found by
// name but there was error parsing the capability.
type ErrCapabilityValueParse struct {
capability string
value string
err error
}
func (e *ErrCapabilityValueParse) Error() string {
return fmt.Sprintf("%sCapabilityValueParse: failed to parse string '%s' as int64, error: '%s'", e.capability, e.value, e.err)
}
// VCPU returns the number of vCPUs this SKU supports.
func (s *SKU) VCPU() (int64, error) {
return s.GetCapabilityIntegerQuantity(VCPUs)
}
// GPU returns the number of GPU this SKU supports.
func (s *SKU) GPU() (int64, error) {
return s.GetCapabilityIntegerQuantity(GPUs)
}
// Memory returns the amount of memory this SKU supports.
func (s *SKU) Memory() (float64, error) {
return s.GetCapabilityFloatQuantity(MemoryGB)
}
// MaxCachedDiskBytes returns the number of bytes available for the
// cache if it exists on this VM size.
func (s *SKU) MaxCachedDiskBytes() (int64, error) {
return s.GetCapabilityIntegerQuantity(CachedDiskBytes)
}
// MaxResourceVolumeMB returns the number of bytes available for the
// cache if it exists on this VM size.
func (s *SKU) MaxResourceVolumeMB() (int64, error) {
return s.GetCapabilityIntegerQuantity(MaxResourceVolumeMB)
}
// IsEncryptionAtHostSupported returns true when Encryption at Host is
// supported for the VM size.
func (s *SKU) IsEncryptionAtHostSupported() bool {
return s.HasCapability(EncryptionAtHost)
}
// From ultra SSD documentation
// https://docs.microsoft.com/en-us/azure/virtual-machines/disks-enable-ultra-ssd
// Ultra SSD can be either supported on
// - "Single VMs" without availability zone support, or
// - On availability zones
// So provide functions to test both cases
// IsUltraSSDAvailableWithoutAvailabilityZone returns true when a VM size has ultra SSD enabled
// in the region
func (s *SKU) IsUltraSSDAvailableWithoutAvailabilityZone() bool {
return s.HasCapability(UltraSSDAvailable)
}
// IsUltraSSDAvailableInAvailabilityZone returns true when a VM size has ultra SSD enabled
// in the given availability zone
func (s *SKU) IsUltraSSDAvailableInAvailabilityZone(zone string) bool {
return s.HasCapabilityInZone(UltraSSDAvailable, zone)
}
// IsUltraSSDAvailable returns true when a VM size has ultra SSD enabled
// in at least 1 unrestricted zone.
//
// Deprecated: use either IsUltraSSDAvailableWithoutAvailabilityZone or IsUltraSSDAvailableInAvailabilityZone
func (s *SKU) IsUltraSSDAvailable() bool {
return s.HasZonalCapability(UltraSSDAvailable)
}
// IsEphemeralOSDiskSupported returns true when the VM size supports
// ephemeral OS.
func (s *SKU) IsEphemeralOSDiskSupported() bool {
return s.HasCapability(EphemeralOSDisk)
}
// IsAcceleratedNetworkingSupported returns true when the VM size supports
// accelerated networking.
func (s *SKU) IsAcceleratedNetworkingSupported() bool {
return s.HasCapability(AcceleratedNetworking)
}
// IsPremiumIO returns true when the VM size supports PremiumIO.
func (s *SKU) IsPremiumIO() bool {
return s.HasCapability(CapabilityPremiumIO)
}
// IsHyperVGen1Supported returns true when the VM size supports
// accelerated networking.
func (s *SKU) IsHyperVGen1Supported() bool {
return s.HasCapabilityWithSeparator(HyperVGenerations, HyperVGeneration1)
}
// IsHyperVGen2Supported returns true when the VM size supports
// accelerated networking.
func (s *SKU) IsHyperVGen2Supported() bool {
return s.HasCapabilityWithSeparator(HyperVGenerations, HyperVGeneration2)
}
// GetCPUArchitectureType returns cpu arch for the VM size.
// It errors if value is nil or not found.
func (s *SKU) GetCPUArchitectureType() (string, error) {
return s.GetCapabilityString(CapabilityCPUArchitectureType)
}
// GetCapabilityIntegerQuantity retrieves and parses the value of an
// integer numeric capability with the provided name. It errors if the
// capability is not found, the value was nil, or the value could not be
// parsed as an integer.
func (s *SKU) GetCapabilityIntegerQuantity(name string) (int64, error) {
if s.Capabilities == nil {
return -1, &ErrCapabilityNotFound{name}
}
for _, capability := range *s.Capabilities {
if capability.Name != nil && *capability.Name == name {
if capability.Value != nil {
intVal, err := strconv.ParseInt(*capability.Value, ten, sixtyFour)
if err != nil {
return -1, &ErrCapabilityValueParse{name, *capability.Value, err}
}
return intVal, nil
}
return -1, &ErrCapabilityValueNil{name}
}
}
return -1, &ErrCapabilityNotFound{name}
}
// GetCapabilityFloatQuantity retrieves and parses the value of a
// floating point numeric capability with the provided name. It errors
// if the capability is not found, the value was nil, or the value could
// not be parsed as an integer.
func (s *SKU) GetCapabilityFloatQuantity(name string) (float64, error) {
if s.Capabilities == nil {
return -1, &ErrCapabilityNotFound{name}
}
for _, capability := range *s.Capabilities {
if capability.Name != nil && *capability.Name == name {
if capability.Value != nil {
intVal, err := strconv.ParseFloat(*capability.Value, sixtyFour)
if err != nil {
return -1, &ErrCapabilityValueParse{name, *capability.Value, err}
}
return intVal, nil
}
return -1, &ErrCapabilityValueNil{name}
}
}
return -1, &ErrCapabilityNotFound{name}
}
// GetCapabilityString retrieves string capability with the provided name.
// It errors if the capability is not found or the value was nil
func (s *SKU) GetCapabilityString(name string) (string, error) {
if s.Capabilities == nil {
return "", &ErrCapabilityNotFound{name}
}
for _, capability := range *s.Capabilities {
if capability.Name != nil && *capability.Name == name {
if capability.Value != nil {
return *capability.Value, nil
}
return "", &ErrCapabilityValueNil{name}
}
}
return "", &ErrCapabilityNotFound{name}
}
// HasCapability return true for a capability which can be either
// supported or not. Examples include "EphemeralOSDiskSupported",
// "EncryptionAtHostSupported", "AcceleratedNetworkingEnabled", and
// "RdmaEnabled"
func (s *SKU) HasCapability(name string) bool {
if s.Capabilities == nil {
return false
}
for _, capability := range *s.Capabilities {
if capability.Name != nil && strings.EqualFold(*capability.Name, name) {
return capability.Value != nil && strings.EqualFold(*capability.Value, string(CapabilitySupported))
}
}
return false
}
// HasZonalCapability return true for a capability which can be either
// supported or not. Examples include "UltraSSDAvailable".
// This function only checks that zone details suggest support: it will
// return true for a whole location even when only one zone supports the
// feature. Currently, the only real scenario that appears to use
// zoneDetails is UltraSSDAvailable which always lists all regions as
// available.
// For per zone capability check, use "HasCapabilityInZone"
func (s *SKU) HasZonalCapability(name string) bool {
if s.LocationInfo == nil {
return false
}
for _, locationInfo := range *s.LocationInfo {
if locationInfo.ZoneDetails == nil {
continue
}
for _, zoneDetails := range *locationInfo.ZoneDetails {
if zoneDetails.Capabilities == nil {
continue
}
for _, capability := range *zoneDetails.Capabilities {
if capability.Name != nil && strings.EqualFold(*capability.Name, name) {
if capability.Value != nil && strings.EqualFold(*capability.Value, string(CapabilitySupported)) {
return true
}
}
}
}
}
return false
}
// HasCapabilityInZone return true if the specified capability name is supported in the
// specified zone.
func (s *SKU) HasCapabilityInZone(name, zone string) bool {
if s.LocationInfo == nil {
return false
}
for _, locationInfo := range *s.LocationInfo {
if locationInfo.ZoneDetails == nil {
continue
}
for _, zoneDetails := range *locationInfo.ZoneDetails {
if zoneDetails.Capabilities == nil {
continue
}
foundZone := false
if zoneDetails.Name != nil {
for _, zoneName := range *zoneDetails.Name {
if strings.EqualFold(zone, zoneName) {
foundZone = true
break
}
}
}
if !foundZone {
continue
}
for _, capability := range *zoneDetails.Capabilities {
if capability.Name != nil && strings.EqualFold(*capability.Name, name) {
if capability.Value != nil && strings.EqualFold(*capability.Value, string(CapabilitySupported)) {
return true
}
}
}
}
}
return false
}
// HasCapabilityWithSeparator return true for a capability which may be
// exposed as a comma-separated list. We check that the list contains
// the desired substring. An example is "HyperVGenerations" which may be
// "V1,V2"
func (s *SKU) HasCapabilityWithSeparator(name, value string) bool {
if s.Capabilities == nil {
return false
}
for _, capability := range *s.Capabilities {
if capability.Name != nil && strings.EqualFold(*capability.Name, name) {
return capability.Value != nil && strings.Contains(normalizeLocation(*capability.Value), normalizeLocation(value))
}
}
return false
}
// HasCapabilityWithMinCapacity returns true when the SKU has a
// capability with the requested name, and the value is greater than or
// equal to the desired value.
// "MaxResourceVolumeMB", "OSVhdSizeMB", "vCPUs",
// "MemoryGB","MaxDataDiskCount", "CombinedTempDiskAndCachedIOPS",
// "CombinedTempDiskAndCachedReadBytesPerSecond",
// "CombinedTempDiskAndCachedWriteBytesPerSecond", "UncachedDiskIOPS",
// and "UncachedDiskBytesPerSecond"
func (s *SKU) HasCapabilityWithMinCapacity(name string, value int64) (bool, error) {
if s.Capabilities == nil {
return false, nil
}
for _, capability := range *s.Capabilities {
if capability.Name != nil && strings.EqualFold(*capability.Name, name) {
if capability.Value != nil {
intVal, err := strconv.ParseInt(*capability.Value, ten, sixtyFour)
if err != nil {
return false, errors.Wrapf(err, "failed to parse string '%s' as int64", *capability.Value)
}
if intVal >= value {
return true, nil
}
}
return false, nil
}
}
return false, nil
}
// IsAvailable returns true when the requested location matches one on
// the sku, and there are no total restrictions on the location.
func (s *SKU) IsAvailable(location string) bool {
if s.LocationInfo == nil {
return false
}
for _, locationInfo := range *s.LocationInfo {
if locationInfo.Location != nil {
if locationEquals(*locationInfo.Location, location) {
if s.Restrictions != nil {
for _, restriction := range *s.Restrictions {
// Can't deploy to any zones in this location. We're done.
if restriction.Type == compute.Location {
return false
}
}
}
return true
}
}
}
return false
}
// IsRestricted returns true when a location restriction exists for
// this SKU.
func (s *SKU) IsRestricted(location string) bool {
if s.Restrictions == nil {
return false
}
for _, restriction := range *s.Restrictions {
if restriction.Values == nil {
continue
}
for _, candidate := range *restriction.Values {
// Can't deploy in this location. We're done.
if locationEquals(candidate, location) && restriction.Type == compute.Location {
return true
}
}
}
return false
}
// IsResourceType returns true when the wrapped SKU has the provided
// value as its resource type. This may be used to filter using values
// such as "virtualMachines", "disks", "availabilitySets", "snapshots",
// and "hostGroups/hosts".
func (s *SKU) IsResourceType(t string) bool {
return s.ResourceType != nil && strings.EqualFold(*s.ResourceType, t)
}
// GetResourceType returns the name of this resource sku. It normalizes pointers
// to the empty string for comparison purposes. For example,
// "virtualMachines" for a virtual machine.
func (s *SKU) GetResourceType() string {
if s.ResourceType == nil {
return ""
}
return *s.ResourceType
}
// GetName returns the name of this resource sku. It normalizes pointers
// to the empty string for comparison purposes. For example,
// "Standard_D8s_v3" for a virtual machine.
func (s *SKU) GetName() string {
if s.Name == nil {
return ""
}
return *s.Name
}
// GetFamilyName returns the family name of this resource sku. It normalizes pointers
// to the empty string for comparison purposes. For example,
// "standardDSv2Family" for a virtual machine.
func (s *SKU) GetFamilyName() string {
if s.Family == nil {
return ""
}
return *s.Family
}
// GetSize returns the size of this resource sku. It normalizes pointers
// to the empty string for comparison purposes. For example,
// "M416ms_v2" for a virtual machine.
func (s *SKU) GetSize() string {
if s.Size == nil {
return ""
}
return *s.Size
}
func (s *SKU) GetVMSize() (*VMSizeType, error) {
return getVMSize(s.GetSize())
}
// GetLocation returns the location for a given SKU.
func (s *SKU) GetLocation() (string, error) {
if s.Locations == nil {
return "", fmt.Errorf("sku had nil location array")
}
if len(*s.Locations) < 1 {
return "", fmt.Errorf("sku had no locations")
}
if len(*s.Locations) > 1 {
return "", fmt.Errorf("sku had multiple locations, refusing to disambiguate")
}
return (*s.Locations)[0], nil
}
// HasLocation returns true if the given sku exposes this region for deployment.
func (s *SKU) HasLocation(location string) bool {
if s.Locations == nil {
return false
}
for _, candidate := range *s.Locations {
if locationEquals(candidate, location) {
return true
}
}
return false
}
// HasLocationRestriction returns true if the location is restricted for
// this sku.
func (s *SKU) HasLocationRestriction(location string) bool {
if s.Restrictions == nil {
return false
}
for _, restriction := range *s.Restrictions {
if restriction.Type != compute.Location {
continue
}
if restriction.Values == nil {
continue
}
for _, candidate := range *restriction.Values {
if locationEquals(candidate, location) {
return true
}
}
}
return false
}
// IsConfidentialComputingTypeSNP return true if ConfidentialComputingType is SNP for this sku.
func (s *SKU) IsConfidentialComputingTypeSNP() (bool, error) {
return s.HasCapabilityWithSeparator(CapabilityConfidentialComputingType, ConfidentialComputingTypeSNP), nil
}
// Official documentation for Trusted Launch states:
// The response will be similar to the following form:
// IsTrustedLaunchEnabled True in the output indicates that the Generation 2 VM size does not support Trusted launch.
// If it's a Generation 2 VM size and TrustedLaunchDisabled is not part of the output,
// it implies that Trusted launch is supported for that VM size.
func (s *SKU) IsTrustedLaunchEnabled() (bool, error) {
if s.IsHyperVGen2Supported() {
if !s.HasCapabilityWithSeparator(CapabilityTrustedLaunchDisabled, string(CapabilitySupported)) {
return true, nil
}
}
return false, nil
}
// AvailabilityZones returns the list of Availability Zones which have this resource SKU available and unrestricted.
func (s *SKU) AvailabilityZones(location string) map[string]bool { //nolint:gocyclo
if s.LocationInfo == nil {
return nil
}
// Use map for easy deletion and iteration
availableZones := make(map[string]bool)
restrictedZones := make(map[string]bool)
for _, locationInfo := range *s.LocationInfo {
if locationInfo.Location == nil {
continue
}
if locationEquals(*locationInfo.Location, location) {
// add all zones
if locationInfo.Zones != nil {
for _, zone := range *locationInfo.Zones {
availableZones[zone] = true
}
}
// iterate restrictions, remove any restricted zones for this location
if s.Restrictions != nil {
for _, restriction := range *s.Restrictions {
if restriction.Values != nil {
for _, candidate := range *restriction.Values {
if locationEquals(candidate, location) {
if restriction.Type == compute.Location {
// Can't deploy in this location. We're done.
return nil
}
if restriction.RestrictionInfo != nil && restriction.RestrictionInfo.Zones != nil {
// remove restricted zones
for _, zone := range *restriction.RestrictionInfo.Zones {
restrictedZones[zone] = true
}
}
}
}
}
}
}
}
}
for zone := range restrictedZones {
delete(availableZones, zone)
}
return availableZones
}
// Equal returns true when two skus have the same location, type, and name.
func (s *SKU) Equal(other *SKU) bool {
location, localErr := s.GetLocation()
otherLocation, otherErr := s.GetLocation()
return strings.EqualFold(s.GetResourceType(), other.GetResourceType()) &&
strings.EqualFold(s.GetName(), other.GetName()) &&
locationEquals(location, otherLocation) &&
localErr != nil &&
otherErr != nil
}