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
|
// Code generated by msgraph-generate.go DO NOT EDIT.
package msgraph
// Credential undocumented
type Credential struct {
// Object is the base model of Credential
Object
// FieldID undocumented
FieldID *string `json:"fieldId,omitempty"`
// Value undocumented
Value *string `json:"value,omitempty"`
// Type undocumented
Type *string `json:"type,omitempty"`
}
// CredentialSingleSignOnExtension undocumented
type CredentialSingleSignOnExtension struct {
// SingleSignOnExtension is the base model of CredentialSingleSignOnExtension
SingleSignOnExtension
// ExtensionIdentifier Gets or sets the bundle ID of the app extension that performs SSO for the specified URLs.
ExtensionIdentifier *string `json:"extensionIdentifier,omitempty"`
// TeamIdentifier Gets or sets the team ID of the app extension that performs SSO for the specified URLs.
TeamIdentifier *string `json:"teamIdentifier,omitempty"`
// Domains Gets or sets a list of hosts or domain names for which the app extension performs SSO.
Domains []string `json:"domains,omitempty"`
// Realm Gets or sets the case-sensitive realm name for this profile.
Realm *string `json:"realm,omitempty"`
// Configurations Gets or sets a list of typed key-value pairs used to configure Credential-type profiles. This collection can contain a maximum of 500 elements.
Configurations []KeyTypedValuePair `json:"configurations,omitempty"`
}
// CredentialUsageSummary undocumented
type CredentialUsageSummary struct {
// Entity is the base model of CredentialUsageSummary
Entity
// Feature undocumented
Feature *FeatureType `json:"feature,omitempty"`
// SuccessfulActivityCount undocumented
SuccessfulActivityCount *int `json:"successfulActivityCount,omitempty"`
// FailureActivityCount undocumented
FailureActivityCount *int `json:"failureActivityCount,omitempty"`
// AuthMethod undocumented
AuthMethod *UsageAuthMethod `json:"authMethod,omitempty"`
}
// CredentialUserRegistrationCount undocumented
type CredentialUserRegistrationCount struct {
// Entity is the base model of CredentialUserRegistrationCount
Entity
// TotalUserCount undocumented
TotalUserCount *int `json:"totalUserCount,omitempty"`
// UserRegistrationCounts undocumented
UserRegistrationCounts []UserRegistrationCount `json:"userRegistrationCounts,omitempty"`
}
// CredentialUserRegistrationDetails undocumented
type CredentialUserRegistrationDetails struct {
// Entity is the base model of CredentialUserRegistrationDetails
Entity
// UserPrincipalName undocumented
UserPrincipalName *string `json:"userPrincipalName,omitempty"`
// UserDisplayName undocumented
UserDisplayName *string `json:"userDisplayName,omitempty"`
// AuthMethods undocumented
AuthMethods []RegistrationAuthMethod `json:"authMethods,omitempty"`
// IsRegistered undocumented
IsRegistered *bool `json:"isRegistered,omitempty"`
// IsEnabled undocumented
IsEnabled *bool `json:"isEnabled,omitempty"`
// IsCapable undocumented
IsCapable *bool `json:"isCapable,omitempty"`
// IsMFARegistered undocumented
IsMFARegistered *bool `json:"isMfaRegistered,omitempty"`
}
|