-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathattack_simulation_root.go
431 lines (429 loc) · 16.5 KB
/
attack_simulation_root.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
package models
import (
i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91 "github.com/microsoft/kiota-abstractions-go/serialization"
)
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
// returns a Parsable when successful
func CreateAttackSimulationRootFromDiscriminatorValue(parseNode i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode)(i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable, error) {
return NewAttackSimulationRoot(), nil
}
// GetEndUserNotifications gets the endUserNotifications property value. Represents an end user's notification for an attack simulation training.
// returns a []EndUserNotificationable when successful
func (m *AttackSimulationRoot) GetEndUserNotifications()([]EndUserNotificationable) {
val, err := m.GetBackingStore().Get("endUserNotifications")
if err != nil {
panic(err)
}
if val != nil {
return val.([]EndUserNotificationable)
}
return nil
}
// GetFieldDeserializers the deserialization information for the current model
// returns a map[string]func(i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode)(error) when successful
func (m *AttackSimulationRoot) GetFieldDeserializers()(map[string]func(i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode)(error)) {
res := m.Entity.GetFieldDeserializers()
res["endUserNotifications"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error {
val, err := n.GetCollectionOfObjectValues(CreateEndUserNotificationFromDiscriminatorValue)
if err != nil {
return err
}
if val != nil {
res := make([]EndUserNotificationable, len(val))
for i, v := range val {
if v != nil {
res[i] = v.(EndUserNotificationable)
}
}
m.SetEndUserNotifications(res)
}
return nil
}
res["landingPages"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error {
val, err := n.GetCollectionOfObjectValues(CreateLandingPageFromDiscriminatorValue)
if err != nil {
return err
}
if val != nil {
res := make([]LandingPageable, len(val))
for i, v := range val {
if v != nil {
res[i] = v.(LandingPageable)
}
}
m.SetLandingPages(res)
}
return nil
}
res["loginPages"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error {
val, err := n.GetCollectionOfObjectValues(CreateLoginPageFromDiscriminatorValue)
if err != nil {
return err
}
if val != nil {
res := make([]LoginPageable, len(val))
for i, v := range val {
if v != nil {
res[i] = v.(LoginPageable)
}
}
m.SetLoginPages(res)
}
return nil
}
res["operations"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error {
val, err := n.GetCollectionOfObjectValues(CreateAttackSimulationOperationFromDiscriminatorValue)
if err != nil {
return err
}
if val != nil {
res := make([]AttackSimulationOperationable, len(val))
for i, v := range val {
if v != nil {
res[i] = v.(AttackSimulationOperationable)
}
}
m.SetOperations(res)
}
return nil
}
res["payloads"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error {
val, err := n.GetCollectionOfObjectValues(CreatePayloadFromDiscriminatorValue)
if err != nil {
return err
}
if val != nil {
res := make([]Payloadable, len(val))
for i, v := range val {
if v != nil {
res[i] = v.(Payloadable)
}
}
m.SetPayloads(res)
}
return nil
}
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 {
if v != nil {
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 {
if v != nil {
res[i] = v.(Simulationable)
}
}
m.SetSimulations(res)
}
return nil
}
res["trainings"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error {
val, err := n.GetCollectionOfObjectValues(CreateTrainingFromDiscriminatorValue)
if err != nil {
return err
}
if val != nil {
res := make([]Trainingable, len(val))
for i, v := range val {
if v != nil {
res[i] = v.(Trainingable)
}
}
m.SetTrainings(res)
}
return nil
}
return res
}
// GetLandingPages gets the landingPages property value. Represents an attack simulation training landing page.
// returns a []LandingPageable when successful
func (m *AttackSimulationRoot) GetLandingPages()([]LandingPageable) {
val, err := m.GetBackingStore().Get("landingPages")
if err != nil {
panic(err)
}
if val != nil {
return val.([]LandingPageable)
}
return nil
}
// GetLoginPages gets the loginPages property value. Represents an attack simulation training login page.
// returns a []LoginPageable when successful
func (m *AttackSimulationRoot) GetLoginPages()([]LoginPageable) {
val, err := m.GetBackingStore().Get("loginPages")
if err != nil {
panic(err)
}
if val != nil {
return val.([]LoginPageable)
}
return nil
}
// GetOperations gets the operations property value. Represents an attack simulation training operation.
// returns a []AttackSimulationOperationable when successful
func (m *AttackSimulationRoot) GetOperations()([]AttackSimulationOperationable) {
val, err := m.GetBackingStore().Get("operations")
if err != nil {
panic(err)
}
if val != nil {
return val.([]AttackSimulationOperationable)
}
return nil
}
// GetPayloads gets the payloads property value. Represents an attack simulation training campaign payload in a tenant.
// returns a []Payloadable when successful
func (m *AttackSimulationRoot) GetPayloads()([]Payloadable) {
val, err := m.GetBackingStore().Get("payloads")
if err != nil {
panic(err)
}
if val != nil {
return val.([]Payloadable)
}
return nil
}
// GetSimulationAutomations gets the simulationAutomations property value. Represents simulation automation created to run on a tenant.
// returns a []SimulationAutomationable when successful
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.
// returns a []Simulationable when successful
func (m *AttackSimulationRoot) GetSimulations()([]Simulationable) {
val, err := m.GetBackingStore().Get("simulations")
if err != nil {
panic(err)
}
if val != nil {
return val.([]Simulationable)
}
return nil
}
// GetTrainings gets the trainings property value. Represents details about attack simulation trainings.
// returns a []Trainingable when successful
func (m *AttackSimulationRoot) GetTrainings()([]Trainingable) {
val, err := m.GetBackingStore().Get("trainings")
if err != nil {
panic(err)
}
if val != nil {
return val.([]Trainingable)
}
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.GetEndUserNotifications() != nil {
cast := make([]i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable, len(m.GetEndUserNotifications()))
for i, v := range m.GetEndUserNotifications() {
if v != nil {
cast[i] = v.(i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable)
}
}
err = writer.WriteCollectionOfObjectValues("endUserNotifications", cast)
if err != nil {
return err
}
}
if m.GetLandingPages() != nil {
cast := make([]i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable, len(m.GetLandingPages()))
for i, v := range m.GetLandingPages() {
if v != nil {
cast[i] = v.(i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable)
}
}
err = writer.WriteCollectionOfObjectValues("landingPages", cast)
if err != nil {
return err
}
}
if m.GetLoginPages() != nil {
cast := make([]i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable, len(m.GetLoginPages()))
for i, v := range m.GetLoginPages() {
if v != nil {
cast[i] = v.(i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable)
}
}
err = writer.WriteCollectionOfObjectValues("loginPages", cast)
if err != nil {
return err
}
}
if m.GetOperations() != nil {
cast := make([]i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable, len(m.GetOperations()))
for i, v := range m.GetOperations() {
if v != nil {
cast[i] = v.(i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable)
}
}
err = writer.WriteCollectionOfObjectValues("operations", cast)
if err != nil {
return err
}
}
if m.GetPayloads() != nil {
cast := make([]i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable, len(m.GetPayloads()))
for i, v := range m.GetPayloads() {
if v != nil {
cast[i] = v.(i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable)
}
}
err = writer.WriteCollectionOfObjectValues("payloads", cast)
if err != nil {
return err
}
}
if m.GetSimulationAutomations() != nil {
cast := make([]i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable, len(m.GetSimulationAutomations()))
for i, v := range m.GetSimulationAutomations() {
if v != nil {
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() {
if v != nil {
cast[i] = v.(i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable)
}
}
err = writer.WriteCollectionOfObjectValues("simulations", cast)
if err != nil {
return err
}
}
if m.GetTrainings() != nil {
cast := make([]i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable, len(m.GetTrainings()))
for i, v := range m.GetTrainings() {
if v != nil {
cast[i] = v.(i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable)
}
}
err = writer.WriteCollectionOfObjectValues("trainings", cast)
if err != nil {
return err
}
}
return nil
}
// SetEndUserNotifications sets the endUserNotifications property value. Represents an end user's notification for an attack simulation training.
func (m *AttackSimulationRoot) SetEndUserNotifications(value []EndUserNotificationable)() {
err := m.GetBackingStore().Set("endUserNotifications", value)
if err != nil {
panic(err)
}
}
// SetLandingPages sets the landingPages property value. Represents an attack simulation training landing page.
func (m *AttackSimulationRoot) SetLandingPages(value []LandingPageable)() {
err := m.GetBackingStore().Set("landingPages", value)
if err != nil {
panic(err)
}
}
// SetLoginPages sets the loginPages property value. Represents an attack simulation training login page.
func (m *AttackSimulationRoot) SetLoginPages(value []LoginPageable)() {
err := m.GetBackingStore().Set("loginPages", value)
if err != nil {
panic(err)
}
}
// SetOperations sets the operations property value. Represents an attack simulation training operation.
func (m *AttackSimulationRoot) SetOperations(value []AttackSimulationOperationable)() {
err := m.GetBackingStore().Set("operations", value)
if err != nil {
panic(err)
}
}
// SetPayloads sets the payloads property value. Represents an attack simulation training campaign payload in a tenant.
func (m *AttackSimulationRoot) SetPayloads(value []Payloadable)() {
err := m.GetBackingStore().Set("payloads", value)
if err != nil {
panic(err)
}
}
// 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)
}
}
// SetTrainings sets the trainings property value. Represents details about attack simulation trainings.
func (m *AttackSimulationRoot) SetTrainings(value []Trainingable)() {
err := m.GetBackingStore().Set("trainings", value)
if err != nil {
panic(err)
}
}
type AttackSimulationRootable interface {
Entityable
i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable
GetEndUserNotifications()([]EndUserNotificationable)
GetLandingPages()([]LandingPageable)
GetLoginPages()([]LoginPageable)
GetOperations()([]AttackSimulationOperationable)
GetPayloads()([]Payloadable)
GetSimulationAutomations()([]SimulationAutomationable)
GetSimulations()([]Simulationable)
GetTrainings()([]Trainingable)
SetEndUserNotifications(value []EndUserNotificationable)()
SetLandingPages(value []LandingPageable)()
SetLoginPages(value []LoginPageable)()
SetOperations(value []AttackSimulationOperationable)()
SetPayloads(value []Payloadable)()
SetSimulationAutomations(value []SimulationAutomationable)()
SetSimulations(value []Simulationable)()
SetTrainings(value []Trainingable)()
}