-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtypes.go
59 lines (55 loc) · 2.46 KB
/
types.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
package azrp
// VmPrice is a type that reflects the price of an Azure VM within a specific
// region. It includes the VmSku, location, currently along with pricing for
// hourly PAYG, monthly 1 and 3 year reserved instance and 1 and 3 year saving
// plan.
type VmPrice struct {
VmSku string
Region string
Currency string
PaygHrRate float32 // hourly payg rate
OneYrRi float32 // monthly rate for 1 year reserved instance
ThreeYrRi float32 // monthly rate for 3 year reserved instance
OneYrSp float32 // monthly rate for 1 year saving plan
ThreeYrSp float32 // monthly rate for 3 year saving plan
}
// SssdPrice is a type that represents the price of an Azure Standard SSD disk
// Currently only LRS is supported. The Price value represents the monthly cost
// of the disk in the specified currency. The OpsPrice represents the cost of
// ever 10,000 disk operations.
type SssdPrice struct {
SssdName string // name of the disk eg P10
SizeGiB uint // size of disk in GiB
Region string // location of the disk
Currency string // currency of pricing
Price float32 // monthly cost of disk
OpsPrice float32 // cost per 10K disk operations
}
// PssdPrice is a type that represents the price of an Azure Premium Disk (v1)
// Currently, only LRS storage is supported
type PssdPrice struct {
PssdName string // name of the disk eg P10
SizeGiB uint // size of disk in GiB
Region string // location of the disk
Currency string // currency of pricing
Price float32 // monthly cost of disk
}
// Pssdv2Price is a struct that represent the pricing of an Azure Premium Disk
// v2. Pricing for a v2 disk is made up of three components, size, IOPS and
// throughput.
// The PriceGiB represents the cost for a 1 GiB of storage
// PriceIops represents the cost of 1 IOPS
// PriceMbs represents the cost of 1MiB/s throughput
// The idea is that the user can calculate the price of any pssdv2 disk using
// the returned data. However, the user should be aware the pssdv2 disk provide
// 3000 IOPS and and 125MB/s throughput as standard. Only additional IOPS and
// throughput is required to be priced.
// For a full list of limitations and constraints see -
// https://learn.microsoft.com/en-us/azure/virtual-machines/disks-types#premium-ssd-v2
type Pssdv2Price struct {
Region string // region of the disk
Currency string // currency of the pricing
PriceGiB float32 // price for 1GiB
PriceIops float32 // price for 1 IOPS
PriceMBs float32 // price per MB/s
}