-
Notifications
You must be signed in to change notification settings - Fork 56
/
Copy pathmodel_synthetics_mobile_test_.go
465 lines (412 loc) · 13.9 KB
/
model_synthetics_mobile_test_.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
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
// Unless explicitly stated otherwise all files in this repository are licensed under the Apache-2.0 License.
// This product includes software developed at Datadog (https://www.datadoghq.com/).
// Copyright 2019-Present Datadog, Inc.
package datadogV1
import (
"fmt"
"github.com/DataDog/datadog-api-client-go/v2/api/datadog"
)
// SyntheticsMobileTest Object containing details about a Synthetic mobile test.
type SyntheticsMobileTest struct {
// Configuration object for a Synthetic mobile test.
Config SyntheticsMobileTestConfig `json:"config"`
// Array with the different device IDs used to run the test.
DeviceIds []string `json:"device_ids,omitempty"`
// Notification message associated with the test.
Message *string `json:"message,omitempty"`
// The associated monitor ID.
MonitorId *int64 `json:"monitor_id,omitempty"`
// Name of the test.
Name string `json:"name"`
// Object describing the extra options for a Synthetic test.
Options SyntheticsMobileTestOptions `json:"options"`
// The public ID of the test.
PublicId *string `json:"public_id,omitempty"`
// Define whether you want to start (`live`) or pause (`paused`) a
// Synthetic test.
Status *SyntheticsTestPauseStatus `json:"status,omitempty"`
// Array of steps for the test.
Steps []SyntheticsMobileStep `json:"steps,omitempty"`
// Array of tags attached to the test.
Tags []string `json:"tags,omitempty"`
// Type of the Synthetic test, `mobile`.
Type SyntheticsMobileTestType `json:"type"`
// UnparsedObject contains the raw value of the object if there was an error when deserializing into the struct
UnparsedObject map[string]interface{} `json:"-"`
AdditionalProperties map[string]interface{} `json:"-"`
}
// NewSyntheticsMobileTest instantiates a new SyntheticsMobileTest object.
// This constructor will assign default values to properties that have it defined,
// and makes sure properties required by API are set, but the set of arguments
// will change when the set of required properties is changed.
func NewSyntheticsMobileTest(config SyntheticsMobileTestConfig, name string, options SyntheticsMobileTestOptions, typeVar SyntheticsMobileTestType) *SyntheticsMobileTest {
this := SyntheticsMobileTest{}
this.Config = config
this.Name = name
this.Options = options
this.Type = typeVar
return &this
}
// NewSyntheticsMobileTestWithDefaults instantiates a new SyntheticsMobileTest object.
// This constructor will only assign default values to properties that have it defined,
// but it doesn't guarantee that properties required by API are set.
func NewSyntheticsMobileTestWithDefaults() *SyntheticsMobileTest {
this := SyntheticsMobileTest{}
var typeVar SyntheticsMobileTestType = SYNTHETICSMOBILETESTTYPE_MOBILE
this.Type = typeVar
return &this
}
// GetConfig returns the Config field value.
func (o *SyntheticsMobileTest) GetConfig() SyntheticsMobileTestConfig {
if o == nil {
var ret SyntheticsMobileTestConfig
return ret
}
return o.Config
}
// GetConfigOk returns a tuple with the Config field value
// and a boolean to check if the value has been set.
func (o *SyntheticsMobileTest) GetConfigOk() (*SyntheticsMobileTestConfig, bool) {
if o == nil {
return nil, false
}
return &o.Config, true
}
// SetConfig sets field value.
func (o *SyntheticsMobileTest) SetConfig(v SyntheticsMobileTestConfig) {
o.Config = v
}
// GetDeviceIds returns the DeviceIds field value if set, zero value otherwise.
func (o *SyntheticsMobileTest) GetDeviceIds() []string {
if o == nil || o.DeviceIds == nil {
var ret []string
return ret
}
return o.DeviceIds
}
// GetDeviceIdsOk returns a tuple with the DeviceIds field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *SyntheticsMobileTest) GetDeviceIdsOk() (*[]string, bool) {
if o == nil || o.DeviceIds == nil {
return nil, false
}
return &o.DeviceIds, true
}
// HasDeviceIds returns a boolean if a field has been set.
func (o *SyntheticsMobileTest) HasDeviceIds() bool {
return o != nil && o.DeviceIds != nil
}
// SetDeviceIds gets a reference to the given []string and assigns it to the DeviceIds field.
func (o *SyntheticsMobileTest) SetDeviceIds(v []string) {
o.DeviceIds = v
}
// GetMessage returns the Message field value if set, zero value otherwise.
func (o *SyntheticsMobileTest) GetMessage() string {
if o == nil || o.Message == nil {
var ret string
return ret
}
return *o.Message
}
// GetMessageOk returns a tuple with the Message field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *SyntheticsMobileTest) GetMessageOk() (*string, bool) {
if o == nil || o.Message == nil {
return nil, false
}
return o.Message, true
}
// HasMessage returns a boolean if a field has been set.
func (o *SyntheticsMobileTest) HasMessage() bool {
return o != nil && o.Message != nil
}
// SetMessage gets a reference to the given string and assigns it to the Message field.
func (o *SyntheticsMobileTest) SetMessage(v string) {
o.Message = &v
}
// GetMonitorId returns the MonitorId field value if set, zero value otherwise.
func (o *SyntheticsMobileTest) GetMonitorId() int64 {
if o == nil || o.MonitorId == nil {
var ret int64
return ret
}
return *o.MonitorId
}
// GetMonitorIdOk returns a tuple with the MonitorId field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *SyntheticsMobileTest) GetMonitorIdOk() (*int64, bool) {
if o == nil || o.MonitorId == nil {
return nil, false
}
return o.MonitorId, true
}
// HasMonitorId returns a boolean if a field has been set.
func (o *SyntheticsMobileTest) HasMonitorId() bool {
return o != nil && o.MonitorId != nil
}
// SetMonitorId gets a reference to the given int64 and assigns it to the MonitorId field.
func (o *SyntheticsMobileTest) SetMonitorId(v int64) {
o.MonitorId = &v
}
// GetName returns the Name field value.
func (o *SyntheticsMobileTest) GetName() string {
if o == nil {
var ret string
return ret
}
return o.Name
}
// GetNameOk returns a tuple with the Name field value
// and a boolean to check if the value has been set.
func (o *SyntheticsMobileTest) GetNameOk() (*string, bool) {
if o == nil {
return nil, false
}
return &o.Name, true
}
// SetName sets field value.
func (o *SyntheticsMobileTest) SetName(v string) {
o.Name = v
}
// GetOptions returns the Options field value.
func (o *SyntheticsMobileTest) GetOptions() SyntheticsMobileTestOptions {
if o == nil {
var ret SyntheticsMobileTestOptions
return ret
}
return o.Options
}
// GetOptionsOk returns a tuple with the Options field value
// and a boolean to check if the value has been set.
func (o *SyntheticsMobileTest) GetOptionsOk() (*SyntheticsMobileTestOptions, bool) {
if o == nil {
return nil, false
}
return &o.Options, true
}
// SetOptions sets field value.
func (o *SyntheticsMobileTest) SetOptions(v SyntheticsMobileTestOptions) {
o.Options = v
}
// GetPublicId returns the PublicId field value if set, zero value otherwise.
func (o *SyntheticsMobileTest) GetPublicId() string {
if o == nil || o.PublicId == nil {
var ret string
return ret
}
return *o.PublicId
}
// GetPublicIdOk returns a tuple with the PublicId field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *SyntheticsMobileTest) GetPublicIdOk() (*string, bool) {
if o == nil || o.PublicId == nil {
return nil, false
}
return o.PublicId, true
}
// HasPublicId returns a boolean if a field has been set.
func (o *SyntheticsMobileTest) HasPublicId() bool {
return o != nil && o.PublicId != nil
}
// SetPublicId gets a reference to the given string and assigns it to the PublicId field.
func (o *SyntheticsMobileTest) SetPublicId(v string) {
o.PublicId = &v
}
// GetStatus returns the Status field value if set, zero value otherwise.
func (o *SyntheticsMobileTest) GetStatus() SyntheticsTestPauseStatus {
if o == nil || o.Status == nil {
var ret SyntheticsTestPauseStatus
return ret
}
return *o.Status
}
// GetStatusOk returns a tuple with the Status field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *SyntheticsMobileTest) GetStatusOk() (*SyntheticsTestPauseStatus, bool) {
if o == nil || o.Status == nil {
return nil, false
}
return o.Status, true
}
// HasStatus returns a boolean if a field has been set.
func (o *SyntheticsMobileTest) HasStatus() bool {
return o != nil && o.Status != nil
}
// SetStatus gets a reference to the given SyntheticsTestPauseStatus and assigns it to the Status field.
func (o *SyntheticsMobileTest) SetStatus(v SyntheticsTestPauseStatus) {
o.Status = &v
}
// GetSteps returns the Steps field value if set, zero value otherwise.
func (o *SyntheticsMobileTest) GetSteps() []SyntheticsMobileStep {
if o == nil || o.Steps == nil {
var ret []SyntheticsMobileStep
return ret
}
return o.Steps
}
// GetStepsOk returns a tuple with the Steps field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *SyntheticsMobileTest) GetStepsOk() (*[]SyntheticsMobileStep, bool) {
if o == nil || o.Steps == nil {
return nil, false
}
return &o.Steps, true
}
// HasSteps returns a boolean if a field has been set.
func (o *SyntheticsMobileTest) HasSteps() bool {
return o != nil && o.Steps != nil
}
// SetSteps gets a reference to the given []SyntheticsMobileStep and assigns it to the Steps field.
func (o *SyntheticsMobileTest) SetSteps(v []SyntheticsMobileStep) {
o.Steps = v
}
// GetTags returns the Tags field value if set, zero value otherwise.
func (o *SyntheticsMobileTest) GetTags() []string {
if o == nil || o.Tags == nil {
var ret []string
return ret
}
return o.Tags
}
// GetTagsOk returns a tuple with the Tags field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *SyntheticsMobileTest) GetTagsOk() (*[]string, bool) {
if o == nil || o.Tags == nil {
return nil, false
}
return &o.Tags, true
}
// HasTags returns a boolean if a field has been set.
func (o *SyntheticsMobileTest) HasTags() bool {
return o != nil && o.Tags != nil
}
// SetTags gets a reference to the given []string and assigns it to the Tags field.
func (o *SyntheticsMobileTest) SetTags(v []string) {
o.Tags = v
}
// GetType returns the Type field value.
func (o *SyntheticsMobileTest) GetType() SyntheticsMobileTestType {
if o == nil {
var ret SyntheticsMobileTestType
return ret
}
return o.Type
}
// GetTypeOk returns a tuple with the Type field value
// and a boolean to check if the value has been set.
func (o *SyntheticsMobileTest) GetTypeOk() (*SyntheticsMobileTestType, bool) {
if o == nil {
return nil, false
}
return &o.Type, true
}
// SetType sets field value.
func (o *SyntheticsMobileTest) SetType(v SyntheticsMobileTestType) {
o.Type = v
}
// MarshalJSON serializes the struct using spec logic.
func (o SyntheticsMobileTest) MarshalJSON() ([]byte, error) {
toSerialize := map[string]interface{}{}
if o.UnparsedObject != nil {
return datadog.Marshal(o.UnparsedObject)
}
toSerialize["config"] = o.Config
if o.DeviceIds != nil {
toSerialize["device_ids"] = o.DeviceIds
}
if o.Message != nil {
toSerialize["message"] = o.Message
}
if o.MonitorId != nil {
toSerialize["monitor_id"] = o.MonitorId
}
toSerialize["name"] = o.Name
toSerialize["options"] = o.Options
if o.PublicId != nil {
toSerialize["public_id"] = o.PublicId
}
if o.Status != nil {
toSerialize["status"] = o.Status
}
if o.Steps != nil {
toSerialize["steps"] = o.Steps
}
if o.Tags != nil {
toSerialize["tags"] = o.Tags
}
toSerialize["type"] = o.Type
for key, value := range o.AdditionalProperties {
toSerialize[key] = value
}
return datadog.Marshal(toSerialize)
}
// UnmarshalJSON deserializes the given payload.
func (o *SyntheticsMobileTest) UnmarshalJSON(bytes []byte) (err error) {
all := struct {
Config *SyntheticsMobileTestConfig `json:"config"`
DeviceIds []string `json:"device_ids,omitempty"`
Message *string `json:"message,omitempty"`
MonitorId *int64 `json:"monitor_id,omitempty"`
Name *string `json:"name"`
Options *SyntheticsMobileTestOptions `json:"options"`
PublicId *string `json:"public_id,omitempty"`
Status *SyntheticsTestPauseStatus `json:"status,omitempty"`
Steps []SyntheticsMobileStep `json:"steps,omitempty"`
Tags []string `json:"tags,omitempty"`
Type *SyntheticsMobileTestType `json:"type"`
}{}
if err = datadog.Unmarshal(bytes, &all); err != nil {
return datadog.Unmarshal(bytes, &o.UnparsedObject)
}
if all.Config == nil {
return fmt.Errorf("required field config missing")
}
if all.Name == nil {
return fmt.Errorf("required field name missing")
}
if all.Options == nil {
return fmt.Errorf("required field options missing")
}
if all.Type == nil {
return fmt.Errorf("required field type missing")
}
additionalProperties := make(map[string]interface{})
if err = datadog.Unmarshal(bytes, &additionalProperties); err == nil {
datadog.DeleteKeys(additionalProperties, &[]string{"config", "device_ids", "message", "monitor_id", "name", "options", "public_id", "status", "steps", "tags", "type"})
} else {
return err
}
hasInvalidField := false
if all.Config.UnparsedObject != nil && o.UnparsedObject == nil {
hasInvalidField = true
}
o.Config = *all.Config
o.DeviceIds = all.DeviceIds
o.Message = all.Message
o.MonitorId = all.MonitorId
o.Name = *all.Name
if all.Options.UnparsedObject != nil && o.UnparsedObject == nil {
hasInvalidField = true
}
o.Options = *all.Options
o.PublicId = all.PublicId
if all.Status != nil && !all.Status.IsValid() {
hasInvalidField = true
} else {
o.Status = all.Status
}
o.Steps = all.Steps
o.Tags = all.Tags
if !all.Type.IsValid() {
hasInvalidField = true
} else {
o.Type = *all.Type
}
if len(additionalProperties) > 0 {
o.AdditionalProperties = additionalProperties
}
if hasInvalidField {
return datadog.Unmarshal(bytes, &o.UnparsedObject)
}
return nil
}