mirror of
https://github.com/openshift/installer.git
synced 2026-02-05 15:47:14 +01:00
76 lines
3.1 KiB
Go
76 lines
3.1 KiB
Go
package models
|
|
|
|
import (
|
|
i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91 "github.com/microsoft/kiota-abstractions-go/serialization"
|
|
)
|
|
|
|
// DeviceConfigurationAssignment the device configuration assignment entity assigns an AAD group to a specific device configuration.
|
|
type DeviceConfigurationAssignment struct {
|
|
Entity
|
|
}
|
|
// NewDeviceConfigurationAssignment instantiates a new deviceConfigurationAssignment and sets the default values.
|
|
func NewDeviceConfigurationAssignment()(*DeviceConfigurationAssignment) {
|
|
m := &DeviceConfigurationAssignment{
|
|
Entity: *NewEntity(),
|
|
}
|
|
return m
|
|
}
|
|
// CreateDeviceConfigurationAssignmentFromDiscriminatorValue creates a new instance of the appropriate class based on discriminator value
|
|
func CreateDeviceConfigurationAssignmentFromDiscriminatorValue(parseNode i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode)(i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable, error) {
|
|
return NewDeviceConfigurationAssignment(), nil
|
|
}
|
|
// GetFieldDeserializers the deserialization information for the current model
|
|
func (m *DeviceConfigurationAssignment) GetFieldDeserializers()(map[string]func(i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode)(error)) {
|
|
res := m.Entity.GetFieldDeserializers()
|
|
res["target"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error {
|
|
val, err := n.GetObjectValue(CreateDeviceAndAppManagementAssignmentTargetFromDiscriminatorValue)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if val != nil {
|
|
m.SetTarget(val.(DeviceAndAppManagementAssignmentTargetable))
|
|
}
|
|
return nil
|
|
}
|
|
return res
|
|
}
|
|
// GetTarget gets the target property value. The assignment target for the device configuration.
|
|
func (m *DeviceConfigurationAssignment) GetTarget()(DeviceAndAppManagementAssignmentTargetable) {
|
|
val, err := m.GetBackingStore().Get("target")
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
if val != nil {
|
|
return val.(DeviceAndAppManagementAssignmentTargetable)
|
|
}
|
|
return nil
|
|
}
|
|
// Serialize serializes information the current object
|
|
func (m *DeviceConfigurationAssignment) Serialize(writer i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.SerializationWriter)(error) {
|
|
err := m.Entity.Serialize(writer)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
{
|
|
err = writer.WriteObjectValue("target", m.GetTarget())
|
|
if err != nil {
|
|
return err
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
// SetTarget sets the target property value. The assignment target for the device configuration.
|
|
func (m *DeviceConfigurationAssignment) SetTarget(value DeviceAndAppManagementAssignmentTargetable)() {
|
|
err := m.GetBackingStore().Set("target", value)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
}
|
|
// DeviceConfigurationAssignmentable
|
|
type DeviceConfigurationAssignmentable interface {
|
|
Entityable
|
|
i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable
|
|
GetTarget()(DeviceAndAppManagementAssignmentTargetable)
|
|
SetTarget(value DeviceAndAppManagementAssignmentTargetable)()
|
|
}
|