-
Notifications
You must be signed in to change notification settings - Fork 46
/
constants.go
37 lines (30 loc) · 1008 Bytes
/
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
package actiongroupsapis
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 ReceiverStatus string
const (
ReceiverStatusDisabled ReceiverStatus = "Disabled"
ReceiverStatusEnabled ReceiverStatus = "Enabled"
ReceiverStatusNotSpecified ReceiverStatus = "NotSpecified"
)
func PossibleValuesForReceiverStatus() []string {
return []string{
string(ReceiverStatusDisabled),
string(ReceiverStatusEnabled),
string(ReceiverStatusNotSpecified),
}
}
func parseReceiverStatus(input string) (*ReceiverStatus, error) {
vals := map[string]ReceiverStatus{
"disabled": ReceiverStatusDisabled,
"enabled": ReceiverStatusEnabled,
"notspecified": ReceiverStatusNotSpecified,
}
if v, ok := vals[strings.ToLower(input)]; ok {
return &v, nil
}
// otherwise presume it's an undefined value and best-effort it
out := ReceiverStatus(input)
return &out, nil
}