mirror of
https://github.com/openshift/installer.git
synced 2026-02-05 15:47:14 +01:00
345 lines
12 KiB
Go
345 lines
12 KiB
Go
package models
|
||
|
||
import (
|
||
i336074805fc853987abe6f7fe3ad97a6a6f3077a16391fec744f671a015fbd7e "time"
|
||
i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91 "github.com/microsoft/kiota-abstractions-go/serialization"
|
||
)
|
||
|
||
// PlannerPlan
|
||
type PlannerPlan struct {
|
||
Entity
|
||
}
|
||
// NewPlannerPlan instantiates a new plannerPlan and sets the default values.
|
||
func NewPlannerPlan()(*PlannerPlan) {
|
||
m := &PlannerPlan{
|
||
Entity: *NewEntity(),
|
||
}
|
||
return m
|
||
}
|
||
// CreatePlannerPlanFromDiscriminatorValue creates a new instance of the appropriate class based on discriminator value
|
||
func CreatePlannerPlanFromDiscriminatorValue(parseNode i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode)(i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable, error) {
|
||
return NewPlannerPlan(), nil
|
||
}
|
||
// GetBuckets gets the buckets property value. Read-only. Nullable. Collection of buckets in the plan.
|
||
func (m *PlannerPlan) GetBuckets()([]PlannerBucketable) {
|
||
val, err := m.GetBackingStore().Get("buckets")
|
||
if err != nil {
|
||
panic(err)
|
||
}
|
||
if val != nil {
|
||
return val.([]PlannerBucketable)
|
||
}
|
||
return nil
|
||
}
|
||
// GetContainer gets the container property value. Identifies the container of the plan. Specify only the url, the containerId and type, or all properties. After it is set, this property can’t be updated. Required.
|
||
func (m *PlannerPlan) GetContainer()(PlannerPlanContainerable) {
|
||
val, err := m.GetBackingStore().Get("container")
|
||
if err != nil {
|
||
panic(err)
|
||
}
|
||
if val != nil {
|
||
return val.(PlannerPlanContainerable)
|
||
}
|
||
return nil
|
||
}
|
||
// GetCreatedBy gets the createdBy property value. Read-only. The user who created the plan.
|
||
func (m *PlannerPlan) GetCreatedBy()(IdentitySetable) {
|
||
val, err := m.GetBackingStore().Get("createdBy")
|
||
if err != nil {
|
||
panic(err)
|
||
}
|
||
if val != nil {
|
||
return val.(IdentitySetable)
|
||
}
|
||
return nil
|
||
}
|
||
// GetCreatedDateTime gets the createdDateTime property value. Read-only. Date and time at which the plan is created. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z
|
||
func (m *PlannerPlan) GetCreatedDateTime()(*i336074805fc853987abe6f7fe3ad97a6a6f3077a16391fec744f671a015fbd7e.Time) {
|
||
val, err := m.GetBackingStore().Get("createdDateTime")
|
||
if err != nil {
|
||
panic(err)
|
||
}
|
||
if val != nil {
|
||
return val.(*i336074805fc853987abe6f7fe3ad97a6a6f3077a16391fec744f671a015fbd7e.Time)
|
||
}
|
||
return nil
|
||
}
|
||
// GetDetails gets the details property value. Read-only. Nullable. Additional details about the plan.
|
||
func (m *PlannerPlan) GetDetails()(PlannerPlanDetailsable) {
|
||
val, err := m.GetBackingStore().Get("details")
|
||
if err != nil {
|
||
panic(err)
|
||
}
|
||
if val != nil {
|
||
return val.(PlannerPlanDetailsable)
|
||
}
|
||
return nil
|
||
}
|
||
// GetFieldDeserializers the deserialization information for the current model
|
||
func (m *PlannerPlan) GetFieldDeserializers()(map[string]func(i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode)(error)) {
|
||
res := m.Entity.GetFieldDeserializers()
|
||
res["buckets"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error {
|
||
val, err := n.GetCollectionOfObjectValues(CreatePlannerBucketFromDiscriminatorValue)
|
||
if err != nil {
|
||
return err
|
||
}
|
||
if val != nil {
|
||
res := make([]PlannerBucketable, len(val))
|
||
for i, v := range val {
|
||
res[i] = v.(PlannerBucketable)
|
||
}
|
||
m.SetBuckets(res)
|
||
}
|
||
return nil
|
||
}
|
||
res["container"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error {
|
||
val, err := n.GetObjectValue(CreatePlannerPlanContainerFromDiscriminatorValue)
|
||
if err != nil {
|
||
return err
|
||
}
|
||
if val != nil {
|
||
m.SetContainer(val.(PlannerPlanContainerable))
|
||
}
|
||
return nil
|
||
}
|
||
res["createdBy"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error {
|
||
val, err := n.GetObjectValue(CreateIdentitySetFromDiscriminatorValue)
|
||
if err != nil {
|
||
return err
|
||
}
|
||
if val != nil {
|
||
m.SetCreatedBy(val.(IdentitySetable))
|
||
}
|
||
return nil
|
||
}
|
||
res["createdDateTime"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error {
|
||
val, err := n.GetTimeValue()
|
||
if err != nil {
|
||
return err
|
||
}
|
||
if val != nil {
|
||
m.SetCreatedDateTime(val)
|
||
}
|
||
return nil
|
||
}
|
||
res["details"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error {
|
||
val, err := n.GetObjectValue(CreatePlannerPlanDetailsFromDiscriminatorValue)
|
||
if err != nil {
|
||
return err
|
||
}
|
||
if val != nil {
|
||
m.SetDetails(val.(PlannerPlanDetailsable))
|
||
}
|
||
return nil
|
||
}
|
||
res["owner"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error {
|
||
val, err := n.GetStringValue()
|
||
if err != nil {
|
||
return err
|
||
}
|
||
if val != nil {
|
||
m.SetOwner(val)
|
||
}
|
||
return nil
|
||
}
|
||
res["tasks"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error {
|
||
val, err := n.GetCollectionOfObjectValues(CreatePlannerTaskFromDiscriminatorValue)
|
||
if err != nil {
|
||
return err
|
||
}
|
||
if val != nil {
|
||
res := make([]PlannerTaskable, len(val))
|
||
for i, v := range val {
|
||
res[i] = v.(PlannerTaskable)
|
||
}
|
||
m.SetTasks(res)
|
||
}
|
||
return nil
|
||
}
|
||
res["title"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error {
|
||
val, err := n.GetStringValue()
|
||
if err != nil {
|
||
return err
|
||
}
|
||
if val != nil {
|
||
m.SetTitle(val)
|
||
}
|
||
return nil
|
||
}
|
||
return res
|
||
}
|
||
// GetOwner gets the owner property value. The owner property
|
||
func (m *PlannerPlan) GetOwner()(*string) {
|
||
val, err := m.GetBackingStore().Get("owner")
|
||
if err != nil {
|
||
panic(err)
|
||
}
|
||
if val != nil {
|
||
return val.(*string)
|
||
}
|
||
return nil
|
||
}
|
||
// GetTasks gets the tasks property value. Read-only. Nullable. Collection of tasks in the plan.
|
||
func (m *PlannerPlan) GetTasks()([]PlannerTaskable) {
|
||
val, err := m.GetBackingStore().Get("tasks")
|
||
if err != nil {
|
||
panic(err)
|
||
}
|
||
if val != nil {
|
||
return val.([]PlannerTaskable)
|
||
}
|
||
return nil
|
||
}
|
||
// GetTitle gets the title property value. Required. Title of the plan.
|
||
func (m *PlannerPlan) GetTitle()(*string) {
|
||
val, err := m.GetBackingStore().Get("title")
|
||
if err != nil {
|
||
panic(err)
|
||
}
|
||
if val != nil {
|
||
return val.(*string)
|
||
}
|
||
return nil
|
||
}
|
||
// Serialize serializes information the current object
|
||
func (m *PlannerPlan) Serialize(writer i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.SerializationWriter)(error) {
|
||
err := m.Entity.Serialize(writer)
|
||
if err != nil {
|
||
return err
|
||
}
|
||
if m.GetBuckets() != nil {
|
||
cast := make([]i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable, len(m.GetBuckets()))
|
||
for i, v := range m.GetBuckets() {
|
||
cast[i] = v.(i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable)
|
||
}
|
||
err = writer.WriteCollectionOfObjectValues("buckets", cast)
|
||
if err != nil {
|
||
return err
|
||
}
|
||
}
|
||
{
|
||
err = writer.WriteObjectValue("container", m.GetContainer())
|
||
if err != nil {
|
||
return err
|
||
}
|
||
}
|
||
{
|
||
err = writer.WriteObjectValue("createdBy", m.GetCreatedBy())
|
||
if err != nil {
|
||
return err
|
||
}
|
||
}
|
||
{
|
||
err = writer.WriteTimeValue("createdDateTime", m.GetCreatedDateTime())
|
||
if err != nil {
|
||
return err
|
||
}
|
||
}
|
||
{
|
||
err = writer.WriteObjectValue("details", m.GetDetails())
|
||
if err != nil {
|
||
return err
|
||
}
|
||
}
|
||
{
|
||
err = writer.WriteStringValue("owner", m.GetOwner())
|
||
if err != nil {
|
||
return err
|
||
}
|
||
}
|
||
if m.GetTasks() != nil {
|
||
cast := make([]i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable, len(m.GetTasks()))
|
||
for i, v := range m.GetTasks() {
|
||
cast[i] = v.(i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable)
|
||
}
|
||
err = writer.WriteCollectionOfObjectValues("tasks", cast)
|
||
if err != nil {
|
||
return err
|
||
}
|
||
}
|
||
{
|
||
err = writer.WriteStringValue("title", m.GetTitle())
|
||
if err != nil {
|
||
return err
|
||
}
|
||
}
|
||
return nil
|
||
}
|
||
// SetBuckets sets the buckets property value. Read-only. Nullable. Collection of buckets in the plan.
|
||
func (m *PlannerPlan) SetBuckets(value []PlannerBucketable)() {
|
||
err := m.GetBackingStore().Set("buckets", value)
|
||
if err != nil {
|
||
panic(err)
|
||
}
|
||
}
|
||
// SetContainer sets the container property value. Identifies the container of the plan. Specify only the url, the containerId and type, or all properties. After it is set, this property can’t be updated. Required.
|
||
func (m *PlannerPlan) SetContainer(value PlannerPlanContainerable)() {
|
||
err := m.GetBackingStore().Set("container", value)
|
||
if err != nil {
|
||
panic(err)
|
||
}
|
||
}
|
||
// SetCreatedBy sets the createdBy property value. Read-only. The user who created the plan.
|
||
func (m *PlannerPlan) SetCreatedBy(value IdentitySetable)() {
|
||
err := m.GetBackingStore().Set("createdBy", value)
|
||
if err != nil {
|
||
panic(err)
|
||
}
|
||
}
|
||
// SetCreatedDateTime sets the createdDateTime property value. Read-only. Date and time at which the plan is created. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z
|
||
func (m *PlannerPlan) SetCreatedDateTime(value *i336074805fc853987abe6f7fe3ad97a6a6f3077a16391fec744f671a015fbd7e.Time)() {
|
||
err := m.GetBackingStore().Set("createdDateTime", value)
|
||
if err != nil {
|
||
panic(err)
|
||
}
|
||
}
|
||
// SetDetails sets the details property value. Read-only. Nullable. Additional details about the plan.
|
||
func (m *PlannerPlan) SetDetails(value PlannerPlanDetailsable)() {
|
||
err := m.GetBackingStore().Set("details", value)
|
||
if err != nil {
|
||
panic(err)
|
||
}
|
||
}
|
||
// SetOwner sets the owner property value. The owner property
|
||
func (m *PlannerPlan) SetOwner(value *string)() {
|
||
err := m.GetBackingStore().Set("owner", value)
|
||
if err != nil {
|
||
panic(err)
|
||
}
|
||
}
|
||
// SetTasks sets the tasks property value. Read-only. Nullable. Collection of tasks in the plan.
|
||
func (m *PlannerPlan) SetTasks(value []PlannerTaskable)() {
|
||
err := m.GetBackingStore().Set("tasks", value)
|
||
if err != nil {
|
||
panic(err)
|
||
}
|
||
}
|
||
// SetTitle sets the title property value. Required. Title of the plan.
|
||
func (m *PlannerPlan) SetTitle(value *string)() {
|
||
err := m.GetBackingStore().Set("title", value)
|
||
if err != nil {
|
||
panic(err)
|
||
}
|
||
}
|
||
// PlannerPlanable
|
||
type PlannerPlanable interface {
|
||
Entityable
|
||
i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable
|
||
GetBuckets()([]PlannerBucketable)
|
||
GetContainer()(PlannerPlanContainerable)
|
||
GetCreatedBy()(IdentitySetable)
|
||
GetCreatedDateTime()(*i336074805fc853987abe6f7fe3ad97a6a6f3077a16391fec744f671a015fbd7e.Time)
|
||
GetDetails()(PlannerPlanDetailsable)
|
||
GetOwner()(*string)
|
||
GetTasks()([]PlannerTaskable)
|
||
GetTitle()(*string)
|
||
SetBuckets(value []PlannerBucketable)()
|
||
SetContainer(value PlannerPlanContainerable)()
|
||
SetCreatedBy(value IdentitySetable)()
|
||
SetCreatedDateTime(value *i336074805fc853987abe6f7fe3ad97a6a6f3077a16391fec744f671a015fbd7e.Time)()
|
||
SetDetails(value PlannerPlanDetailsable)()
|
||
SetOwner(value *string)()
|
||
SetTasks(value []PlannerTaskable)()
|
||
SetTitle(value *string)()
|
||
}
|