-
Notifications
You must be signed in to change notification settings - Fork 57
/
model_scatter_plot_request.go
451 lines (399 loc) · 15.2 KB
/
model_scatter_plot_request.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
// 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 (
"github.com/DataDog/datadog-api-client-go/v2/api/datadog"
)
// ScatterPlotRequest Updated scatter plot.
type ScatterPlotRequest struct {
// Aggregator used for the request.
Aggregator *ScatterplotWidgetAggregator `json:"aggregator,omitempty"`
// The log query.
ApmQuery *LogQueryDefinition `json:"apm_query,omitempty"`
// The log query.
EventQuery *LogQueryDefinition `json:"event_query,omitempty"`
// The log query.
LogQuery *LogQueryDefinition `json:"log_query,omitempty"`
// The log query.
NetworkQuery *LogQueryDefinition `json:"network_query,omitempty"`
// The process query to use in the widget.
ProcessQuery *ProcessQueryDefinition `json:"process_query,omitempty"`
// The log query.
ProfileMetricsQuery *LogQueryDefinition `json:"profile_metrics_query,omitempty"`
// Query definition.
Q *string `json:"q,omitempty"`
// The log query.
RumQuery *LogQueryDefinition `json:"rum_query,omitempty"`
// The log query.
SecurityQuery *LogQueryDefinition `json:"security_query,omitempty"`
// 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{}
}
// NewScatterPlotRequest instantiates a new ScatterPlotRequest 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 NewScatterPlotRequest() *ScatterPlotRequest {
this := ScatterPlotRequest{}
return &this
}
// NewScatterPlotRequestWithDefaults instantiates a new ScatterPlotRequest 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 NewScatterPlotRequestWithDefaults() *ScatterPlotRequest {
this := ScatterPlotRequest{}
return &this
}
// GetAggregator returns the Aggregator field value if set, zero value otherwise.
func (o *ScatterPlotRequest) GetAggregator() ScatterplotWidgetAggregator {
if o == nil || o.Aggregator == nil {
var ret ScatterplotWidgetAggregator
return ret
}
return *o.Aggregator
}
// GetAggregatorOk returns a tuple with the Aggregator field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *ScatterPlotRequest) GetAggregatorOk() (*ScatterplotWidgetAggregator, bool) {
if o == nil || o.Aggregator == nil {
return nil, false
}
return o.Aggregator, true
}
// HasAggregator returns a boolean if a field has been set.
func (o *ScatterPlotRequest) HasAggregator() bool {
return o != nil && o.Aggregator != nil
}
// SetAggregator gets a reference to the given ScatterplotWidgetAggregator and assigns it to the Aggregator field.
func (o *ScatterPlotRequest) SetAggregator(v ScatterplotWidgetAggregator) {
o.Aggregator = &v
}
// GetApmQuery returns the ApmQuery field value if set, zero value otherwise.
func (o *ScatterPlotRequest) GetApmQuery() LogQueryDefinition {
if o == nil || o.ApmQuery == nil {
var ret LogQueryDefinition
return ret
}
return *o.ApmQuery
}
// GetApmQueryOk returns a tuple with the ApmQuery field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *ScatterPlotRequest) GetApmQueryOk() (*LogQueryDefinition, bool) {
if o == nil || o.ApmQuery == nil {
return nil, false
}
return o.ApmQuery, true
}
// HasApmQuery returns a boolean if a field has been set.
func (o *ScatterPlotRequest) HasApmQuery() bool {
return o != nil && o.ApmQuery != nil
}
// SetApmQuery gets a reference to the given LogQueryDefinition and assigns it to the ApmQuery field.
func (o *ScatterPlotRequest) SetApmQuery(v LogQueryDefinition) {
o.ApmQuery = &v
}
// GetEventQuery returns the EventQuery field value if set, zero value otherwise.
func (o *ScatterPlotRequest) GetEventQuery() LogQueryDefinition {
if o == nil || o.EventQuery == nil {
var ret LogQueryDefinition
return ret
}
return *o.EventQuery
}
// GetEventQueryOk returns a tuple with the EventQuery field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *ScatterPlotRequest) GetEventQueryOk() (*LogQueryDefinition, bool) {
if o == nil || o.EventQuery == nil {
return nil, false
}
return o.EventQuery, true
}
// HasEventQuery returns a boolean if a field has been set.
func (o *ScatterPlotRequest) HasEventQuery() bool {
return o != nil && o.EventQuery != nil
}
// SetEventQuery gets a reference to the given LogQueryDefinition and assigns it to the EventQuery field.
func (o *ScatterPlotRequest) SetEventQuery(v LogQueryDefinition) {
o.EventQuery = &v
}
// GetLogQuery returns the LogQuery field value if set, zero value otherwise.
func (o *ScatterPlotRequest) GetLogQuery() LogQueryDefinition {
if o == nil || o.LogQuery == nil {
var ret LogQueryDefinition
return ret
}
return *o.LogQuery
}
// GetLogQueryOk returns a tuple with the LogQuery field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *ScatterPlotRequest) GetLogQueryOk() (*LogQueryDefinition, bool) {
if o == nil || o.LogQuery == nil {
return nil, false
}
return o.LogQuery, true
}
// HasLogQuery returns a boolean if a field has been set.
func (o *ScatterPlotRequest) HasLogQuery() bool {
return o != nil && o.LogQuery != nil
}
// SetLogQuery gets a reference to the given LogQueryDefinition and assigns it to the LogQuery field.
func (o *ScatterPlotRequest) SetLogQuery(v LogQueryDefinition) {
o.LogQuery = &v
}
// GetNetworkQuery returns the NetworkQuery field value if set, zero value otherwise.
func (o *ScatterPlotRequest) GetNetworkQuery() LogQueryDefinition {
if o == nil || o.NetworkQuery == nil {
var ret LogQueryDefinition
return ret
}
return *o.NetworkQuery
}
// GetNetworkQueryOk returns a tuple with the NetworkQuery field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *ScatterPlotRequest) GetNetworkQueryOk() (*LogQueryDefinition, bool) {
if o == nil || o.NetworkQuery == nil {
return nil, false
}
return o.NetworkQuery, true
}
// HasNetworkQuery returns a boolean if a field has been set.
func (o *ScatterPlotRequest) HasNetworkQuery() bool {
return o != nil && o.NetworkQuery != nil
}
// SetNetworkQuery gets a reference to the given LogQueryDefinition and assigns it to the NetworkQuery field.
func (o *ScatterPlotRequest) SetNetworkQuery(v LogQueryDefinition) {
o.NetworkQuery = &v
}
// GetProcessQuery returns the ProcessQuery field value if set, zero value otherwise.
func (o *ScatterPlotRequest) GetProcessQuery() ProcessQueryDefinition {
if o == nil || o.ProcessQuery == nil {
var ret ProcessQueryDefinition
return ret
}
return *o.ProcessQuery
}
// GetProcessQueryOk returns a tuple with the ProcessQuery field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *ScatterPlotRequest) GetProcessQueryOk() (*ProcessQueryDefinition, bool) {
if o == nil || o.ProcessQuery == nil {
return nil, false
}
return o.ProcessQuery, true
}
// HasProcessQuery returns a boolean if a field has been set.
func (o *ScatterPlotRequest) HasProcessQuery() bool {
return o != nil && o.ProcessQuery != nil
}
// SetProcessQuery gets a reference to the given ProcessQueryDefinition and assigns it to the ProcessQuery field.
func (o *ScatterPlotRequest) SetProcessQuery(v ProcessQueryDefinition) {
o.ProcessQuery = &v
}
// GetProfileMetricsQuery returns the ProfileMetricsQuery field value if set, zero value otherwise.
func (o *ScatterPlotRequest) GetProfileMetricsQuery() LogQueryDefinition {
if o == nil || o.ProfileMetricsQuery == nil {
var ret LogQueryDefinition
return ret
}
return *o.ProfileMetricsQuery
}
// GetProfileMetricsQueryOk returns a tuple with the ProfileMetricsQuery field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *ScatterPlotRequest) GetProfileMetricsQueryOk() (*LogQueryDefinition, bool) {
if o == nil || o.ProfileMetricsQuery == nil {
return nil, false
}
return o.ProfileMetricsQuery, true
}
// HasProfileMetricsQuery returns a boolean if a field has been set.
func (o *ScatterPlotRequest) HasProfileMetricsQuery() bool {
return o != nil && o.ProfileMetricsQuery != nil
}
// SetProfileMetricsQuery gets a reference to the given LogQueryDefinition and assigns it to the ProfileMetricsQuery field.
func (o *ScatterPlotRequest) SetProfileMetricsQuery(v LogQueryDefinition) {
o.ProfileMetricsQuery = &v
}
// GetQ returns the Q field value if set, zero value otherwise.
func (o *ScatterPlotRequest) GetQ() string {
if o == nil || o.Q == nil {
var ret string
return ret
}
return *o.Q
}
// GetQOk returns a tuple with the Q field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *ScatterPlotRequest) GetQOk() (*string, bool) {
if o == nil || o.Q == nil {
return nil, false
}
return o.Q, true
}
// HasQ returns a boolean if a field has been set.
func (o *ScatterPlotRequest) HasQ() bool {
return o != nil && o.Q != nil
}
// SetQ gets a reference to the given string and assigns it to the Q field.
func (o *ScatterPlotRequest) SetQ(v string) {
o.Q = &v
}
// GetRumQuery returns the RumQuery field value if set, zero value otherwise.
func (o *ScatterPlotRequest) GetRumQuery() LogQueryDefinition {
if o == nil || o.RumQuery == nil {
var ret LogQueryDefinition
return ret
}
return *o.RumQuery
}
// GetRumQueryOk returns a tuple with the RumQuery field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *ScatterPlotRequest) GetRumQueryOk() (*LogQueryDefinition, bool) {
if o == nil || o.RumQuery == nil {
return nil, false
}
return o.RumQuery, true
}
// HasRumQuery returns a boolean if a field has been set.
func (o *ScatterPlotRequest) HasRumQuery() bool {
return o != nil && o.RumQuery != nil
}
// SetRumQuery gets a reference to the given LogQueryDefinition and assigns it to the RumQuery field.
func (o *ScatterPlotRequest) SetRumQuery(v LogQueryDefinition) {
o.RumQuery = &v
}
// GetSecurityQuery returns the SecurityQuery field value if set, zero value otherwise.
func (o *ScatterPlotRequest) GetSecurityQuery() LogQueryDefinition {
if o == nil || o.SecurityQuery == nil {
var ret LogQueryDefinition
return ret
}
return *o.SecurityQuery
}
// GetSecurityQueryOk returns a tuple with the SecurityQuery field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *ScatterPlotRequest) GetSecurityQueryOk() (*LogQueryDefinition, bool) {
if o == nil || o.SecurityQuery == nil {
return nil, false
}
return o.SecurityQuery, true
}
// HasSecurityQuery returns a boolean if a field has been set.
func (o *ScatterPlotRequest) HasSecurityQuery() bool {
return o != nil && o.SecurityQuery != nil
}
// SetSecurityQuery gets a reference to the given LogQueryDefinition and assigns it to the SecurityQuery field.
func (o *ScatterPlotRequest) SetSecurityQuery(v LogQueryDefinition) {
o.SecurityQuery = &v
}
// MarshalJSON serializes the struct using spec logic.
func (o ScatterPlotRequest) MarshalJSON() ([]byte, error) {
toSerialize := map[string]interface{}{}
if o.UnparsedObject != nil {
return datadog.Marshal(o.UnparsedObject)
}
if o.Aggregator != nil {
toSerialize["aggregator"] = o.Aggregator
}
if o.ApmQuery != nil {
toSerialize["apm_query"] = o.ApmQuery
}
if o.EventQuery != nil {
toSerialize["event_query"] = o.EventQuery
}
if o.LogQuery != nil {
toSerialize["log_query"] = o.LogQuery
}
if o.NetworkQuery != nil {
toSerialize["network_query"] = o.NetworkQuery
}
if o.ProcessQuery != nil {
toSerialize["process_query"] = o.ProcessQuery
}
if o.ProfileMetricsQuery != nil {
toSerialize["profile_metrics_query"] = o.ProfileMetricsQuery
}
if o.Q != nil {
toSerialize["q"] = o.Q
}
if o.RumQuery != nil {
toSerialize["rum_query"] = o.RumQuery
}
if o.SecurityQuery != nil {
toSerialize["security_query"] = o.SecurityQuery
}
for key, value := range o.AdditionalProperties {
toSerialize[key] = value
}
return datadog.Marshal(toSerialize)
}
// UnmarshalJSON deserializes the given payload.
func (o *ScatterPlotRequest) UnmarshalJSON(bytes []byte) (err error) {
all := struct {
Aggregator *ScatterplotWidgetAggregator `json:"aggregator,omitempty"`
ApmQuery *LogQueryDefinition `json:"apm_query,omitempty"`
EventQuery *LogQueryDefinition `json:"event_query,omitempty"`
LogQuery *LogQueryDefinition `json:"log_query,omitempty"`
NetworkQuery *LogQueryDefinition `json:"network_query,omitempty"`
ProcessQuery *ProcessQueryDefinition `json:"process_query,omitempty"`
ProfileMetricsQuery *LogQueryDefinition `json:"profile_metrics_query,omitempty"`
Q *string `json:"q,omitempty"`
RumQuery *LogQueryDefinition `json:"rum_query,omitempty"`
SecurityQuery *LogQueryDefinition `json:"security_query,omitempty"`
}{}
if err = datadog.Unmarshal(bytes, &all); err != nil {
return datadog.Unmarshal(bytes, &o.UnparsedObject)
}
additionalProperties := make(map[string]interface{})
if err = datadog.Unmarshal(bytes, &additionalProperties); err == nil {
datadog.DeleteKeys(additionalProperties, &[]string{"aggregator", "apm_query", "event_query", "log_query", "network_query", "process_query", "profile_metrics_query", "q", "rum_query", "security_query"})
} else {
return err
}
hasInvalidField := false
if all.Aggregator != nil && !all.Aggregator.IsValid() {
hasInvalidField = true
} else {
o.Aggregator = all.Aggregator
}
if all.ApmQuery != nil && all.ApmQuery.UnparsedObject != nil && o.UnparsedObject == nil {
hasInvalidField = true
}
o.ApmQuery = all.ApmQuery
if all.EventQuery != nil && all.EventQuery.UnparsedObject != nil && o.UnparsedObject == nil {
hasInvalidField = true
}
o.EventQuery = all.EventQuery
if all.LogQuery != nil && all.LogQuery.UnparsedObject != nil && o.UnparsedObject == nil {
hasInvalidField = true
}
o.LogQuery = all.LogQuery
if all.NetworkQuery != nil && all.NetworkQuery.UnparsedObject != nil && o.UnparsedObject == nil {
hasInvalidField = true
}
o.NetworkQuery = all.NetworkQuery
if all.ProcessQuery != nil && all.ProcessQuery.UnparsedObject != nil && o.UnparsedObject == nil {
hasInvalidField = true
}
o.ProcessQuery = all.ProcessQuery
if all.ProfileMetricsQuery != nil && all.ProfileMetricsQuery.UnparsedObject != nil && o.UnparsedObject == nil {
hasInvalidField = true
}
o.ProfileMetricsQuery = all.ProfileMetricsQuery
o.Q = all.Q
if all.RumQuery != nil && all.RumQuery.UnparsedObject != nil && o.UnparsedObject == nil {
hasInvalidField = true
}
o.RumQuery = all.RumQuery
if all.SecurityQuery != nil && all.SecurityQuery.UnparsedObject != nil && o.UnparsedObject == nil {
hasInvalidField = true
}
o.SecurityQuery = all.SecurityQuery
if len(additionalProperties) > 0 {
o.AdditionalProperties = additionalProperties
}
if hasInvalidField {
return datadog.Unmarshal(bytes, &o.UnparsedObject)
}
return nil
}