-
Notifications
You must be signed in to change notification settings - Fork 5
/
model_measurements_indexes.go
401 lines (335 loc) · 12.4 KB
/
model_measurements_indexes.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
// Code based on the AtlasAPI V2 OpenAPI file
package admin
import (
"encoding/json"
"time"
)
// MeasurementsIndexes struct for MeasurementsIndexes
type MeasurementsIndexes struct {
// Human-readable label that identifies the collection.
// Read only field.
CollectionName *string `json:"collectionName,omitempty"`
// Human-readable label that identifies the database that the specified MongoDB process serves.
// Read only field.
DatabaseName *string `json:"databaseName,omitempty"`
// Date and time that specifies when to stop retrieving measurements. If you set **end**, you must set **start**. You can't set this parameter and **period** in the same request. This parameter expresses its value in the ISO 8601 timestamp format in UTC.
// Read only field.
End *time.Time `json:"end,omitempty"`
// Duration that specifies the interval between measurement data points. The parameter expresses its value in ISO 8601 timestamp format in UTC. If you set this parameter, you must set either **period** or **start** and **end**.
// Read only field.
Granularity *string `json:"granularity,omitempty"`
// Unique 24-hexadecimal digit string that identifies the project. The project contains MongoDB processes that you want to return. The MongoDB process can be either the `mongod` or `mongos`.
// Read only field.
GroupId *string `json:"groupId,omitempty"`
// List that contains the Atlas Search index identifiers.
// Read only field.
IndexIds *[]string `json:"indexIds,omitempty"`
// List that contains the Atlas Search index stats measurements.
// Read only field.
IndexStatsMeasurements *[]MetricsMeasurement `json:"indexStatsMeasurements,omitempty"`
// List of one or more Uniform Resource Locators (URLs) that point to API sub-resources, related API resources, or both. RFC 5988 outlines these relationships.
// Read only field.
Links *[]Link `json:"links,omitempty"`
// Combination of hostname and Internet Assigned Numbers Authority (IANA) port that serves the MongoDB process. The host must be the hostname, fully qualified domain name (FQDN), or Internet Protocol address (IPv4 or IPv6) of the host that runs the MongoDB process (`mongod` or `mongos`). The port must be the IANA port on which the MongoDB process listens for requests.
// Read only field.
ProcessId *string `json:"processId,omitempty"`
// Date and time that specifies when to start retrieving measurements. If you set **start**, you must set **end**. You can't set this parameter and **period** in the same request. This parameter expresses its value in the ISO 8601 timestamp format in UTC.
// Read only field.
Start *time.Time `json:"start,omitempty"`
}
// NewMeasurementsIndexes instantiates a new MeasurementsIndexes 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 NewMeasurementsIndexes() *MeasurementsIndexes {
this := MeasurementsIndexes{}
return &this
}
// NewMeasurementsIndexesWithDefaults instantiates a new MeasurementsIndexes 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 NewMeasurementsIndexesWithDefaults() *MeasurementsIndexes {
this := MeasurementsIndexes{}
return &this
}
// GetCollectionName returns the CollectionName field value if set, zero value otherwise
func (o *MeasurementsIndexes) GetCollectionName() string {
if o == nil || IsNil(o.CollectionName) {
var ret string
return ret
}
return *o.CollectionName
}
// GetCollectionNameOk returns a tuple with the CollectionName field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *MeasurementsIndexes) GetCollectionNameOk() (*string, bool) {
if o == nil || IsNil(o.CollectionName) {
return nil, false
}
return o.CollectionName, true
}
// HasCollectionName returns a boolean if a field has been set.
func (o *MeasurementsIndexes) HasCollectionName() bool {
if o != nil && !IsNil(o.CollectionName) {
return true
}
return false
}
// SetCollectionName gets a reference to the given string and assigns it to the CollectionName field.
func (o *MeasurementsIndexes) SetCollectionName(v string) {
o.CollectionName = &v
}
// GetDatabaseName returns the DatabaseName field value if set, zero value otherwise
func (o *MeasurementsIndexes) GetDatabaseName() string {
if o == nil || IsNil(o.DatabaseName) {
var ret string
return ret
}
return *o.DatabaseName
}
// GetDatabaseNameOk returns a tuple with the DatabaseName field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *MeasurementsIndexes) GetDatabaseNameOk() (*string, bool) {
if o == nil || IsNil(o.DatabaseName) {
return nil, false
}
return o.DatabaseName, true
}
// HasDatabaseName returns a boolean if a field has been set.
func (o *MeasurementsIndexes) HasDatabaseName() bool {
if o != nil && !IsNil(o.DatabaseName) {
return true
}
return false
}
// SetDatabaseName gets a reference to the given string and assigns it to the DatabaseName field.
func (o *MeasurementsIndexes) SetDatabaseName(v string) {
o.DatabaseName = &v
}
// GetEnd returns the End field value if set, zero value otherwise
func (o *MeasurementsIndexes) GetEnd() time.Time {
if o == nil || IsNil(o.End) {
var ret time.Time
return ret
}
return *o.End
}
// GetEndOk returns a tuple with the End field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *MeasurementsIndexes) GetEndOk() (*time.Time, bool) {
if o == nil || IsNil(o.End) {
return nil, false
}
return o.End, true
}
// HasEnd returns a boolean if a field has been set.
func (o *MeasurementsIndexes) HasEnd() bool {
if o != nil && !IsNil(o.End) {
return true
}
return false
}
// SetEnd gets a reference to the given time.Time and assigns it to the End field.
func (o *MeasurementsIndexes) SetEnd(v time.Time) {
o.End = &v
}
// GetGranularity returns the Granularity field value if set, zero value otherwise
func (o *MeasurementsIndexes) GetGranularity() string {
if o == nil || IsNil(o.Granularity) {
var ret string
return ret
}
return *o.Granularity
}
// GetGranularityOk returns a tuple with the Granularity field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *MeasurementsIndexes) GetGranularityOk() (*string, bool) {
if o == nil || IsNil(o.Granularity) {
return nil, false
}
return o.Granularity, true
}
// HasGranularity returns a boolean if a field has been set.
func (o *MeasurementsIndexes) HasGranularity() bool {
if o != nil && !IsNil(o.Granularity) {
return true
}
return false
}
// SetGranularity gets a reference to the given string and assigns it to the Granularity field.
func (o *MeasurementsIndexes) SetGranularity(v string) {
o.Granularity = &v
}
// GetGroupId returns the GroupId field value if set, zero value otherwise
func (o *MeasurementsIndexes) GetGroupId() string {
if o == nil || IsNil(o.GroupId) {
var ret string
return ret
}
return *o.GroupId
}
// GetGroupIdOk returns a tuple with the GroupId field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *MeasurementsIndexes) GetGroupIdOk() (*string, bool) {
if o == nil || IsNil(o.GroupId) {
return nil, false
}
return o.GroupId, true
}
// HasGroupId returns a boolean if a field has been set.
func (o *MeasurementsIndexes) HasGroupId() bool {
if o != nil && !IsNil(o.GroupId) {
return true
}
return false
}
// SetGroupId gets a reference to the given string and assigns it to the GroupId field.
func (o *MeasurementsIndexes) SetGroupId(v string) {
o.GroupId = &v
}
// GetIndexIds returns the IndexIds field value if set, zero value otherwise
func (o *MeasurementsIndexes) GetIndexIds() []string {
if o == nil || IsNil(o.IndexIds) {
var ret []string
return ret
}
return *o.IndexIds
}
// GetIndexIdsOk returns a tuple with the IndexIds field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *MeasurementsIndexes) GetIndexIdsOk() (*[]string, bool) {
if o == nil || IsNil(o.IndexIds) {
return nil, false
}
return o.IndexIds, true
}
// HasIndexIds returns a boolean if a field has been set.
func (o *MeasurementsIndexes) HasIndexIds() bool {
if o != nil && !IsNil(o.IndexIds) {
return true
}
return false
}
// SetIndexIds gets a reference to the given []string and assigns it to the IndexIds field.
func (o *MeasurementsIndexes) SetIndexIds(v []string) {
o.IndexIds = &v
}
// GetIndexStatsMeasurements returns the IndexStatsMeasurements field value if set, zero value otherwise
func (o *MeasurementsIndexes) GetIndexStatsMeasurements() []MetricsMeasurement {
if o == nil || IsNil(o.IndexStatsMeasurements) {
var ret []MetricsMeasurement
return ret
}
return *o.IndexStatsMeasurements
}
// GetIndexStatsMeasurementsOk returns a tuple with the IndexStatsMeasurements field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *MeasurementsIndexes) GetIndexStatsMeasurementsOk() (*[]MetricsMeasurement, bool) {
if o == nil || IsNil(o.IndexStatsMeasurements) {
return nil, false
}
return o.IndexStatsMeasurements, true
}
// HasIndexStatsMeasurements returns a boolean if a field has been set.
func (o *MeasurementsIndexes) HasIndexStatsMeasurements() bool {
if o != nil && !IsNil(o.IndexStatsMeasurements) {
return true
}
return false
}
// SetIndexStatsMeasurements gets a reference to the given []MetricsMeasurement and assigns it to the IndexStatsMeasurements field.
func (o *MeasurementsIndexes) SetIndexStatsMeasurements(v []MetricsMeasurement) {
o.IndexStatsMeasurements = &v
}
// GetLinks returns the Links field value if set, zero value otherwise
func (o *MeasurementsIndexes) GetLinks() []Link {
if o == nil || IsNil(o.Links) {
var ret []Link
return ret
}
return *o.Links
}
// GetLinksOk returns a tuple with the Links field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *MeasurementsIndexes) GetLinksOk() (*[]Link, bool) {
if o == nil || IsNil(o.Links) {
return nil, false
}
return o.Links, true
}
// HasLinks returns a boolean if a field has been set.
func (o *MeasurementsIndexes) HasLinks() bool {
if o != nil && !IsNil(o.Links) {
return true
}
return false
}
// SetLinks gets a reference to the given []Link and assigns it to the Links field.
func (o *MeasurementsIndexes) SetLinks(v []Link) {
o.Links = &v
}
// GetProcessId returns the ProcessId field value if set, zero value otherwise
func (o *MeasurementsIndexes) GetProcessId() string {
if o == nil || IsNil(o.ProcessId) {
var ret string
return ret
}
return *o.ProcessId
}
// GetProcessIdOk returns a tuple with the ProcessId field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *MeasurementsIndexes) GetProcessIdOk() (*string, bool) {
if o == nil || IsNil(o.ProcessId) {
return nil, false
}
return o.ProcessId, true
}
// HasProcessId returns a boolean if a field has been set.
func (o *MeasurementsIndexes) HasProcessId() bool {
if o != nil && !IsNil(o.ProcessId) {
return true
}
return false
}
// SetProcessId gets a reference to the given string and assigns it to the ProcessId field.
func (o *MeasurementsIndexes) SetProcessId(v string) {
o.ProcessId = &v
}
// GetStart returns the Start field value if set, zero value otherwise
func (o *MeasurementsIndexes) GetStart() time.Time {
if o == nil || IsNil(o.Start) {
var ret time.Time
return ret
}
return *o.Start
}
// GetStartOk returns a tuple with the Start field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *MeasurementsIndexes) GetStartOk() (*time.Time, bool) {
if o == nil || IsNil(o.Start) {
return nil, false
}
return o.Start, true
}
// HasStart returns a boolean if a field has been set.
func (o *MeasurementsIndexes) HasStart() bool {
if o != nil && !IsNil(o.Start) {
return true
}
return false
}
// SetStart gets a reference to the given time.Time and assigns it to the Start field.
func (o *MeasurementsIndexes) SetStart(v time.Time) {
o.Start = &v
}
func (o MeasurementsIndexes) MarshalJSONWithoutReadOnly() ([]byte, error) {
toSerialize, err := o.ToMap()
if err != nil {
return []byte{}, err
}
return json.Marshal(toSerialize)
}
func (o MeasurementsIndexes) ToMap() (map[string]interface{}, error) {
toSerialize := map[string]interface{}{}
return toSerialize, nil
}