forked from hashicorp/go-azure-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconstants.go
183 lines (157 loc) · 4.02 KB
/
constants.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
package tenants
import (
"encoding/json"
"fmt"
"strings"
)
// Copyright (c) HashiCorp Inc. All rights reserved.
// Licensed under the MIT License. See NOTICE.txt in the project root for license information.
type BillingType string
const (
BillingTypeAuths BillingType = "auths"
BillingTypeMonthlyActiveUsers BillingType = "mau"
)
func PossibleValuesForBillingType() []string {
return []string{
string(BillingTypeAuths),
string(BillingTypeMonthlyActiveUsers),
}
}
func (s *BillingType) UnmarshalJSON(bytes []byte) error {
var decoded string
if err := json.Unmarshal(bytes, &decoded); err != nil {
return fmt.Errorf("unmarshaling: %+v", err)
}
out, err := parseBillingType(decoded)
if err != nil {
return fmt.Errorf("parsing %q: %+v", decoded, err)
}
*s = *out
return nil
}
func parseBillingType(input string) (*BillingType, error) {
vals := map[string]BillingType{
"auths": BillingTypeAuths,
"mau": BillingTypeMonthlyActiveUsers,
}
if v, ok := vals[strings.ToLower(input)]; ok {
return &v, nil
}
// otherwise presume it's an undefined value and best-effort it
out := BillingType(input)
return &out, nil
}
type Location string
const (
LocationAsiaPacific Location = "Asia Pacific"
LocationAustralia Location = "Australia"
LocationEurope Location = "Europe"
LocationGlobal Location = "Global"
LocationUnitedStates Location = "United States"
)
func PossibleValuesForLocation() []string {
return []string{
string(LocationAsiaPacific),
string(LocationAustralia),
string(LocationEurope),
string(LocationGlobal),
string(LocationUnitedStates),
}
}
func (s *Location) UnmarshalJSON(bytes []byte) error {
var decoded string
if err := json.Unmarshal(bytes, &decoded); err != nil {
return fmt.Errorf("unmarshaling: %+v", err)
}
out, err := parseLocation(decoded)
if err != nil {
return fmt.Errorf("parsing %q: %+v", decoded, err)
}
*s = *out
return nil
}
func parseLocation(input string) (*Location, error) {
vals := map[string]Location{
"asia pacific": LocationAsiaPacific,
"australia": LocationAustralia,
"europe": LocationEurope,
"global": LocationGlobal,
"united states": LocationUnitedStates,
}
if v, ok := vals[strings.ToLower(input)]; ok {
return &v, nil
}
// otherwise presume it's an undefined value and best-effort it
out := Location(input)
return &out, nil
}
type SkuName string
const (
SkuNamePremiumP1 SkuName = "PremiumP1"
SkuNamePremiumP2 SkuName = "PremiumP2"
SkuNameStandard SkuName = "Standard"
)
func PossibleValuesForSkuName() []string {
return []string{
string(SkuNamePremiumP1),
string(SkuNamePremiumP2),
string(SkuNameStandard),
}
}
func (s *SkuName) UnmarshalJSON(bytes []byte) error {
var decoded string
if err := json.Unmarshal(bytes, &decoded); err != nil {
return fmt.Errorf("unmarshaling: %+v", err)
}
out, err := parseSkuName(decoded)
if err != nil {
return fmt.Errorf("parsing %q: %+v", decoded, err)
}
*s = *out
return nil
}
func parseSkuName(input string) (*SkuName, error) {
vals := map[string]SkuName{
"premiump1": SkuNamePremiumP1,
"premiump2": SkuNamePremiumP2,
"standard": SkuNameStandard,
}
if v, ok := vals[strings.ToLower(input)]; ok {
return &v, nil
}
// otherwise presume it's an undefined value and best-effort it
out := SkuName(input)
return &out, nil
}
type SkuTier string
const (
SkuTierA0 SkuTier = "A0"
)
func PossibleValuesForSkuTier() []string {
return []string{
string(SkuTierA0),
}
}
func (s *SkuTier) UnmarshalJSON(bytes []byte) error {
var decoded string
if err := json.Unmarshal(bytes, &decoded); err != nil {
return fmt.Errorf("unmarshaling: %+v", err)
}
out, err := parseSkuTier(decoded)
if err != nil {
return fmt.Errorf("parsing %q: %+v", decoded, err)
}
*s = *out
return nil
}
func parseSkuTier(input string) (*SkuTier, error) {
vals := map[string]SkuTier{
"a0": SkuTierA0,
}
if v, ok := vals[strings.ToLower(input)]; ok {
return &v, nil
}
// otherwise presume it's an undefined value and best-effort it
out := SkuTier(input)
return &out, nil
}