mirror of
https://github.com/cwinfo/matterbridge.git
synced 2025-09-11 00:42:30 +00:00
Update vendor yaegashi/msgraph.go to v0.1.2 (2)
This commit is contained in:
133
vendor/github.com/yaegashi/msgraph.go/beta/ModelDirectory.go
generated
vendored
Normal file
133
vendor/github.com/yaegashi/msgraph.go/beta/ModelDirectory.go
generated
vendored
Normal file
@@ -0,0 +1,133 @@
|
||||
// Code generated by msgraph-generate.go DO NOT EDIT.
|
||||
|
||||
package msgraph
|
||||
|
||||
import "time"
|
||||
|
||||
// Directory undocumented
|
||||
type Directory struct {
|
||||
// Entity is the base model of Directory
|
||||
Entity
|
||||
// DeletedItems undocumented
|
||||
DeletedItems []DirectoryObject `json:"deletedItems,omitempty"`
|
||||
// FeatureRolloutPolicies undocumented
|
||||
FeatureRolloutPolicies []FeatureRolloutPolicy `json:"featureRolloutPolicies,omitempty"`
|
||||
}
|
||||
|
||||
// DirectoryAudit undocumented
|
||||
type DirectoryAudit struct {
|
||||
// Entity is the base model of DirectoryAudit
|
||||
Entity
|
||||
// Category undocumented
|
||||
Category *string `json:"category,omitempty"`
|
||||
// CorrelationID undocumented
|
||||
CorrelationID *string `json:"correlationId,omitempty"`
|
||||
// Result undocumented
|
||||
Result *OperationResult `json:"result,omitempty"`
|
||||
// ResultReason undocumented
|
||||
ResultReason *string `json:"resultReason,omitempty"`
|
||||
// ActivityDisplayName undocumented
|
||||
ActivityDisplayName *string `json:"activityDisplayName,omitempty"`
|
||||
// ActivityDateTime undocumented
|
||||
ActivityDateTime *time.Time `json:"activityDateTime,omitempty"`
|
||||
// LoggedByService undocumented
|
||||
LoggedByService *string `json:"loggedByService,omitempty"`
|
||||
// OperationType undocumented
|
||||
OperationType *string `json:"operationType,omitempty"`
|
||||
// InitiatedBy undocumented
|
||||
InitiatedBy *AuditActivityInitiator `json:"initiatedBy,omitempty"`
|
||||
// TargetResources undocumented
|
||||
TargetResources []TargetResource `json:"targetResources,omitempty"`
|
||||
// AdditionalDetails undocumented
|
||||
AdditionalDetails []KeyValue `json:"additionalDetails,omitempty"`
|
||||
}
|
||||
|
||||
// DirectoryDefinition undocumented
|
||||
type DirectoryDefinition struct {
|
||||
// Entity is the base model of DirectoryDefinition
|
||||
Entity
|
||||
// DiscoveryDateTime undocumented
|
||||
DiscoveryDateTime *time.Time `json:"discoveryDateTime,omitempty"`
|
||||
// Discoverabilities undocumented
|
||||
Discoverabilities *DirectoryDefinitionDiscoverabilities `json:"discoverabilities,omitempty"`
|
||||
// Name undocumented
|
||||
Name *string `json:"name,omitempty"`
|
||||
// Objects undocumented
|
||||
Objects []ObjectDefinition `json:"objects,omitempty"`
|
||||
// ReadOnly undocumented
|
||||
ReadOnly *bool `json:"readOnly,omitempty"`
|
||||
// Version undocumented
|
||||
Version *string `json:"version,omitempty"`
|
||||
}
|
||||
|
||||
// DirectoryObject Represents an Azure Active Directory object. The directoryObject type is the base type for many other directory entity types.
|
||||
type DirectoryObject struct {
|
||||
// Entity is the base model of DirectoryObject
|
||||
Entity
|
||||
// DeletedDateTime undocumented
|
||||
DeletedDateTime *time.Time `json:"deletedDateTime,omitempty"`
|
||||
}
|
||||
|
||||
// DirectoryObjectPartnerReference undocumented
|
||||
type DirectoryObjectPartnerReference struct {
|
||||
// DirectoryObject is the base model of DirectoryObjectPartnerReference
|
||||
DirectoryObject
|
||||
// Description undocumented
|
||||
Description *string `json:"description,omitempty"`
|
||||
// DisplayName undocumented
|
||||
DisplayName *string `json:"displayName,omitempty"`
|
||||
// ExternalPartnerTenantID undocumented
|
||||
ExternalPartnerTenantID *UUID `json:"externalPartnerTenantId,omitempty"`
|
||||
// ObjectType undocumented
|
||||
ObjectType *string `json:"objectType,omitempty"`
|
||||
}
|
||||
|
||||
// DirectoryRole undocumented
|
||||
type DirectoryRole struct {
|
||||
// DirectoryObject is the base model of DirectoryRole
|
||||
DirectoryObject
|
||||
// Description undocumented
|
||||
Description *string `json:"description,omitempty"`
|
||||
// DisplayName undocumented
|
||||
DisplayName *string `json:"displayName,omitempty"`
|
||||
// RoleTemplateID undocumented
|
||||
RoleTemplateID *string `json:"roleTemplateId,omitempty"`
|
||||
// Members undocumented
|
||||
Members []DirectoryObject `json:"members,omitempty"`
|
||||
// ScopedMembers undocumented
|
||||
ScopedMembers []ScopedRoleMembership `json:"scopedMembers,omitempty"`
|
||||
}
|
||||
|
||||
// DirectoryRoleTemplate undocumented
|
||||
type DirectoryRoleTemplate struct {
|
||||
// DirectoryObject is the base model of DirectoryRoleTemplate
|
||||
DirectoryObject
|
||||
// Description undocumented
|
||||
Description *string `json:"description,omitempty"`
|
||||
// DisplayName undocumented
|
||||
DisplayName *string `json:"displayName,omitempty"`
|
||||
}
|
||||
|
||||
// DirectorySetting undocumented
|
||||
type DirectorySetting struct {
|
||||
// Entity is the base model of DirectorySetting
|
||||
Entity
|
||||
// DisplayName undocumented
|
||||
DisplayName *string `json:"displayName,omitempty"`
|
||||
// TemplateID undocumented
|
||||
TemplateID *string `json:"templateId,omitempty"`
|
||||
// Values undocumented
|
||||
Values []SettingValue `json:"values,omitempty"`
|
||||
}
|
||||
|
||||
// DirectorySettingTemplate undocumented
|
||||
type DirectorySettingTemplate struct {
|
||||
// DirectoryObject is the base model of DirectorySettingTemplate
|
||||
DirectoryObject
|
||||
// DisplayName undocumented
|
||||
DisplayName *string `json:"displayName,omitempty"`
|
||||
// Description undocumented
|
||||
Description *string `json:"description,omitempty"`
|
||||
// Values undocumented
|
||||
Values []SettingTemplateValue `json:"values,omitempty"`
|
||||
}
|
Reference in New Issue
Block a user