mirror of
https://github.com/openshift/installer.git
synced 2026-02-06 00:48:45 +01:00
96 lines
3.5 KiB
Go
96 lines
3.5 KiB
Go
package models
|
|
|
|
import (
|
|
i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91 "github.com/microsoft/kiota-abstractions-go/serialization"
|
|
)
|
|
|
|
// GroupAssignmentTarget
|
|
type GroupAssignmentTarget struct {
|
|
DeviceAndAppManagementAssignmentTarget
|
|
}
|
|
// NewGroupAssignmentTarget instantiates a new GroupAssignmentTarget and sets the default values.
|
|
func NewGroupAssignmentTarget()(*GroupAssignmentTarget) {
|
|
m := &GroupAssignmentTarget{
|
|
DeviceAndAppManagementAssignmentTarget: *NewDeviceAndAppManagementAssignmentTarget(),
|
|
}
|
|
odataTypeValue := "#microsoft.graph.groupAssignmentTarget"
|
|
m.SetOdataType(&odataTypeValue)
|
|
return m
|
|
}
|
|
// CreateGroupAssignmentTargetFromDiscriminatorValue creates a new instance of the appropriate class based on discriminator value
|
|
func CreateGroupAssignmentTargetFromDiscriminatorValue(parseNode i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode)(i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable, error) {
|
|
if parseNode != nil {
|
|
mappingValueNode, err := parseNode.GetChildNode("@odata.type")
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
if mappingValueNode != nil {
|
|
mappingValue, err := mappingValueNode.GetStringValue()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
if mappingValue != nil {
|
|
switch *mappingValue {
|
|
case "#microsoft.graph.exclusionGroupAssignmentTarget":
|
|
return NewExclusionGroupAssignmentTarget(), nil
|
|
}
|
|
}
|
|
}
|
|
}
|
|
return NewGroupAssignmentTarget(), nil
|
|
}
|
|
// GetFieldDeserializers the deserialization information for the current model
|
|
func (m *GroupAssignmentTarget) GetFieldDeserializers()(map[string]func(i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode)(error)) {
|
|
res := m.DeviceAndAppManagementAssignmentTarget.GetFieldDeserializers()
|
|
res["groupId"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error {
|
|
val, err := n.GetStringValue()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if val != nil {
|
|
m.SetGroupId(val)
|
|
}
|
|
return nil
|
|
}
|
|
return res
|
|
}
|
|
// GetGroupId gets the groupId property value. The group Id that is the target of the assignment.
|
|
func (m *GroupAssignmentTarget) GetGroupId()(*string) {
|
|
val, err := m.GetBackingStore().Get("groupId")
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
if val != nil {
|
|
return val.(*string)
|
|
}
|
|
return nil
|
|
}
|
|
// Serialize serializes information the current object
|
|
func (m *GroupAssignmentTarget) Serialize(writer i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.SerializationWriter)(error) {
|
|
err := m.DeviceAndAppManagementAssignmentTarget.Serialize(writer)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
{
|
|
err = writer.WriteStringValue("groupId", m.GetGroupId())
|
|
if err != nil {
|
|
return err
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
// SetGroupId sets the groupId property value. The group Id that is the target of the assignment.
|
|
func (m *GroupAssignmentTarget) SetGroupId(value *string)() {
|
|
err := m.GetBackingStore().Set("groupId", value)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
}
|
|
// GroupAssignmentTargetable
|
|
type GroupAssignmentTargetable interface {
|
|
DeviceAndAppManagementAssignmentTargetable
|
|
i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable
|
|
GetGroupId()(*string)
|
|
SetGroupId(value *string)()
|
|
}
|