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

128 lines
5.1 KiB
Go

package models
import (
i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91 "github.com/microsoft/kiota-abstractions-go/serialization"
)
// AttackSimulationRoot
type AttackSimulationRoot struct {
Entity
}
// NewAttackSimulationRoot instantiates a new attackSimulationRoot and sets the default values.
func NewAttackSimulationRoot()(*AttackSimulationRoot) {
m := &AttackSimulationRoot{
Entity: *NewEntity(),
}
return m
}
// CreateAttackSimulationRootFromDiscriminatorValue creates a new instance of the appropriate class based on discriminator value
func CreateAttackSimulationRootFromDiscriminatorValue(parseNode i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode)(i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable, error) {
return NewAttackSimulationRoot(), nil
}
// GetFieldDeserializers the deserialization information for the current model
func (m *AttackSimulationRoot) GetFieldDeserializers()(map[string]func(i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode)(error)) {
res := m.Entity.GetFieldDeserializers()
res["simulationAutomations"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error {
val, err := n.GetCollectionOfObjectValues(CreateSimulationAutomationFromDiscriminatorValue)
if err != nil {
return err
}
if val != nil {
res := make([]SimulationAutomationable, len(val))
for i, v := range val {
res[i] = v.(SimulationAutomationable)
}
m.SetSimulationAutomations(res)
}
return nil
}
res["simulations"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error {
val, err := n.GetCollectionOfObjectValues(CreateSimulationFromDiscriminatorValue)
if err != nil {
return err
}
if val != nil {
res := make([]Simulationable, len(val))
for i, v := range val {
res[i] = v.(Simulationable)
}
m.SetSimulations(res)
}
return nil
}
return res
}
// GetSimulationAutomations gets the simulationAutomations property value. Represents simulation automation created to run on a tenant.
func (m *AttackSimulationRoot) GetSimulationAutomations()([]SimulationAutomationable) {
val, err := m.GetBackingStore().Get("simulationAutomations")
if err != nil {
panic(err)
}
if val != nil {
return val.([]SimulationAutomationable)
}
return nil
}
// GetSimulations gets the simulations property value. Represents an attack simulation training campaign in a tenant.
func (m *AttackSimulationRoot) GetSimulations()([]Simulationable) {
val, err := m.GetBackingStore().Get("simulations")
if err != nil {
panic(err)
}
if val != nil {
return val.([]Simulationable)
}
return nil
}
// Serialize serializes information the current object
func (m *AttackSimulationRoot) Serialize(writer i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.SerializationWriter)(error) {
err := m.Entity.Serialize(writer)
if err != nil {
return err
}
if m.GetSimulationAutomations() != nil {
cast := make([]i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable, len(m.GetSimulationAutomations()))
for i, v := range m.GetSimulationAutomations() {
cast[i] = v.(i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable)
}
err = writer.WriteCollectionOfObjectValues("simulationAutomations", cast)
if err != nil {
return err
}
}
if m.GetSimulations() != nil {
cast := make([]i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable, len(m.GetSimulations()))
for i, v := range m.GetSimulations() {
cast[i] = v.(i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable)
}
err = writer.WriteCollectionOfObjectValues("simulations", cast)
if err != nil {
return err
}
}
return nil
}
// SetSimulationAutomations sets the simulationAutomations property value. Represents simulation automation created to run on a tenant.
func (m *AttackSimulationRoot) SetSimulationAutomations(value []SimulationAutomationable)() {
err := m.GetBackingStore().Set("simulationAutomations", value)
if err != nil {
panic(err)
}
}
// SetSimulations sets the simulations property value. Represents an attack simulation training campaign in a tenant.
func (m *AttackSimulationRoot) SetSimulations(value []Simulationable)() {
err := m.GetBackingStore().Set("simulations", value)
if err != nil {
panic(err)
}
}
// AttackSimulationRootable
type AttackSimulationRootable interface {
Entityable
i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable
GetSimulationAutomations()([]SimulationAutomationable)
GetSimulations()([]Simulationable)
SetSimulationAutomations(value []SimulationAutomationable)()
SetSimulations(value []Simulationable)()
}