summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/yaegashi/msgraph.go/beta/DlpActionEnum.go
blob: 4726c7f10769d801ce93c39e8602853b202267a7 (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
// Code generated by msgraph-generate.go DO NOT EDIT.

package msgraph

// DlpAction undocumented
type DlpAction int

const (
	// DlpActionVNotifyUser undocumented
	DlpActionVNotifyUser DlpAction = 0
	// DlpActionVBlockAccess undocumented
	DlpActionVBlockAccess DlpAction = 1
	// DlpActionVDeviceRestriction undocumented
	DlpActionVDeviceRestriction DlpAction = 2
)

// DlpActionPNotifyUser returns a pointer to DlpActionVNotifyUser
func DlpActionPNotifyUser() *DlpAction {
	v := DlpActionVNotifyUser
	return &v
}

// DlpActionPBlockAccess returns a pointer to DlpActionVBlockAccess
func DlpActionPBlockAccess() *DlpAction {
	v := DlpActionVBlockAccess
	return &v
}

// DlpActionPDeviceRestriction returns a pointer to DlpActionVDeviceRestriction
func DlpActionPDeviceRestriction() *DlpAction {
	v := DlpActionVDeviceRestriction
	return &v
}