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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
|
// Code generated by msgraph-generate.go DO NOT EDIT.
package msgraph
// DlpActionInfo undocumented
type DlpActionInfo struct {
// Object is the base model of DlpActionInfo
Object
// Action undocumented
Action *DlpAction `json:"action,omitempty"`
}
// DlpEvaluatePoliciesJobResponse undocumented
type DlpEvaluatePoliciesJobResponse struct {
// JobResponseBase is the base model of DlpEvaluatePoliciesJobResponse
JobResponseBase
// Result undocumented
Result *DlpPoliciesJobResult `json:"result,omitempty"`
}
// DlpEvaluatePoliciesRequestObject undocumented
type DlpEvaluatePoliciesRequestObject struct {
// Object is the base model of DlpEvaluatePoliciesRequestObject
Object
// Target undocumented
Target *string `json:"target,omitempty"`
// EvaluationInput undocumented
EvaluationInput *DlpEvaluationInput `json:"evaluationInput,omitempty"`
// NotificationInfo undocumented
NotificationInfo *DlpNotification `json:"notificationInfo,omitempty"`
}
// DlpEvaluationInput undocumented
type DlpEvaluationInput struct {
// Object is the base model of DlpEvaluationInput
Object
// DiscoveredSensitiveTypes undocumented
DiscoveredSensitiveTypes []DiscoveredSensitiveType `json:"discoveredSensitiveTypes,omitempty"`
// CurrentLabel undocumented
CurrentLabel *CurrentLabel `json:"currentLabel,omitempty"`
// AccessScope undocumented
AccessScope *AccessScope `json:"accessScope,omitempty"`
}
// DlpEvaluationWindowsDevicesInput undocumented
type DlpEvaluationWindowsDevicesInput struct {
// DlpEvaluationInput is the base model of DlpEvaluationWindowsDevicesInput
DlpEvaluationInput
// ContentProperties undocumented
ContentProperties *ContentProperties `json:"contentProperties,omitempty"`
// SharedBy undocumented
SharedBy *string `json:"sharedBy,omitempty"`
}
// DlpNotification undocumented
type DlpNotification struct {
// Object is the base model of DlpNotification
Object
// Author undocumented
Author *string `json:"author,omitempty"`
}
// DlpPoliciesJobResult undocumented
type DlpPoliciesJobResult struct {
// Object is the base model of DlpPoliciesJobResult
Object
// MatchingRules undocumented
MatchingRules []MatchingDlpRule `json:"matchingRules,omitempty"`
}
// DlpWindowsDevicesNotification undocumented
type DlpWindowsDevicesNotification struct {
// DlpNotification is the base model of DlpWindowsDevicesNotification
DlpNotification
// LastModfiedBy undocumented
LastModfiedBy *string `json:"lastModfiedBy,omitempty"`
// ContentName undocumented
ContentName *string `json:"contentName,omitempty"`
}
|