/
githubmirror
/
origin
Обзор
Документация
Войти
/
githubmirror
/
origin
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
vendor/github.com/microsoftgraph/msgraph-sdk-go/models/directory.go
471 строка
20 KB
Justin Pierce
Add compat_otp package with openshift-tests-private (OTP) util implementations
11 авг 2025, 18:00
11 авг 2025, 18:00
80ac5c1
Код
Авторство
О чём код?
// Code generated by Microsoft Kiota - DO NOT EDIT. // Changes may cause incorrect behavior and will be lost if the code is regenerated. package models import ( i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91 "github.com/microsoft/kiota-abstractions-go/serialization" ) type Directory struct { Entity } // NewDirectory instantiates a new Directory and sets the default values. func NewDirectory()(*Directory) { m := &Directory{ Entity: *NewEntity(), } return m } // CreateDirectoryFromDiscriminatorValue creates a new instance of the appropriate class based on discriminator value // returns a Parsable when successful func CreateDirectoryFromDiscriminatorValue(parseNode i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode)(i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable, error) { return NewDirectory(), nil } // GetAdministrativeUnits gets the administrativeUnits property value. Conceptual container for user and group directory objects. // returns a []AdministrativeUnitable when successful func (m *Directory) GetAdministrativeUnits()([]AdministrativeUnitable) { val, err := m.GetBackingStore().Get("administrativeUnits") if err != nil { panic(err) } if val != nil { return val.([]AdministrativeUnitable) } return nil } // GetAttributeSets gets the attributeSets property value. Group of related custom security attribute definitions. // returns a []AttributeSetable when successful func (m *Directory) GetAttributeSets()([]AttributeSetable) { val, err := m.GetBackingStore().Get("attributeSets") if err != nil { panic(err) } if val != nil { return val.([]AttributeSetable) } return nil } // GetCustomSecurityAttributeDefinitions gets the customSecurityAttributeDefinitions property value. Schema of a custom security attributes (key-value pairs). // returns a []CustomSecurityAttributeDefinitionable when successful func (m *Directory) GetCustomSecurityAttributeDefinitions()([]CustomSecurityAttributeDefinitionable) { val, err := m.GetBackingStore().Get("customSecurityAttributeDefinitions") if err != nil { panic(err) } if val != nil { return val.([]CustomSecurityAttributeDefinitionable) } return nil } // GetDeletedItems gets the deletedItems property value. Recently deleted items. Read-only. Nullable. // returns a []DirectoryObjectable when successful func (m *Directory) GetDeletedItems()([]DirectoryObjectable) { val, err := m.GetBackingStore().Get("deletedItems") if err != nil { panic(err) } if val != nil { return val.([]DirectoryObjectable) } return nil } // GetDeviceLocalCredentials gets the deviceLocalCredentials property value. The credentials of the device's local administrator account backed up to Microsoft Entra ID. // returns a []DeviceLocalCredentialInfoable when successful func (m *Directory) GetDeviceLocalCredentials()([]DeviceLocalCredentialInfoable) { val, err := m.GetBackingStore().Get("deviceLocalCredentials") if err != nil { panic(err) } if val != nil { return val.([]DeviceLocalCredentialInfoable) } return nil } // GetFederationConfigurations gets the federationConfigurations property value. Configure domain federation with organizations whose identity provider (IdP) supports either the SAML or WS-Fed protocol. // returns a []IdentityProviderBaseable when successful func (m *Directory) GetFederationConfigurations()([]IdentityProviderBaseable) { val, err := m.GetBackingStore().Get("federationConfigurations") if err != nil { panic(err) } if val != nil { return val.([]IdentityProviderBaseable) } return nil } // GetFieldDeserializers the deserialization information for the current model // returns a map[string]func(i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode)(error) when successful func (m *Directory) GetFieldDeserializers()(map[string]func(i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode)(error)) { res := m.Entity.GetFieldDeserializers() res["administrativeUnits"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error { val, err := n.GetCollectionOfObjectValues(CreateAdministrativeUnitFromDiscriminatorValue) if err != nil { return err } if val != nil { res := make([]AdministrativeUnitable, len(val)) for i, v := range val { if v != nil { res[i] = v.(AdministrativeUnitable) } } m.SetAdministrativeUnits(res) } return nil } res["attributeSets"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error { val, err := n.GetCollectionOfObjectValues(CreateAttributeSetFromDiscriminatorValue) if err != nil { return err } if val != nil { res := make([]AttributeSetable, len(val)) for i, v := range val { if v != nil { res[i] = v.(AttributeSetable) } } m.SetAttributeSets(res) } return nil } res["customSecurityAttributeDefinitions"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error { val, err := n.GetCollectionOfObjectValues(CreateCustomSecurityAttributeDefinitionFromDiscriminatorValue) if err != nil { return err } if val != nil { res := make([]CustomSecurityAttributeDefinitionable, len(val)) for i, v := range val { if v != nil { res[i] = v.(CustomSecurityAttributeDefinitionable) } } m.SetCustomSecurityAttributeDefinitions(res) } return nil } res["deletedItems"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error { val, err := n.GetCollectionOfObjectValues(CreateDirectoryObjectFromDiscriminatorValue) if err != nil { return err } if val != nil { res := make([]DirectoryObjectable, len(val)) for i, v := range val { if v != nil { res[i] = v.(DirectoryObjectable) } } m.SetDeletedItems(res) } return nil } res["deviceLocalCredentials"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error { val, err := n.GetCollectionOfObjectValues(CreateDeviceLocalCredentialInfoFromDiscriminatorValue) if err != nil { return err } if val != nil { res := make([]DeviceLocalCredentialInfoable, len(val)) for i, v := range val { if v != nil { res[i] = v.(DeviceLocalCredentialInfoable) } } m.SetDeviceLocalCredentials(res) } return nil } res["federationConfigurations"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error { val, err := n.GetCollectionOfObjectValues(CreateIdentityProviderBaseFromDiscriminatorValue) if err != nil { return err } if val != nil { res := make([]IdentityProviderBaseable, len(val)) for i, v := range val { if v != nil { res[i] = v.(IdentityProviderBaseable) } } m.SetFederationConfigurations(res) } return nil } res["onPremisesSynchronization"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error { val, err := n.GetCollectionOfObjectValues(CreateOnPremisesDirectorySynchronizationFromDiscriminatorValue) if err != nil { return err } if val != nil { res := make([]OnPremisesDirectorySynchronizationable, len(val)) for i, v := range val { if v != nil { res[i] = v.(OnPremisesDirectorySynchronizationable) } } m.SetOnPremisesSynchronization(res) } return nil } res["publicKeyInfrastructure"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error { val, err := n.GetObjectValue(CreatePublicKeyInfrastructureRootFromDiscriminatorValue) if err != nil { return err } if val != nil { m.SetPublicKeyInfrastructure(val.(PublicKeyInfrastructureRootable)) } return nil } res["subscriptions"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error { val, err := n.GetCollectionOfObjectValues(CreateCompanySubscriptionFromDiscriminatorValue) if err != nil { return err } if val != nil { res := make([]CompanySubscriptionable, len(val)) for i, v := range val { if v != nil { res[i] = v.(CompanySubscriptionable) } } m.SetSubscriptions(res) } return nil } return res } // GetOnPremisesSynchronization gets the onPremisesSynchronization property value. A container for on-premises directory synchronization functionalities that are available for the organization. // returns a []OnPremisesDirectorySynchronizationable when successful func (m *Directory) GetOnPremisesSynchronization()([]OnPremisesDirectorySynchronizationable) { val, err := m.GetBackingStore().Get("onPremisesSynchronization") if err != nil { panic(err) } if val != nil { return val.([]OnPremisesDirectorySynchronizationable) } return nil } // GetPublicKeyInfrastructure gets the publicKeyInfrastructure property value. The collection of public key infrastructure instances for the certificate-based authentication feature for users in a Microsoft Entra tenant. // returns a PublicKeyInfrastructureRootable when successful func (m *Directory) GetPublicKeyInfrastructure()(PublicKeyInfrastructureRootable) { val, err := m.GetBackingStore().Get("publicKeyInfrastructure") if err != nil { panic(err) } if val != nil { return val.(PublicKeyInfrastructureRootable) } return nil } // GetSubscriptions gets the subscriptions property value. List of commercial subscriptions that an organization acquired. // returns a []CompanySubscriptionable when successful func (m *Directory) GetSubscriptions()([]CompanySubscriptionable) { val, err := m.GetBackingStore().Get("subscriptions") if err != nil { panic(err) } if val != nil { return val.([]CompanySubscriptionable) } return nil } // Serialize serializes information the current object func (m *Directory) Serialize(writer i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.SerializationWriter)(error) { err := m.Entity.Serialize(writer) if err != nil { return err } if m.GetAdministrativeUnits() != nil { cast := make([]i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable, len(m.GetAdministrativeUnits())) for i, v := range m.GetAdministrativeUnits() { if v != nil { cast[i] = v.(i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable) } } err = writer.WriteCollectionOfObjectValues("administrativeUnits", cast) if err != nil { return err } } if m.GetAttributeSets() != nil { cast := make([]i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable, len(m.GetAttributeSets())) for i, v := range m.GetAttributeSets() { if v != nil { cast[i] = v.(i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable) } } err = writer.WriteCollectionOfObjectValues("attributeSets", cast) if err != nil { return err } } if m.GetCustomSecurityAttributeDefinitions() != nil { cast := make([]i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable, len(m.GetCustomSecurityAttributeDefinitions())) for i, v := range m.GetCustomSecurityAttributeDefinitions() { if v != nil { cast[i] = v.(i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable) } } err = writer.WriteCollectionOfObjectValues("customSecurityAttributeDefinitions", cast) if err != nil { return err } } if m.GetDeletedItems() != nil { cast := make([]i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable, len(m.GetDeletedItems())) for i, v := range m.GetDeletedItems() { if v != nil { cast[i] = v.(i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable) } } err = writer.WriteCollectionOfObjectValues("deletedItems", cast) if err != nil { return err } } if m.GetDeviceLocalCredentials() != nil { cast := make([]i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable, len(m.GetDeviceLocalCredentials())) for i, v := range m.GetDeviceLocalCredentials() { if v != nil { cast[i] = v.(i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable) } } err = writer.WriteCollectionOfObjectValues("deviceLocalCredentials", cast) if err != nil { return err } } if m.GetFederationConfigurations() != nil { cast := make([]i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable, len(m.GetFederationConfigurations())) for i, v := range m.GetFederationConfigurations() { if v != nil { cast[i] = v.(i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable) } } err = writer.WriteCollectionOfObjectValues("federationConfigurations", cast) if err != nil { return err } } if m.GetOnPremisesSynchronization() != nil { cast := make([]i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable, len(m.GetOnPremisesSynchronization())) for i, v := range m.GetOnPremisesSynchronization() { if v != nil { cast[i] = v.(i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable) } } err = writer.WriteCollectionOfObjectValues("onPremisesSynchronization", cast) if err != nil { return err } } { err = writer.WriteObjectValue("publicKeyInfrastructure", m.GetPublicKeyInfrastructure()) if err != nil { return err } } if m.GetSubscriptions() != nil { cast := make([]i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable, len(m.GetSubscriptions())) for i, v := range m.GetSubscriptions() { if v != nil { cast[i] = v.(i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable) } } err = writer.WriteCollectionOfObjectValues("subscriptions", cast) if err != nil { return err } } return nil } // SetAdministrativeUnits sets the administrativeUnits property value. Conceptual container for user and group directory objects. func (m *Directory) SetAdministrativeUnits(value []AdministrativeUnitable)() { err := m.GetBackingStore().Set("administrativeUnits", value) if err != nil { panic(err) } } // SetAttributeSets sets the attributeSets property value. Group of related custom security attribute definitions. func (m *Directory) SetAttributeSets(value []AttributeSetable)() { err := m.GetBackingStore().Set("attributeSets", value) if err != nil { panic(err) } } // SetCustomSecurityAttributeDefinitions sets the customSecurityAttributeDefinitions property value. Schema of a custom security attributes (key-value pairs). func (m *Directory) SetCustomSecurityAttributeDefinitions(value []CustomSecurityAttributeDefinitionable)() { err := m.GetBackingStore().Set("customSecurityAttributeDefinitions", value) if err != nil { panic(err) } } // SetDeletedItems sets the deletedItems property value. Recently deleted items. Read-only. Nullable. func (m *Directory) SetDeletedItems(value []DirectoryObjectable)() { err := m.GetBackingStore().Set("deletedItems", value) if err != nil { panic(err) } } // SetDeviceLocalCredentials sets the deviceLocalCredentials property value. The credentials of the device's local administrator account backed up to Microsoft Entra ID. func (m *Directory) SetDeviceLocalCredentials(value []DeviceLocalCredentialInfoable)() { err := m.GetBackingStore().Set("deviceLocalCredentials", value) if err != nil { panic(err) } } // SetFederationConfigurations sets the federationConfigurations property value. Configure domain federation with organizations whose identity provider (IdP) supports either the SAML or WS-Fed protocol. func (m *Directory) SetFederationConfigurations(value []IdentityProviderBaseable)() { err := m.GetBackingStore().Set("federationConfigurations", value) if err != nil { panic(err) } } // SetOnPremisesSynchronization sets the onPremisesSynchronization property value. A container for on-premises directory synchronization functionalities that are available for the organization. func (m *Directory) SetOnPremisesSynchronization(value []OnPremisesDirectorySynchronizationable)() { err := m.GetBackingStore().Set("onPremisesSynchronization", value) if err != nil { panic(err) } } // SetPublicKeyInfrastructure sets the publicKeyInfrastructure property value. The collection of public key infrastructure instances for the certificate-based authentication feature for users in a Microsoft Entra tenant. func (m *Directory) SetPublicKeyInfrastructure(value PublicKeyInfrastructureRootable)() { err := m.GetBackingStore().Set("publicKeyInfrastructure", value) if err != nil { panic(err) } } // SetSubscriptions sets the subscriptions property value. List of commercial subscriptions that an organization acquired. func (m *Directory) SetSubscriptions(value []CompanySubscriptionable)() { err := m.GetBackingStore().Set("subscriptions", value) if err != nil { panic(err) } } type Directoryable interface { Entityable i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable GetAdministrativeUnits()([]AdministrativeUnitable) GetAttributeSets()([]AttributeSetable) GetCustomSecurityAttributeDefinitions()([]CustomSecurityAttributeDefinitionable) GetDeletedItems()([]DirectoryObjectable) GetDeviceLocalCredentials()([]DeviceLocalCredentialInfoable) GetFederationConfigurations()([]IdentityProviderBaseable) GetOnPremisesSynchronization()([]OnPremisesDirectorySynchronizationable) GetPublicKeyInfrastructure()(PublicKeyInfrastructureRootable) GetSubscriptions()([]CompanySubscriptionable) SetAdministrativeUnits(value []AdministrativeUnitable)() SetAttributeSets(value []AttributeSetable)() SetCustomSecurityAttributeDefinitions(value []CustomSecurityAttributeDefinitionable)() SetDeletedItems(value []DirectoryObjectable)() SetDeviceLocalCredentials(value []DeviceLocalCredentialInfoable)() SetFederationConfigurations(value []IdentityProviderBaseable)() SetOnPremisesSynchronization(value []OnPremisesDirectorySynchronizationable)() SetPublicKeyInfrastructure(value PublicKeyInfrastructureRootable)() SetSubscriptions(value []CompanySubscriptionable)() }