1
0
mirror of https://github.com/openshift/installer.git synced 2026-02-05 15:47:14 +01:00
Files
2024-04-04 21:23:02 +02:00

150 lines
5.2 KiB
Go

package models
import (
i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91 "github.com/microsoft/kiota-abstractions-go/serialization"
)
// OpenShift
type OpenShift struct {
ChangeTrackedEntity
}
// NewOpenShift instantiates a new openShift and sets the default values.
func NewOpenShift()(*OpenShift) {
m := &OpenShift{
ChangeTrackedEntity: *NewChangeTrackedEntity(),
}
odataTypeValue := "#microsoft.graph.openShift"
m.SetOdataType(&odataTypeValue)
return m
}
// CreateOpenShiftFromDiscriminatorValue creates a new instance of the appropriate class based on discriminator value
func CreateOpenShiftFromDiscriminatorValue(parseNode i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode)(i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable, error) {
return NewOpenShift(), nil
}
// GetDraftOpenShift gets the draftOpenShift property value. An unpublished open shift.
func (m *OpenShift) GetDraftOpenShift()(OpenShiftItemable) {
val, err := m.GetBackingStore().Get("draftOpenShift")
if err != nil {
panic(err)
}
if val != nil {
return val.(OpenShiftItemable)
}
return nil
}
// GetFieldDeserializers the deserialization information for the current model
func (m *OpenShift) GetFieldDeserializers()(map[string]func(i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode)(error)) {
res := m.ChangeTrackedEntity.GetFieldDeserializers()
res["draftOpenShift"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error {
val, err := n.GetObjectValue(CreateOpenShiftItemFromDiscriminatorValue)
if err != nil {
return err
}
if val != nil {
m.SetDraftOpenShift(val.(OpenShiftItemable))
}
return nil
}
res["schedulingGroupId"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error {
val, err := n.GetStringValue()
if err != nil {
return err
}
if val != nil {
m.SetSchedulingGroupId(val)
}
return nil
}
res["sharedOpenShift"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error {
val, err := n.GetObjectValue(CreateOpenShiftItemFromDiscriminatorValue)
if err != nil {
return err
}
if val != nil {
m.SetSharedOpenShift(val.(OpenShiftItemable))
}
return nil
}
return res
}
// GetSchedulingGroupId gets the schedulingGroupId property value. ID for the scheduling group that the open shift belongs to.
func (m *OpenShift) GetSchedulingGroupId()(*string) {
val, err := m.GetBackingStore().Get("schedulingGroupId")
if err != nil {
panic(err)
}
if val != nil {
return val.(*string)
}
return nil
}
// GetSharedOpenShift gets the sharedOpenShift property value. A published open shift.
func (m *OpenShift) GetSharedOpenShift()(OpenShiftItemable) {
val, err := m.GetBackingStore().Get("sharedOpenShift")
if err != nil {
panic(err)
}
if val != nil {
return val.(OpenShiftItemable)
}
return nil
}
// Serialize serializes information the current object
func (m *OpenShift) Serialize(writer i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.SerializationWriter)(error) {
err := m.ChangeTrackedEntity.Serialize(writer)
if err != nil {
return err
}
{
err = writer.WriteObjectValue("draftOpenShift", m.GetDraftOpenShift())
if err != nil {
return err
}
}
{
err = writer.WriteStringValue("schedulingGroupId", m.GetSchedulingGroupId())
if err != nil {
return err
}
}
{
err = writer.WriteObjectValue("sharedOpenShift", m.GetSharedOpenShift())
if err != nil {
return err
}
}
return nil
}
// SetDraftOpenShift sets the draftOpenShift property value. An unpublished open shift.
func (m *OpenShift) SetDraftOpenShift(value OpenShiftItemable)() {
err := m.GetBackingStore().Set("draftOpenShift", value)
if err != nil {
panic(err)
}
}
// SetSchedulingGroupId sets the schedulingGroupId property value. ID for the scheduling group that the open shift belongs to.
func (m *OpenShift) SetSchedulingGroupId(value *string)() {
err := m.GetBackingStore().Set("schedulingGroupId", value)
if err != nil {
panic(err)
}
}
// SetSharedOpenShift sets the sharedOpenShift property value. A published open shift.
func (m *OpenShift) SetSharedOpenShift(value OpenShiftItemable)() {
err := m.GetBackingStore().Set("sharedOpenShift", value)
if err != nil {
panic(err)
}
}
// OpenShiftable
type OpenShiftable interface {
ChangeTrackedEntityable
i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable
GetDraftOpenShift()(OpenShiftItemable)
GetSchedulingGroupId()(*string)
GetSharedOpenShift()(OpenShiftItemable)
SetDraftOpenShift(value OpenShiftItemable)()
SetSchedulingGroupId(value *string)()
SetSharedOpenShift(value OpenShiftItemable)()
}