summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/yaegashi/msgraph.go/beta/ModelIdentity.go
blob: f6090b85d335f4bb067a2166b8b2b6f50264e9c2 (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
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
94
95
96
97
98
99
100
101
102
103
// Code generated by msgraph.go/gen DO NOT EDIT.

package msgraph

import "time"

// Identity undocumented
type Identity struct {
	// Object is the base model of Identity
	Object
	// ID undocumented
	ID *string `json:"id,omitempty"`
	// DisplayName undocumented
	DisplayName *string `json:"displayName,omitempty"`
}

// IdentityContainer undocumented
type IdentityContainer struct {
	// Entity is the base model of IdentityContainer
	Entity
	// UserFlows undocumented
	UserFlows []IdentityUserFlow `json:"userFlows,omitempty"`
}

// IdentityGovernance undocumented
type IdentityGovernance struct {
	// Entity is the base model of IdentityGovernance
	Entity
	// EntitlementManagement undocumented
	EntitlementManagement *EntitlementManagement `json:"entitlementManagement,omitempty"`
}

// IdentityProvider undocumented
type IdentityProvider struct {
	// Entity is the base model of IdentityProvider
	Entity
	// Type undocumented
	Type *string `json:"type,omitempty"`
	// Name undocumented
	Name *string `json:"name,omitempty"`
	// ClientID undocumented
	ClientID *string `json:"clientId,omitempty"`
	// ClientSecret undocumented
	ClientSecret *string `json:"clientSecret,omitempty"`
}

// IdentityRiskEvent undocumented
type IdentityRiskEvent struct {
	// Entity is the base model of IdentityRiskEvent
	Entity
	// UserDisplayName undocumented
	UserDisplayName *string `json:"userDisplayName,omitempty"`
	// UserPrincipalName undocumented
	UserPrincipalName *string `json:"userPrincipalName,omitempty"`
	// RiskEventDateTime undocumented
	RiskEventDateTime *time.Time `json:"riskEventDateTime,omitempty"`
	// RiskEventType undocumented
	RiskEventType *string `json:"riskEventType,omitempty"`
	// RiskLevel undocumented
	RiskLevel *RiskLevel `json:"riskLevel,omitempty"`
	// RiskEventStatus undocumented
	RiskEventStatus *RiskEventStatus `json:"riskEventStatus,omitempty"`
	// ClosedDateTime undocumented
	ClosedDateTime *time.Time `json:"closedDateTime,omitempty"`
	// CreatedDateTime undocumented
	CreatedDateTime *time.Time `json:"createdDateTime,omitempty"`
	// UserID undocumented
	UserID *string `json:"userId,omitempty"`
	// ImpactedUser undocumented
	ImpactedUser *User `json:"impactedUser,omitempty"`
}

// IdentitySet undocumented
type IdentitySet struct {
	// Object is the base model of IdentitySet
	Object
	// Application undocumented
	Application *Identity `json:"application,omitempty"`
	// Device undocumented
	Device *Identity `json:"device,omitempty"`
	// User undocumented
	User *Identity `json:"user,omitempty"`
}

// IdentityUserFlow undocumented
type IdentityUserFlow struct {
	// Entity is the base model of IdentityUserFlow
	Entity
	// UserFlowType undocumented
	UserFlowType *UserFlowType `json:"userFlowType,omitempty"`
	// UserFlowTypeVersion undocumented
	UserFlowTypeVersion *float64 `json:"userFlowTypeVersion,omitempty"`
}

// IdentityUserRisk undocumented
type IdentityUserRisk struct {
	// Object is the base model of IdentityUserRisk
	Object
	// Level undocumented
	Level *UserRiskLevel `json:"level,omitempty"`
	// LastChangedDateTime undocumented
	LastChangedDateTime *time.Time `json:"lastChangedDateTime,omitempty"`
}