-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathcompliance_status.go
51 lines (49 loc) · 1.51 KB
/
compliance_status.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
package models
type ComplianceStatus int
const (
UNKNOWN_COMPLIANCESTATUS ComplianceStatus = iota
NOTAPPLICABLE_COMPLIANCESTATUS
COMPLIANT_COMPLIANCESTATUS
REMEDIATED_COMPLIANCESTATUS
NONCOMPLIANT_COMPLIANCESTATUS
ERROR_COMPLIANCESTATUS
CONFLICT_COMPLIANCESTATUS
NOTASSIGNED_COMPLIANCESTATUS
)
func (i ComplianceStatus) String() string {
return []string{"unknown", "notApplicable", "compliant", "remediated", "nonCompliant", "error", "conflict", "notAssigned"}[i]
}
func ParseComplianceStatus(v string) (any, error) {
result := UNKNOWN_COMPLIANCESTATUS
switch v {
case "unknown":
result = UNKNOWN_COMPLIANCESTATUS
case "notApplicable":
result = NOTAPPLICABLE_COMPLIANCESTATUS
case "compliant":
result = COMPLIANT_COMPLIANCESTATUS
case "remediated":
result = REMEDIATED_COMPLIANCESTATUS
case "nonCompliant":
result = NONCOMPLIANT_COMPLIANCESTATUS
case "error":
result = ERROR_COMPLIANCESTATUS
case "conflict":
result = CONFLICT_COMPLIANCESTATUS
case "notAssigned":
result = NOTASSIGNED_COMPLIANCESTATUS
default:
return nil, nil
}
return &result, nil
}
func SerializeComplianceStatus(values []ComplianceStatus) []string {
result := make([]string, len(values))
for i, v := range values {
result[i] = v.String()
}
return result
}
func (i ComplianceStatus) isMultiValue() bool {
return false
}