diff options
Diffstat (limited to 'vendor/github.com/yaegashi/msgraph.go/beta/EnumDlp.go')
-rw-r--r-- | vendor/github.com/yaegashi/msgraph.go/beta/EnumDlp.go | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumDlp.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumDlp.go new file mode 100644 index 00000000..449004d4 --- /dev/null +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumDlp.go @@ -0,0 +1,30 @@ +// Code generated by msgraph-generate.go DO NOT EDIT. + +package msgraph + +// DlpAction undocumented +type DlpAction string + +const ( + // DlpActionVNotifyUser undocumented + DlpActionVNotifyUser DlpAction = "notifyUser" + // DlpActionVBlockAccess undocumented + DlpActionVBlockAccess DlpAction = "blockAccess" + // DlpActionVDeviceRestriction undocumented + DlpActionVDeviceRestriction DlpAction = "deviceRestriction" +) + +var ( + // DlpActionPNotifyUser is a pointer to DlpActionVNotifyUser + DlpActionPNotifyUser = &_DlpActionPNotifyUser + // DlpActionPBlockAccess is a pointer to DlpActionVBlockAccess + DlpActionPBlockAccess = &_DlpActionPBlockAccess + // DlpActionPDeviceRestriction is a pointer to DlpActionVDeviceRestriction + DlpActionPDeviceRestriction = &_DlpActionPDeviceRestriction +) + +var ( + _DlpActionPNotifyUser = DlpActionVNotifyUser + _DlpActionPBlockAccess = DlpActionVBlockAccess + _DlpActionPDeviceRestriction = DlpActionVDeviceRestriction +) |