blob: f25cf15a3a738a74a1eb3c8b7539dbc0ec3e50ec (
plain) (
blame)
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
|
// Code generated by msgraph-generate.go DO NOT EDIT.
package msgraph
// RunState undocumented
type RunState int
const (
// RunStateVUnknown undocumented
RunStateVUnknown RunState = 0
// RunStateVSuccess undocumented
RunStateVSuccess RunState = 1
// RunStateVFail undocumented
RunStateVFail RunState = 2
// RunStateVScriptError undocumented
RunStateVScriptError RunState = 3
// RunStateVPending undocumented
RunStateVPending RunState = 4
// RunStateVNotApplicable undocumented
RunStateVNotApplicable RunState = 5
)
// RunStatePUnknown returns a pointer to RunStateVUnknown
func RunStatePUnknown() *RunState {
v := RunStateVUnknown
return &v
}
// RunStatePSuccess returns a pointer to RunStateVSuccess
func RunStatePSuccess() *RunState {
v := RunStateVSuccess
return &v
}
// RunStatePFail returns a pointer to RunStateVFail
func RunStatePFail() *RunState {
v := RunStateVFail
return &v
}
// RunStatePScriptError returns a pointer to RunStateVScriptError
func RunStatePScriptError() *RunState {
v := RunStateVScriptError
return &v
}
// RunStatePPending returns a pointer to RunStateVPending
func RunStatePPending() *RunState {
v := RunStateVPending
return &v
}
// RunStatePNotApplicable returns a pointer to RunStateVNotApplicable
func RunStatePNotApplicable() *RunState {
v := RunStateVNotApplicable
return &v
}
|