summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/matterbridge/msgraph.go/beta/DlpActionEnum.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/matterbridge/msgraph.go/beta/DlpActionEnum.go')
-rw-r--r--vendor/github.com/matterbridge/msgraph.go/beta/DlpActionEnum.go33
1 files changed, 33 insertions, 0 deletions
diff --git a/vendor/github.com/matterbridge/msgraph.go/beta/DlpActionEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/DlpActionEnum.go
new file mode 100644
index 00000000..4726c7f1
--- /dev/null
+++ b/vendor/github.com/matterbridge/msgraph.go/beta/DlpActionEnum.go
@@ -0,0 +1,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
+}