-
Notifications
You must be signed in to change notification settings - Fork 46
/
constants.go
287 lines (245 loc) · 8.63 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
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
package autoscalesettings
import "strings"
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See NOTICE.txt in the project root for license information.
type ComparisonOperationType string
const (
ComparisonOperationTypeEquals ComparisonOperationType = "Equals"
ComparisonOperationTypeGreaterThan ComparisonOperationType = "GreaterThan"
ComparisonOperationTypeGreaterThanOrEqual ComparisonOperationType = "GreaterThanOrEqual"
ComparisonOperationTypeLessThan ComparisonOperationType = "LessThan"
ComparisonOperationTypeLessThanOrEqual ComparisonOperationType = "LessThanOrEqual"
ComparisonOperationTypeNotEquals ComparisonOperationType = "NotEquals"
)
func PossibleValuesForComparisonOperationType() []string {
return []string{
string(ComparisonOperationTypeEquals),
string(ComparisonOperationTypeGreaterThan),
string(ComparisonOperationTypeGreaterThanOrEqual),
string(ComparisonOperationTypeLessThan),
string(ComparisonOperationTypeLessThanOrEqual),
string(ComparisonOperationTypeNotEquals),
}
}
func parseComparisonOperationType(input string) (*ComparisonOperationType, error) {
vals := map[string]ComparisonOperationType{
"equals": ComparisonOperationTypeEquals,
"greaterthan": ComparisonOperationTypeGreaterThan,
"greaterthanorequal": ComparisonOperationTypeGreaterThanOrEqual,
"lessthan": ComparisonOperationTypeLessThan,
"lessthanorequal": ComparisonOperationTypeLessThanOrEqual,
"notequals": ComparisonOperationTypeNotEquals,
}
if v, ok := vals[strings.ToLower(input)]; ok {
return &v, nil
}
// otherwise presume it's an undefined value and best-effort it
out := ComparisonOperationType(input)
return &out, nil
}
type MetricStatisticType string
const (
MetricStatisticTypeAverage MetricStatisticType = "Average"
MetricStatisticTypeCount MetricStatisticType = "Count"
MetricStatisticTypeMax MetricStatisticType = "Max"
MetricStatisticTypeMin MetricStatisticType = "Min"
MetricStatisticTypeSum MetricStatisticType = "Sum"
)
func PossibleValuesForMetricStatisticType() []string {
return []string{
string(MetricStatisticTypeAverage),
string(MetricStatisticTypeCount),
string(MetricStatisticTypeMax),
string(MetricStatisticTypeMin),
string(MetricStatisticTypeSum),
}
}
func parseMetricStatisticType(input string) (*MetricStatisticType, error) {
vals := map[string]MetricStatisticType{
"average": MetricStatisticTypeAverage,
"count": MetricStatisticTypeCount,
"max": MetricStatisticTypeMax,
"min": MetricStatisticTypeMin,
"sum": MetricStatisticTypeSum,
}
if v, ok := vals[strings.ToLower(input)]; ok {
return &v, nil
}
// otherwise presume it's an undefined value and best-effort it
out := MetricStatisticType(input)
return &out, nil
}
type OperationType string
const (
OperationTypeScale OperationType = "Scale"
)
func PossibleValuesForOperationType() []string {
return []string{
string(OperationTypeScale),
}
}
func parseOperationType(input string) (*OperationType, error) {
vals := map[string]OperationType{
"scale": OperationTypeScale,
}
if v, ok := vals[strings.ToLower(input)]; ok {
return &v, nil
}
// otherwise presume it's an undefined value and best-effort it
out := OperationType(input)
return &out, nil
}
type RecurrenceFrequency string
const (
RecurrenceFrequencyDay RecurrenceFrequency = "Day"
RecurrenceFrequencyHour RecurrenceFrequency = "Hour"
RecurrenceFrequencyMinute RecurrenceFrequency = "Minute"
RecurrenceFrequencyMonth RecurrenceFrequency = "Month"
RecurrenceFrequencyNone RecurrenceFrequency = "None"
RecurrenceFrequencySecond RecurrenceFrequency = "Second"
RecurrenceFrequencyWeek RecurrenceFrequency = "Week"
RecurrenceFrequencyYear RecurrenceFrequency = "Year"
)
func PossibleValuesForRecurrenceFrequency() []string {
return []string{
string(RecurrenceFrequencyDay),
string(RecurrenceFrequencyHour),
string(RecurrenceFrequencyMinute),
string(RecurrenceFrequencyMonth),
string(RecurrenceFrequencyNone),
string(RecurrenceFrequencySecond),
string(RecurrenceFrequencyWeek),
string(RecurrenceFrequencyYear),
}
}
func parseRecurrenceFrequency(input string) (*RecurrenceFrequency, error) {
vals := map[string]RecurrenceFrequency{
"day": RecurrenceFrequencyDay,
"hour": RecurrenceFrequencyHour,
"minute": RecurrenceFrequencyMinute,
"month": RecurrenceFrequencyMonth,
"none": RecurrenceFrequencyNone,
"second": RecurrenceFrequencySecond,
"week": RecurrenceFrequencyWeek,
"year": RecurrenceFrequencyYear,
}
if v, ok := vals[strings.ToLower(input)]; ok {
return &v, nil
}
// otherwise presume it's an undefined value and best-effort it
out := RecurrenceFrequency(input)
return &out, nil
}
type ScaleDirection string
const (
ScaleDirectionDecrease ScaleDirection = "Decrease"
ScaleDirectionIncrease ScaleDirection = "Increase"
ScaleDirectionNone ScaleDirection = "None"
)
func PossibleValuesForScaleDirection() []string {
return []string{
string(ScaleDirectionDecrease),
string(ScaleDirectionIncrease),
string(ScaleDirectionNone),
}
}
func parseScaleDirection(input string) (*ScaleDirection, error) {
vals := map[string]ScaleDirection{
"decrease": ScaleDirectionDecrease,
"increase": ScaleDirectionIncrease,
"none": ScaleDirectionNone,
}
if v, ok := vals[strings.ToLower(input)]; ok {
return &v, nil
}
// otherwise presume it's an undefined value and best-effort it
out := ScaleDirection(input)
return &out, nil
}
type ScaleRuleMetricDimensionOperationType string
const (
ScaleRuleMetricDimensionOperationTypeEquals ScaleRuleMetricDimensionOperationType = "Equals"
ScaleRuleMetricDimensionOperationTypeNotEquals ScaleRuleMetricDimensionOperationType = "NotEquals"
)
func PossibleValuesForScaleRuleMetricDimensionOperationType() []string {
return []string{
string(ScaleRuleMetricDimensionOperationTypeEquals),
string(ScaleRuleMetricDimensionOperationTypeNotEquals),
}
}
func parseScaleRuleMetricDimensionOperationType(input string) (*ScaleRuleMetricDimensionOperationType, error) {
vals := map[string]ScaleRuleMetricDimensionOperationType{
"equals": ScaleRuleMetricDimensionOperationTypeEquals,
"notequals": ScaleRuleMetricDimensionOperationTypeNotEquals,
}
if v, ok := vals[strings.ToLower(input)]; ok {
return &v, nil
}
// otherwise presume it's an undefined value and best-effort it
out := ScaleRuleMetricDimensionOperationType(input)
return &out, nil
}
type ScaleType string
const (
ScaleTypeChangeCount ScaleType = "ChangeCount"
ScaleTypeExactCount ScaleType = "ExactCount"
ScaleTypePercentChangeCount ScaleType = "PercentChangeCount"
ScaleTypeServiceAllowedNextValue ScaleType = "ServiceAllowedNextValue"
)
func PossibleValuesForScaleType() []string {
return []string{
string(ScaleTypeChangeCount),
string(ScaleTypeExactCount),
string(ScaleTypePercentChangeCount),
string(ScaleTypeServiceAllowedNextValue),
}
}
func parseScaleType(input string) (*ScaleType, error) {
vals := map[string]ScaleType{
"changecount": ScaleTypeChangeCount,
"exactcount": ScaleTypeExactCount,
"percentchangecount": ScaleTypePercentChangeCount,
"serviceallowednextvalue": ScaleTypeServiceAllowedNextValue,
}
if v, ok := vals[strings.ToLower(input)]; ok {
return &v, nil
}
// otherwise presume it's an undefined value and best-effort it
out := ScaleType(input)
return &out, nil
}
type TimeAggregationType string
const (
TimeAggregationTypeAverage TimeAggregationType = "Average"
TimeAggregationTypeCount TimeAggregationType = "Count"
TimeAggregationTypeLast TimeAggregationType = "Last"
TimeAggregationTypeMaximum TimeAggregationType = "Maximum"
TimeAggregationTypeMinimum TimeAggregationType = "Minimum"
TimeAggregationTypeTotal TimeAggregationType = "Total"
)
func PossibleValuesForTimeAggregationType() []string {
return []string{
string(TimeAggregationTypeAverage),
string(TimeAggregationTypeCount),
string(TimeAggregationTypeLast),
string(TimeAggregationTypeMaximum),
string(TimeAggregationTypeMinimum),
string(TimeAggregationTypeTotal),
}
}
func parseTimeAggregationType(input string) (*TimeAggregationType, error) {
vals := map[string]TimeAggregationType{
"average": TimeAggregationTypeAverage,
"count": TimeAggregationTypeCount,
"last": TimeAggregationTypeLast,
"maximum": TimeAggregationTypeMaximum,
"minimum": TimeAggregationTypeMinimum,
"total": TimeAggregationTypeTotal,
}
if v, ok := vals[strings.ToLower(input)]; ok {
return &v, nil
}
// otherwise presume it's an undefined value and best-effort it
out := TimeAggregationType(input)
return &out, nil
}