-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathmodel_cluster_status.go
More file actions
677 lines (559 loc) · 31.4 KB
/
model_cluster_status.go
File metadata and controls
677 lines (559 loc) · 31.4 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
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
/*
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.
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
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
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
type ClusterStatusGetAggregatedAttributeType = *ClusterStatusState
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
type ClusterStatusGetAggregatedArgType = ClusterStatusState
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
type ClusterStatusGetAggregatedRetType = ClusterStatusState
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func getClusterStatusGetAggregatedAttributeTypeOk(arg ClusterStatusGetAggregatedAttributeType) (ret ClusterStatusGetAggregatedRetType, ok bool) {
if arg == nil {
return ret, false
}
return *arg, true
}
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func setClusterStatusGetAggregatedAttributeType(arg *ClusterStatusGetAggregatedAttributeType, val ClusterStatusGetAggregatedRetType) {
*arg = &val
}
/*
types and functions for creationTime
*/
// isDateTime
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
type ClusterStatusGetCreationTimeAttributeType = *time.Time
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
type ClusterStatusGetCreationTimeArgType = time.Time
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
type ClusterStatusGetCreationTimeRetType = time.Time
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func getClusterStatusGetCreationTimeAttributeTypeOk(arg ClusterStatusGetCreationTimeAttributeType) (ret ClusterStatusGetCreationTimeRetType, ok bool) {
if arg == nil {
return ret, false
}
return *arg, true
}
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func setClusterStatusGetCreationTimeAttributeType(arg *ClusterStatusGetCreationTimeAttributeType, val ClusterStatusGetCreationTimeRetType) {
*arg = &val
}
/*
types and functions for credentialsRotation
*/
// isModel
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
type ClusterStatusGetCredentialsRotationAttributeType = *CredentialsRotationState
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
type ClusterStatusGetCredentialsRotationArgType = CredentialsRotationState
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
type ClusterStatusGetCredentialsRotationRetType = CredentialsRotationState
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func getClusterStatusGetCredentialsRotationAttributeTypeOk(arg ClusterStatusGetCredentialsRotationAttributeType) (ret ClusterStatusGetCredentialsRotationRetType, ok bool) {
if arg == nil {
return ret, false
}
return *arg, true
}
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func setClusterStatusGetCredentialsRotationAttributeType(arg *ClusterStatusGetCredentialsRotationAttributeType, val ClusterStatusGetCredentialsRotationRetType) {
*arg = &val
}
/*
types and functions for egressAddressRanges
*/
// isArray
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
type ClusterStatusGetEgressAddressRangesAttributeType = *[]string
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
type ClusterStatusGetEgressAddressRangesArgType = []string
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
type ClusterStatusGetEgressAddressRangesRetType = []string
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func getClusterStatusGetEgressAddressRangesAttributeTypeOk(arg ClusterStatusGetEgressAddressRangesAttributeType) (ret ClusterStatusGetEgressAddressRangesRetType, ok bool) {
if arg == nil {
return ret, false
}
return *arg, true
}
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func setClusterStatusGetEgressAddressRangesAttributeType(arg *ClusterStatusGetEgressAddressRangesAttributeType, val ClusterStatusGetEgressAddressRangesRetType) {
*arg = &val
}
/*
types and functions for error
*/
// isModel
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
type ClusterStatusGetErrorAttributeType = *RuntimeError
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
type ClusterStatusGetErrorArgType = RuntimeError
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
type ClusterStatusGetErrorRetType = RuntimeError
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func getClusterStatusGetErrorAttributeTypeOk(arg ClusterStatusGetErrorAttributeType) (ret ClusterStatusGetErrorRetType, ok bool) {
if arg == nil {
return ret, false
}
return *arg, true
}
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func setClusterStatusGetErrorAttributeType(arg *ClusterStatusGetErrorAttributeType, val ClusterStatusGetErrorRetType) {
*arg = &val
}
/*
types and functions for errors
*/
// isArray
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
type ClusterStatusGetErrorsAttributeType = *[]ClusterError
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
type ClusterStatusGetErrorsArgType = []ClusterError
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
type ClusterStatusGetErrorsRetType = []ClusterError
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func getClusterStatusGetErrorsAttributeTypeOk(arg ClusterStatusGetErrorsAttributeType) (ret ClusterStatusGetErrorsRetType, ok bool) {
if arg == nil {
return ret, false
}
return *arg, true
}
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func setClusterStatusGetErrorsAttributeType(arg *ClusterStatusGetErrorsAttributeType, val ClusterStatusGetErrorsRetType) {
*arg = &val
}
/*
types and functions for expiration
*/
// isModel
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
type ClusterStatusGetExpirationAttributeType = *ExpiratoaionStatus
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
type ClusterStatusGetExpirationArgType = ExpiratoaionStatus
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
type ClusterStatusGetExpirationRetType = ExpiratoaionStatus
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func getClusterStatusGetExpirationAttributeTypeOk(arg ClusterStatusGetExpirationAttributeType) (ret ClusterStatusGetExpirationRetType, ok bool) {
if arg == nil {
return ret, false
}
return *arg, true
}
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func setClusterStatusGetExpirationAttributeType(arg *ClusterStatusGetExpirationAttributeType, val ClusterStatusGetExpirationRetType) {
*arg = &val
}
/*
types and functions for hibernated
*/
// isBoolean
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
type ClusterStatusgetHibernatedAttributeType = *bool
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
type ClusterStatusgetHibernatedArgType = bool
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
type ClusterStatusgetHibernatedRetType = bool
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func getClusterStatusgetHibernatedAttributeTypeOk(arg ClusterStatusgetHibernatedAttributeType) (ret ClusterStatusgetHibernatedRetType, ok bool) {
if arg == nil {
return ret, false
}
return *arg, true
}
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func setClusterStatusgetHibernatedAttributeType(arg *ClusterStatusgetHibernatedAttributeType, val ClusterStatusgetHibernatedRetType) {
*arg = &val
}
/*
types and functions for identity
*/
// isNotNullableString
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
type ClusterStatusGetIdentityAttributeType = *string
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func getClusterStatusGetIdentityAttributeTypeOk(arg ClusterStatusGetIdentityAttributeType) (ret ClusterStatusGetIdentityRetType, ok bool) {
if arg == nil {
return ret, false
}
return *arg, true
}
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func setClusterStatusGetIdentityAttributeType(arg *ClusterStatusGetIdentityAttributeType, val ClusterStatusGetIdentityRetType) {
*arg = &val
}
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
type ClusterStatusGetIdentityArgType = string
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
type ClusterStatusGetIdentityRetType = string
/*
types and functions for podAddressRanges
*/
// isArray
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
type ClusterStatusGetPodAddressRangesAttributeType = *[]string
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
type ClusterStatusGetPodAddressRangesArgType = []string
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
type ClusterStatusGetPodAddressRangesRetType = []string
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func getClusterStatusGetPodAddressRangesAttributeTypeOk(arg ClusterStatusGetPodAddressRangesAttributeType) (ret ClusterStatusGetPodAddressRangesRetType, ok bool) {
if arg == nil {
return ret, false
}
return *arg, true
}
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func setClusterStatusGetPodAddressRangesAttributeType(arg *ClusterStatusGetPodAddressRangesAttributeType, val ClusterStatusGetPodAddressRangesRetType) {
*arg = &val
}
// ClusterStatus struct for ClusterStatus
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
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"`
Expiration ClusterStatusGetExpirationAttributeType `json:"expiration,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
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
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
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func NewClusterStatusWithDefaults() *ClusterStatus {
this := ClusterStatus{}
return &this
}
// GetAggregated returns the Aggregated field value if set, zero value otherwise.
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
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.
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func (o *ClusterStatus) GetAggregatedOk() (ret ClusterStatusGetAggregatedRetType, ok bool) {
return getClusterStatusGetAggregatedAttributeTypeOk(o.Aggregated)
}
// HasAggregated returns a boolean if a field has been set.
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
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.
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func (o *ClusterStatus) SetAggregated(v ClusterStatusGetAggregatedRetType) {
setClusterStatusGetAggregatedAttributeType(&o.Aggregated, v)
}
// GetCreationTime returns the CreationTime field value if set, zero value otherwise.
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
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.
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func (o *ClusterStatus) GetCreationTimeOk() (ret ClusterStatusGetCreationTimeRetType, ok bool) {
return getClusterStatusGetCreationTimeAttributeTypeOk(o.CreationTime)
}
// HasCreationTime returns a boolean if a field has been set.
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
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.
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func (o *ClusterStatus) SetCreationTime(v ClusterStatusGetCreationTimeRetType) {
setClusterStatusGetCreationTimeAttributeType(&o.CreationTime, v)
}
// GetCredentialsRotation returns the CredentialsRotation field value if set, zero value otherwise.
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
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.
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func (o *ClusterStatus) GetCredentialsRotationOk() (ret ClusterStatusGetCredentialsRotationRetType, ok bool) {
return getClusterStatusGetCredentialsRotationAttributeTypeOk(o.CredentialsRotation)
}
// HasCredentialsRotation returns a boolean if a field has been set.
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
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.
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func (o *ClusterStatus) SetCredentialsRotation(v ClusterStatusGetCredentialsRotationRetType) {
setClusterStatusGetCredentialsRotationAttributeType(&o.CredentialsRotation, v)
}
// GetEgressAddressRanges returns the EgressAddressRanges field value if set, zero value otherwise.
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
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.
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func (o *ClusterStatus) GetEgressAddressRangesOk() (ret ClusterStatusGetEgressAddressRangesRetType, ok bool) {
return getClusterStatusGetEgressAddressRangesAttributeTypeOk(o.EgressAddressRanges)
}
// HasEgressAddressRanges returns a boolean if a field has been set.
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
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.
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func (o *ClusterStatus) SetEgressAddressRanges(v ClusterStatusGetEgressAddressRangesRetType) {
setClusterStatusGetEgressAddressRangesAttributeType(&o.EgressAddressRanges, v)
}
// GetError returns the Error field value if set, zero value otherwise.
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
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.
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func (o *ClusterStatus) GetErrorOk() (ret ClusterStatusGetErrorRetType, ok bool) {
return getClusterStatusGetErrorAttributeTypeOk(o.Error)
}
// HasError returns a boolean if a field has been set.
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
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.
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func (o *ClusterStatus) SetError(v ClusterStatusGetErrorRetType) {
setClusterStatusGetErrorAttributeType(&o.Error, v)
}
// GetErrors returns the Errors field value if set, zero value otherwise.
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
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.
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func (o *ClusterStatus) GetErrorsOk() (ret ClusterStatusGetErrorsRetType, ok bool) {
return getClusterStatusGetErrorsAttributeTypeOk(o.Errors)
}
// HasErrors returns a boolean if a field has been set.
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
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.
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func (o *ClusterStatus) SetErrors(v ClusterStatusGetErrorsRetType) {
setClusterStatusGetErrorsAttributeType(&o.Errors, v)
}
// GetExpiration returns the Expiration field value if set, zero value otherwise.
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func (o *ClusterStatus) GetExpiration() (res ClusterStatusGetExpirationRetType) {
res, _ = o.GetExpirationOk()
return
}
// GetExpirationOk returns a tuple with the Expiration field value if set, nil otherwise
// and a boolean to check if the value has been set.
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func (o *ClusterStatus) GetExpirationOk() (ret ClusterStatusGetExpirationRetType, ok bool) {
return getClusterStatusGetExpirationAttributeTypeOk(o.Expiration)
}
// HasExpiration returns a boolean if a field has been set.
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func (o *ClusterStatus) HasExpiration() bool {
_, ok := o.GetExpirationOk()
return ok
}
// SetExpiration gets a reference to the given ExpiratoaionStatus and assigns it to the Expiration field.
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func (o *ClusterStatus) SetExpiration(v ClusterStatusGetExpirationRetType) {
setClusterStatusGetExpirationAttributeType(&o.Expiration, v)
}
// GetHibernated returns the Hibernated field value if set, zero value otherwise.
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
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.
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func (o *ClusterStatus) GetHibernatedOk() (ret ClusterStatusgetHibernatedRetType, ok bool) {
return getClusterStatusgetHibernatedAttributeTypeOk(o.Hibernated)
}
// HasHibernated returns a boolean if a field has been set.
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
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.
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func (o *ClusterStatus) SetHibernated(v ClusterStatusgetHibernatedRetType) {
setClusterStatusgetHibernatedAttributeType(&o.Hibernated, v)
}
// GetIdentity returns the Identity field value if set, zero value otherwise.
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
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.
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func (o *ClusterStatus) GetIdentityOk() (ret ClusterStatusGetIdentityRetType, ok bool) {
return getClusterStatusGetIdentityAttributeTypeOk(o.Identity)
}
// HasIdentity returns a boolean if a field has been set.
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
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.
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func (o *ClusterStatus) SetIdentity(v ClusterStatusGetIdentityRetType) {
setClusterStatusGetIdentityAttributeType(&o.Identity, v)
}
// GetPodAddressRanges returns the PodAddressRanges field value if set, zero value otherwise.
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
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.
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func (o *ClusterStatus) GetPodAddressRangesOk() (ret ClusterStatusGetPodAddressRangesRetType, ok bool) {
return getClusterStatusGetPodAddressRangesAttributeTypeOk(o.PodAddressRanges)
}
// HasPodAddressRanges returns a boolean if a field has been set.
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
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.
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func (o *ClusterStatus) SetPodAddressRanges(v ClusterStatusGetPodAddressRangesRetType) {
setClusterStatusGetPodAddressRangesAttributeType(&o.PodAddressRanges, v)
}
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
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 := getClusterStatusGetExpirationAttributeTypeOk(o.Expiration); ok {
toSerialize["Expiration"] = 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
}
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
type NullableClusterStatus struct {
value *ClusterStatus
isSet bool
}
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func (v NullableClusterStatus) Get() *ClusterStatus {
return v.value
}
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func (v *NullableClusterStatus) Set(val *ClusterStatus) {
v.value = val
v.isSet = true
}
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func (v NullableClusterStatus) IsSet() bool {
return v.isSet
}
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func (v *NullableClusterStatus) Unset() {
v.value = nil
v.isSet = false
}
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func NewNullableClusterStatus(val *ClusterStatus) *NullableClusterStatus {
return &NullableClusterStatus{value: val, isSet: true}
}
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func (v NullableClusterStatus) MarshalJSON() ([]byte, error) {
return json.Marshal(v.value)
}
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func (v *NullableClusterStatus) UnmarshalJSON(src []byte) error {
v.isSet = true
return json.Unmarshal(src, &v.value)
}