-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomponentstatus_jsonenums.go
62 lines (55 loc) · 1.76 KB
/
componentstatus_jsonenums.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
// generated by jsonenums -type=ComponentStatus; DO NOT EDIT
package statusio
import (
"encoding/json"
"fmt"
)
var (
_ComponentStatusNameToValue = map[string]ComponentStatus{
"Operational": Operational,
"DegradedPerformance": DegradedPerformance,
"PartialOutage": PartialOutage,
"MajorOutage": MajorOutage,
}
_ComponentStatusValueToName = map[ComponentStatus]string{
Operational: "Operational",
DegradedPerformance: "DegradedPerformance",
PartialOutage: "PartialOutage",
MajorOutage: "MajorOutage",
}
)
func init() {
var v ComponentStatus
if _, ok := interface{}(v).(fmt.Stringer); ok {
_ComponentStatusNameToValue = map[string]ComponentStatus{
interface{}(Operational).(fmt.Stringer).String(): Operational,
interface{}(DegradedPerformance).(fmt.Stringer).String(): DegradedPerformance,
interface{}(PartialOutage).(fmt.Stringer).String(): PartialOutage,
interface{}(MajorOutage).(fmt.Stringer).String(): MajorOutage,
}
}
}
// MarshalJSON is generated so ComponentStatus satisfies json.Marshaler.
func (r ComponentStatus) MarshalJSON() ([]byte, error) {
if s, ok := interface{}(r).(fmt.Stringer); ok {
return json.Marshal(s.String())
}
s, ok := _ComponentStatusValueToName[r]
if !ok {
return nil, fmt.Errorf("invalid ComponentStatus: %d", r)
}
return json.Marshal(s)
}
// UnmarshalJSON is generated so ComponentStatus satisfies json.Unmarshaler.
func (r *ComponentStatus) UnmarshalJSON(data []byte) error {
var s string
if err := json.Unmarshal(data, &s); err != nil {
return fmt.Errorf("ComponentStatus should be a string, got %s", data)
}
v, ok := _ComponentStatusNameToValue[s]
if !ok {
return fmt.Errorf("invalid ComponentStatus %q", s)
}
*r = v
return nil
}