-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathmodel_cluster_status.go
More file actions
510 lines (419 loc) · 17.8 KB
/
model_cluster_status.go
File metadata and controls
510 lines (419 loc) · 17.8 KB
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
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
/*
STACKIT Kubernetes Engine API
The SKE API provides endpoints to create, update or delete clusters within STACKIT projects and to trigger further cluster management tasks.
API version: 2.0
*/
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.
package ske
import (
"encoding/json"
"time"
)
// checks if the ClusterStatus type satisfies the MappedNullable interface at compile time
var _ MappedNullable = &ClusterStatus{}
/*
types and functions for aggregated
*/
// isEnumRef
type ClusterStatusGetAggregatedAttributeType = *ClusterStatusState
type ClusterStatusGetAggregatedArgType = ClusterStatusState
type ClusterStatusGetAggregatedRetType = ClusterStatusState
func getClusterStatusGetAggregatedAttributeTypeOk(arg ClusterStatusGetAggregatedAttributeType) (ret ClusterStatusGetAggregatedRetType, ok bool) {
if arg == nil {
return ret, false
}
return *arg, true
}
func setClusterStatusGetAggregatedAttributeType(arg *ClusterStatusGetAggregatedAttributeType, val ClusterStatusGetAggregatedRetType) {
*arg = &val
}
/*
types and functions for creationTime
*/
// isDateTime
type ClusterStatusGetCreationTimeAttributeType = *time.Time
type ClusterStatusGetCreationTimeArgType = time.Time
type ClusterStatusGetCreationTimeRetType = time.Time
func getClusterStatusGetCreationTimeAttributeTypeOk(arg ClusterStatusGetCreationTimeAttributeType) (ret ClusterStatusGetCreationTimeRetType, ok bool) {
if arg == nil {
return ret, false
}
return *arg, true
}
func setClusterStatusGetCreationTimeAttributeType(arg *ClusterStatusGetCreationTimeAttributeType, val ClusterStatusGetCreationTimeRetType) {
*arg = &val
}
/*
types and functions for credentialsRotation
*/
// isModel
type ClusterStatusGetCredentialsRotationAttributeType = *CredentialsRotationState
type ClusterStatusGetCredentialsRotationArgType = CredentialsRotationState
type ClusterStatusGetCredentialsRotationRetType = CredentialsRotationState
func getClusterStatusGetCredentialsRotationAttributeTypeOk(arg ClusterStatusGetCredentialsRotationAttributeType) (ret ClusterStatusGetCredentialsRotationRetType, ok bool) {
if arg == nil {
return ret, false
}
return *arg, true
}
func setClusterStatusGetCredentialsRotationAttributeType(arg *ClusterStatusGetCredentialsRotationAttributeType, val ClusterStatusGetCredentialsRotationRetType) {
*arg = &val
}
/*
types and functions for egressAddressRanges
*/
// isArray
type ClusterStatusGetEgressAddressRangesAttributeType = *[]string
type ClusterStatusGetEgressAddressRangesArgType = []string
type ClusterStatusGetEgressAddressRangesRetType = []string
func getClusterStatusGetEgressAddressRangesAttributeTypeOk(arg ClusterStatusGetEgressAddressRangesAttributeType) (ret ClusterStatusGetEgressAddressRangesRetType, ok bool) {
if arg == nil {
return ret, false
}
return *arg, true
}
func setClusterStatusGetEgressAddressRangesAttributeType(arg *ClusterStatusGetEgressAddressRangesAttributeType, val ClusterStatusGetEgressAddressRangesRetType) {
*arg = &val
}
/*
types and functions for error
*/
// isModel
type ClusterStatusGetErrorAttributeType = *RuntimeError
type ClusterStatusGetErrorArgType = RuntimeError
type ClusterStatusGetErrorRetType = RuntimeError
func getClusterStatusGetErrorAttributeTypeOk(arg ClusterStatusGetErrorAttributeType) (ret ClusterStatusGetErrorRetType, ok bool) {
if arg == nil {
return ret, false
}
return *arg, true
}
func setClusterStatusGetErrorAttributeType(arg *ClusterStatusGetErrorAttributeType, val ClusterStatusGetErrorRetType) {
*arg = &val
}
/*
types and functions for errors
*/
// isArray
type ClusterStatusGetErrorsAttributeType = *[]ClusterError
type ClusterStatusGetErrorsArgType = []ClusterError
type ClusterStatusGetErrorsRetType = []ClusterError
func getClusterStatusGetErrorsAttributeTypeOk(arg ClusterStatusGetErrorsAttributeType) (ret ClusterStatusGetErrorsRetType, ok bool) {
if arg == nil {
return ret, false
}
return *arg, true
}
func setClusterStatusGetErrorsAttributeType(arg *ClusterStatusGetErrorsAttributeType, val ClusterStatusGetErrorsRetType) {
*arg = &val
}
/*
types and functions for hibernated
*/
// isBoolean
type ClusterStatusgetHibernatedAttributeType = *bool
type ClusterStatusgetHibernatedArgType = bool
type ClusterStatusgetHibernatedRetType = bool
func getClusterStatusgetHibernatedAttributeTypeOk(arg ClusterStatusgetHibernatedAttributeType) (ret ClusterStatusgetHibernatedRetType, ok bool) {
if arg == nil {
return ret, false
}
return *arg, true
}
func setClusterStatusgetHibernatedAttributeType(arg *ClusterStatusgetHibernatedAttributeType, val ClusterStatusgetHibernatedRetType) {
*arg = &val
}
/*
types and functions for identity
*/
// isNotNullableString
type ClusterStatusGetIdentityAttributeType = *string
func getClusterStatusGetIdentityAttributeTypeOk(arg ClusterStatusGetIdentityAttributeType) (ret ClusterStatusGetIdentityRetType, ok bool) {
if arg == nil {
return ret, false
}
return *arg, true
}
func setClusterStatusGetIdentityAttributeType(arg *ClusterStatusGetIdentityAttributeType, val ClusterStatusGetIdentityRetType) {
*arg = &val
}
type ClusterStatusGetIdentityArgType = string
type ClusterStatusGetIdentityRetType = string
/*
types and functions for podAddressRanges
*/
// isArray
type ClusterStatusGetPodAddressRangesAttributeType = *[]string
type ClusterStatusGetPodAddressRangesArgType = []string
type ClusterStatusGetPodAddressRangesRetType = []string
func getClusterStatusGetPodAddressRangesAttributeTypeOk(arg ClusterStatusGetPodAddressRangesAttributeType) (ret ClusterStatusGetPodAddressRangesRetType, ok bool) {
if arg == nil {
return ret, false
}
return *arg, true
}
func setClusterStatusGetPodAddressRangesAttributeType(arg *ClusterStatusGetPodAddressRangesAttributeType, val ClusterStatusGetPodAddressRangesRetType) {
*arg = &val
}
// ClusterStatus struct for ClusterStatus
type ClusterStatus struct {
Aggregated ClusterStatusGetAggregatedAttributeType `json:"aggregated,omitempty"`
// Format: `2024-02-15T11:06:29Z`
CreationTime ClusterStatusGetCreationTimeAttributeType `json:"creationTime,omitempty"`
CredentialsRotation ClusterStatusGetCredentialsRotationAttributeType `json:"credentialsRotation,omitempty"`
// The outgoing network ranges (in CIDR notation) of traffic originating from workload on the cluster.
EgressAddressRanges ClusterStatusGetEgressAddressRangesAttributeType `json:"egressAddressRanges,omitempty"`
Error ClusterStatusGetErrorAttributeType `json:"error,omitempty"`
Errors ClusterStatusGetErrorsAttributeType `json:"errors,omitempty"`
Hibernated ClusterStatusgetHibernatedAttributeType `json:"hibernated,omitempty"`
Identity ClusterStatusGetIdentityAttributeType `json:"identity,omitempty"`
// The network ranges (in CIDR notation) used by pods of the cluster.
PodAddressRanges ClusterStatusGetPodAddressRangesAttributeType `json:"podAddressRanges,omitempty"`
}
// NewClusterStatus instantiates a new ClusterStatus 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 NewClusterStatus() *ClusterStatus {
this := ClusterStatus{}
return &this
}
// NewClusterStatusWithDefaults instantiates a new ClusterStatus 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 NewClusterStatusWithDefaults() *ClusterStatus {
this := ClusterStatus{}
var aggregated ClusterStatusState = CLUSTERSTATUSSTATE_UNSPECIFIED
this.Aggregated = &aggregated
return &this
}
// GetAggregated returns the Aggregated field value if set, zero value otherwise.
func (o *ClusterStatus) GetAggregated() (res ClusterStatusGetAggregatedRetType) {
res, _ = o.GetAggregatedOk()
return
}
// GetAggregatedOk returns a tuple with the Aggregated field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *ClusterStatus) GetAggregatedOk() (ret ClusterStatusGetAggregatedRetType, ok bool) {
return getClusterStatusGetAggregatedAttributeTypeOk(o.Aggregated)
}
// HasAggregated returns a boolean if a field has been set.
func (o *ClusterStatus) HasAggregated() bool {
_, ok := o.GetAggregatedOk()
return ok
}
// SetAggregated gets a reference to the given ClusterStatusState and assigns it to the Aggregated field.
func (o *ClusterStatus) SetAggregated(v ClusterStatusGetAggregatedRetType) {
setClusterStatusGetAggregatedAttributeType(&o.Aggregated, v)
}
// GetCreationTime returns the CreationTime field value if set, zero value otherwise.
func (o *ClusterStatus) GetCreationTime() (res ClusterStatusGetCreationTimeRetType) {
res, _ = o.GetCreationTimeOk()
return
}
// GetCreationTimeOk returns a tuple with the CreationTime field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *ClusterStatus) GetCreationTimeOk() (ret ClusterStatusGetCreationTimeRetType, ok bool) {
return getClusterStatusGetCreationTimeAttributeTypeOk(o.CreationTime)
}
// HasCreationTime returns a boolean if a field has been set.
func (o *ClusterStatus) HasCreationTime() bool {
_, ok := o.GetCreationTimeOk()
return ok
}
// SetCreationTime gets a reference to the given time.Time and assigns it to the CreationTime field.
func (o *ClusterStatus) SetCreationTime(v ClusterStatusGetCreationTimeRetType) {
setClusterStatusGetCreationTimeAttributeType(&o.CreationTime, v)
}
// GetCredentialsRotation returns the CredentialsRotation field value if set, zero value otherwise.
func (o *ClusterStatus) GetCredentialsRotation() (res ClusterStatusGetCredentialsRotationRetType) {
res, _ = o.GetCredentialsRotationOk()
return
}
// GetCredentialsRotationOk returns a tuple with the CredentialsRotation field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *ClusterStatus) GetCredentialsRotationOk() (ret ClusterStatusGetCredentialsRotationRetType, ok bool) {
return getClusterStatusGetCredentialsRotationAttributeTypeOk(o.CredentialsRotation)
}
// HasCredentialsRotation returns a boolean if a field has been set.
func (o *ClusterStatus) HasCredentialsRotation() bool {
_, ok := o.GetCredentialsRotationOk()
return ok
}
// SetCredentialsRotation gets a reference to the given CredentialsRotationState and assigns it to the CredentialsRotation field.
func (o *ClusterStatus) SetCredentialsRotation(v ClusterStatusGetCredentialsRotationRetType) {
setClusterStatusGetCredentialsRotationAttributeType(&o.CredentialsRotation, v)
}
// GetEgressAddressRanges returns the EgressAddressRanges field value if set, zero value otherwise.
func (o *ClusterStatus) GetEgressAddressRanges() (res ClusterStatusGetEgressAddressRangesRetType) {
res, _ = o.GetEgressAddressRangesOk()
return
}
// GetEgressAddressRangesOk returns a tuple with the EgressAddressRanges field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *ClusterStatus) GetEgressAddressRangesOk() (ret ClusterStatusGetEgressAddressRangesRetType, ok bool) {
return getClusterStatusGetEgressAddressRangesAttributeTypeOk(o.EgressAddressRanges)
}
// HasEgressAddressRanges returns a boolean if a field has been set.
func (o *ClusterStatus) HasEgressAddressRanges() bool {
_, ok := o.GetEgressAddressRangesOk()
return ok
}
// SetEgressAddressRanges gets a reference to the given []string and assigns it to the EgressAddressRanges field.
func (o *ClusterStatus) SetEgressAddressRanges(v ClusterStatusGetEgressAddressRangesRetType) {
setClusterStatusGetEgressAddressRangesAttributeType(&o.EgressAddressRanges, v)
}
// GetError returns the Error field value if set, zero value otherwise.
func (o *ClusterStatus) GetError() (res ClusterStatusGetErrorRetType) {
res, _ = o.GetErrorOk()
return
}
// GetErrorOk returns a tuple with the Error field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *ClusterStatus) GetErrorOk() (ret ClusterStatusGetErrorRetType, ok bool) {
return getClusterStatusGetErrorAttributeTypeOk(o.Error)
}
// HasError returns a boolean if a field has been set.
func (o *ClusterStatus) HasError() bool {
_, ok := o.GetErrorOk()
return ok
}
// SetError gets a reference to the given RuntimeError and assigns it to the Error field.
func (o *ClusterStatus) SetError(v ClusterStatusGetErrorRetType) {
setClusterStatusGetErrorAttributeType(&o.Error, v)
}
// GetErrors returns the Errors field value if set, zero value otherwise.
func (o *ClusterStatus) GetErrors() (res ClusterStatusGetErrorsRetType) {
res, _ = o.GetErrorsOk()
return
}
// GetErrorsOk returns a tuple with the Errors field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *ClusterStatus) GetErrorsOk() (ret ClusterStatusGetErrorsRetType, ok bool) {
return getClusterStatusGetErrorsAttributeTypeOk(o.Errors)
}
// HasErrors returns a boolean if a field has been set.
func (o *ClusterStatus) HasErrors() bool {
_, ok := o.GetErrorsOk()
return ok
}
// SetErrors gets a reference to the given []ClusterError and assigns it to the Errors field.
func (o *ClusterStatus) SetErrors(v ClusterStatusGetErrorsRetType) {
setClusterStatusGetErrorsAttributeType(&o.Errors, v)
}
// GetHibernated returns the Hibernated field value if set, zero value otherwise.
func (o *ClusterStatus) GetHibernated() (res ClusterStatusgetHibernatedRetType) {
res, _ = o.GetHibernatedOk()
return
}
// GetHibernatedOk returns a tuple with the Hibernated field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *ClusterStatus) GetHibernatedOk() (ret ClusterStatusgetHibernatedRetType, ok bool) {
return getClusterStatusgetHibernatedAttributeTypeOk(o.Hibernated)
}
// HasHibernated returns a boolean if a field has been set.
func (o *ClusterStatus) HasHibernated() bool {
_, ok := o.GetHibernatedOk()
return ok
}
// SetHibernated gets a reference to the given bool and assigns it to the Hibernated field.
func (o *ClusterStatus) SetHibernated(v ClusterStatusgetHibernatedRetType) {
setClusterStatusgetHibernatedAttributeType(&o.Hibernated, v)
}
// GetIdentity returns the Identity field value if set, zero value otherwise.
func (o *ClusterStatus) GetIdentity() (res ClusterStatusGetIdentityRetType) {
res, _ = o.GetIdentityOk()
return
}
// GetIdentityOk returns a tuple with the Identity field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *ClusterStatus) GetIdentityOk() (ret ClusterStatusGetIdentityRetType, ok bool) {
return getClusterStatusGetIdentityAttributeTypeOk(o.Identity)
}
// HasIdentity returns a boolean if a field has been set.
func (o *ClusterStatus) HasIdentity() bool {
_, ok := o.GetIdentityOk()
return ok
}
// SetIdentity gets a reference to the given string and assigns it to the Identity field.
func (o *ClusterStatus) SetIdentity(v ClusterStatusGetIdentityRetType) {
setClusterStatusGetIdentityAttributeType(&o.Identity, v)
}
// GetPodAddressRanges returns the PodAddressRanges field value if set, zero value otherwise.
func (o *ClusterStatus) GetPodAddressRanges() (res ClusterStatusGetPodAddressRangesRetType) {
res, _ = o.GetPodAddressRangesOk()
return
}
// GetPodAddressRangesOk returns a tuple with the PodAddressRanges field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *ClusterStatus) GetPodAddressRangesOk() (ret ClusterStatusGetPodAddressRangesRetType, ok bool) {
return getClusterStatusGetPodAddressRangesAttributeTypeOk(o.PodAddressRanges)
}
// HasPodAddressRanges returns a boolean if a field has been set.
func (o *ClusterStatus) HasPodAddressRanges() bool {
_, ok := o.GetPodAddressRangesOk()
return ok
}
// SetPodAddressRanges gets a reference to the given []string and assigns it to the PodAddressRanges field.
func (o *ClusterStatus) SetPodAddressRanges(v ClusterStatusGetPodAddressRangesRetType) {
setClusterStatusGetPodAddressRangesAttributeType(&o.PodAddressRanges, v)
}
func (o ClusterStatus) ToMap() (map[string]interface{}, error) {
toSerialize := map[string]interface{}{}
if val, ok := getClusterStatusGetAggregatedAttributeTypeOk(o.Aggregated); ok {
toSerialize["Aggregated"] = val
}
if val, ok := getClusterStatusGetCreationTimeAttributeTypeOk(o.CreationTime); ok {
toSerialize["CreationTime"] = val
}
if val, ok := getClusterStatusGetCredentialsRotationAttributeTypeOk(o.CredentialsRotation); ok {
toSerialize["CredentialsRotation"] = val
}
if val, ok := getClusterStatusGetEgressAddressRangesAttributeTypeOk(o.EgressAddressRanges); ok {
toSerialize["EgressAddressRanges"] = val
}
if val, ok := getClusterStatusGetErrorAttributeTypeOk(o.Error); ok {
toSerialize["Error"] = val
}
if val, ok := getClusterStatusGetErrorsAttributeTypeOk(o.Errors); ok {
toSerialize["Errors"] = val
}
if val, ok := getClusterStatusgetHibernatedAttributeTypeOk(o.Hibernated); ok {
toSerialize["Hibernated"] = val
}
if val, ok := getClusterStatusGetIdentityAttributeTypeOk(o.Identity); ok {
toSerialize["Identity"] = val
}
if val, ok := getClusterStatusGetPodAddressRangesAttributeTypeOk(o.PodAddressRanges); ok {
toSerialize["PodAddressRanges"] = val
}
return toSerialize, nil
}
type NullableClusterStatus struct {
value *ClusterStatus
isSet bool
}
func (v NullableClusterStatus) Get() *ClusterStatus {
return v.value
}
func (v *NullableClusterStatus) Set(val *ClusterStatus) {
v.value = val
v.isSet = true
}
func (v NullableClusterStatus) IsSet() bool {
return v.isSet
}
func (v *NullableClusterStatus) Unset() {
v.value = nil
v.isSet = false
}
func NewNullableClusterStatus(val *ClusterStatus) *NullableClusterStatus {
return &NullableClusterStatus{value: val, isSet: true}
}
func (v NullableClusterStatus) MarshalJSON() ([]byte, error) {
return json.Marshal(v.value)
}
func (v *NullableClusterStatus) UnmarshalJSON(src []byte) error {
v.isSet = true
return json.Unmarshal(src, &v.value)
}