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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
|
// Code generated by msgraph.go/gen DO NOT EDIT.
package msgraph
import "time"
// DataClassificationService undocumented
type DataClassificationService struct {
// Entity is the base model of DataClassificationService
Entity
// ExactMatchDataStores undocumented
ExactMatchDataStores []ExactMatchDataStore `json:"exactMatchDataStores,omitempty"`
// SensitiveTypes undocumented
SensitiveTypes []SensitiveType `json:"sensitiveTypes,omitempty"`
// Jobs undocumented
Jobs []JobResponseBase `json:"jobs,omitempty"`
// ClassifyFileJobs undocumented
ClassifyFileJobs []JobResponseBase `json:"classifyFileJobs,omitempty"`
// ClassifyTextJobs undocumented
ClassifyTextJobs []JobResponseBase `json:"classifyTextJobs,omitempty"`
// EvaluateLabelJobs undocumented
EvaluateLabelJobs []JobResponseBase `json:"evaluateLabelJobs,omitempty"`
// EvaluateDlpPoliciesJobs undocumented
EvaluateDlpPoliciesJobs []JobResponseBase `json:"evaluateDlpPoliciesJobs,omitempty"`
// LabelsAndPoliciesEvaluationJobs undocumented
LabelsAndPoliciesEvaluationJobs []JobResponseBase `json:"labelsAndPoliciesEvaluationJobs,omitempty"`
// ClassifyText undocumented
ClassifyText []TextClassificationRequestObject `json:"classifyText,omitempty"`
// ClassifyFile undocumented
ClassifyFile []FileClassificationRequestObject `json:"classifyFile,omitempty"`
// SensitivityLabels undocumented
SensitivityLabels []SensitivityLabel `json:"sensitivityLabels,omitempty"`
// ExactMatchUploadAgents undocumented
ExactMatchUploadAgents []ExactMatchUploadAgent `json:"exactMatchUploadAgents,omitempty"`
}
// DataLossPreventionPolicy undocumented
type DataLossPreventionPolicy struct {
// Entity is the base model of DataLossPreventionPolicy
Entity
// Name undocumented
Name *string `json:"name,omitempty"`
// ID undocumented
ID *string `json:"id,omitempty"`
}
// DataPolicyOperation undocumented
type DataPolicyOperation struct {
// Entity is the base model of DataPolicyOperation
Entity
// CompletedDateTime undocumented
CompletedDateTime *time.Time `json:"completedDateTime,omitempty"`
// Status undocumented
Status *DataPolicyOperationStatus `json:"status,omitempty"`
// StorageLocation undocumented
StorageLocation *string `json:"storageLocation,omitempty"`
// UserID undocumented
UserID *string `json:"userId,omitempty"`
// SubmittedDateTime undocumented
SubmittedDateTime *time.Time `json:"submittedDateTime,omitempty"`
// Progress undocumented
Progress *float64 `json:"progress,omitempty"`
}
// DataSharingConsent Data sharing consent information.
type DataSharingConsent struct {
// Entity is the base model of DataSharingConsent
Entity
// ServiceDisplayName The display name of the service work flow
ServiceDisplayName *string `json:"serviceDisplayName,omitempty"`
// TermsURL The TermsUrl for the data sharing consent
TermsURL *string `json:"termsUrl,omitempty"`
// Granted The granted state for the data sharing consent
Granted *bool `json:"granted,omitempty"`
// GrantDateTime The time consent was granted for this account
GrantDateTime *time.Time `json:"grantDateTime,omitempty"`
// GrantedByUpn The Upn of the user that granted consent for this account
GrantedByUpn *string `json:"grantedByUpn,omitempty"`
// GrantedByUserID The UserId of the user that granted consent for this account
GrantedByUserID *string `json:"grantedByUserId,omitempty"`
}
// DataStoreField undocumented
type DataStoreField struct {
// Object is the base model of DataStoreField
Object
// Name undocumented
Name *string `json:"name,omitempty"`
// Unique undocumented
Unique *bool `json:"unique,omitempty"`
// Searchable undocumented
Searchable *bool `json:"searchable,omitempty"`
}
|