-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathmodel_active_health_check.go
More file actions
508 lines (420 loc) · 24.2 KB
/
model_active_health_check.go
File metadata and controls
508 lines (420 loc) · 24.2 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
/*
STACKIT Network Load Balancer API
This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes. For each load balancer provided, two VMs are deployed in your OpenStack project subject to a fee.
API version: 2.0.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 loadbalancer
import (
"encoding/json"
)
// checks if the ActiveHealthCheck type satisfies the MappedNullable interface at compile time
var _ MappedNullable = &ActiveHealthCheck{}
/*
types and functions for altPort
*/
// isInteger
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
type ActiveHealthCheckGetAltPortAttributeType = *int64
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
type ActiveHealthCheckGetAltPortArgType = int64
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
type ActiveHealthCheckGetAltPortRetType = int64
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func getActiveHealthCheckGetAltPortAttributeTypeOk(arg ActiveHealthCheckGetAltPortAttributeType) (ret ActiveHealthCheckGetAltPortRetType, 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 setActiveHealthCheckGetAltPortAttributeType(arg *ActiveHealthCheckGetAltPortAttributeType, val ActiveHealthCheckGetAltPortRetType) {
*arg = &val
}
/*
types and functions for healthyThreshold
*/
// isInteger
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
type ActiveHealthCheckGetHealthyThresholdAttributeType = *int64
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
type ActiveHealthCheckGetHealthyThresholdArgType = int64
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
type ActiveHealthCheckGetHealthyThresholdRetType = int64
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func getActiveHealthCheckGetHealthyThresholdAttributeTypeOk(arg ActiveHealthCheckGetHealthyThresholdAttributeType) (ret ActiveHealthCheckGetHealthyThresholdRetType, 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 setActiveHealthCheckGetHealthyThresholdAttributeType(arg *ActiveHealthCheckGetHealthyThresholdAttributeType, val ActiveHealthCheckGetHealthyThresholdRetType) {
*arg = &val
}
/*
types and functions for httpHealthChecks
*/
// isModel
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
type ActiveHealthCheckGetHttpHealthChecksAttributeType = *HttpHealthChecks
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
type ActiveHealthCheckGetHttpHealthChecksArgType = HttpHealthChecks
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
type ActiveHealthCheckGetHttpHealthChecksRetType = HttpHealthChecks
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func getActiveHealthCheckGetHttpHealthChecksAttributeTypeOk(arg ActiveHealthCheckGetHttpHealthChecksAttributeType) (ret ActiveHealthCheckGetHttpHealthChecksRetType, 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 setActiveHealthCheckGetHttpHealthChecksAttributeType(arg *ActiveHealthCheckGetHttpHealthChecksAttributeType, val ActiveHealthCheckGetHttpHealthChecksRetType) {
*arg = &val
}
/*
types and functions for interval
*/
// isNotNullableString
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
type ActiveHealthCheckGetIntervalAttributeType = *string
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func getActiveHealthCheckGetIntervalAttributeTypeOk(arg ActiveHealthCheckGetIntervalAttributeType) (ret ActiveHealthCheckGetIntervalRetType, 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 setActiveHealthCheckGetIntervalAttributeType(arg *ActiveHealthCheckGetIntervalAttributeType, val ActiveHealthCheckGetIntervalRetType) {
*arg = &val
}
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
type ActiveHealthCheckGetIntervalArgType = string
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
type ActiveHealthCheckGetIntervalRetType = string
/*
types and functions for intervalJitter
*/
// isNotNullableString
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
type ActiveHealthCheckGetIntervalJitterAttributeType = *string
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func getActiveHealthCheckGetIntervalJitterAttributeTypeOk(arg ActiveHealthCheckGetIntervalJitterAttributeType) (ret ActiveHealthCheckGetIntervalJitterRetType, 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 setActiveHealthCheckGetIntervalJitterAttributeType(arg *ActiveHealthCheckGetIntervalJitterAttributeType, val ActiveHealthCheckGetIntervalJitterRetType) {
*arg = &val
}
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
type ActiveHealthCheckGetIntervalJitterArgType = string
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
type ActiveHealthCheckGetIntervalJitterRetType = string
/*
types and functions for timeout
*/
// isNotNullableString
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
type ActiveHealthCheckGetTimeoutAttributeType = *string
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func getActiveHealthCheckGetTimeoutAttributeTypeOk(arg ActiveHealthCheckGetTimeoutAttributeType) (ret ActiveHealthCheckGetTimeoutRetType, 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 setActiveHealthCheckGetTimeoutAttributeType(arg *ActiveHealthCheckGetTimeoutAttributeType, val ActiveHealthCheckGetTimeoutRetType) {
*arg = &val
}
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
type ActiveHealthCheckGetTimeoutArgType = string
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
type ActiveHealthCheckGetTimeoutRetType = string
/*
types and functions for unhealthyThreshold
*/
// isInteger
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
type ActiveHealthCheckGetUnhealthyThresholdAttributeType = *int64
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
type ActiveHealthCheckGetUnhealthyThresholdArgType = int64
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
type ActiveHealthCheckGetUnhealthyThresholdRetType = int64
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func getActiveHealthCheckGetUnhealthyThresholdAttributeTypeOk(arg ActiveHealthCheckGetUnhealthyThresholdAttributeType) (ret ActiveHealthCheckGetUnhealthyThresholdRetType, 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 setActiveHealthCheckGetUnhealthyThresholdAttributeType(arg *ActiveHealthCheckGetUnhealthyThresholdAttributeType, val ActiveHealthCheckGetUnhealthyThresholdRetType) {
*arg = &val
}
// ActiveHealthCheck struct for ActiveHealthCheck
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
type ActiveHealthCheck struct {
// Overrides the default port used for health check probes.
// Can be cast to int32 without loss of precision.
AltPort ActiveHealthCheckGetAltPortAttributeType `json:"altPort,omitempty"`
// Healthy threshold of the health checking
// Can be cast to int32 without loss of precision.
HealthyThreshold ActiveHealthCheckGetHealthyThresholdAttributeType `json:"healthyThreshold,omitempty"`
HttpHealthChecks ActiveHealthCheckGetHttpHealthChecksAttributeType `json:"httpHealthChecks,omitempty"`
// Interval duration of health checking in seconds
Interval ActiveHealthCheckGetIntervalAttributeType `json:"interval,omitempty"`
// Interval duration threshold of the health checking in seconds
IntervalJitter ActiveHealthCheckGetIntervalJitterAttributeType `json:"intervalJitter,omitempty"`
// Active health checking timeout duration in seconds
Timeout ActiveHealthCheckGetTimeoutAttributeType `json:"timeout,omitempty"`
// Unhealthy threshold of the health checking
// Can be cast to int32 without loss of precision.
UnhealthyThreshold ActiveHealthCheckGetUnhealthyThresholdAttributeType `json:"unhealthyThreshold,omitempty"`
}
// NewActiveHealthCheck instantiates a new ActiveHealthCheck 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 NewActiveHealthCheck() *ActiveHealthCheck {
this := ActiveHealthCheck{}
return &this
}
// NewActiveHealthCheckWithDefaults instantiates a new ActiveHealthCheck 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 NewActiveHealthCheckWithDefaults() *ActiveHealthCheck {
this := ActiveHealthCheck{}
return &this
}
// GetAltPort returns the AltPort 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 *ActiveHealthCheck) GetAltPort() (res ActiveHealthCheckGetAltPortRetType) {
res, _ = o.GetAltPortOk()
return
}
// GetAltPortOk returns a tuple with the AltPort 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 *ActiveHealthCheck) GetAltPortOk() (ret ActiveHealthCheckGetAltPortRetType, ok bool) {
return getActiveHealthCheckGetAltPortAttributeTypeOk(o.AltPort)
}
// HasAltPort 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 *ActiveHealthCheck) HasAltPort() bool {
_, ok := o.GetAltPortOk()
return ok
}
// SetAltPort gets a reference to the given int64 and assigns it to the AltPort field.
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func (o *ActiveHealthCheck) SetAltPort(v ActiveHealthCheckGetAltPortRetType) {
setActiveHealthCheckGetAltPortAttributeType(&o.AltPort, v)
}
// GetHealthyThreshold returns the HealthyThreshold 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 *ActiveHealthCheck) GetHealthyThreshold() (res ActiveHealthCheckGetHealthyThresholdRetType) {
res, _ = o.GetHealthyThresholdOk()
return
}
// GetHealthyThresholdOk returns a tuple with the HealthyThreshold 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 *ActiveHealthCheck) GetHealthyThresholdOk() (ret ActiveHealthCheckGetHealthyThresholdRetType, ok bool) {
return getActiveHealthCheckGetHealthyThresholdAttributeTypeOk(o.HealthyThreshold)
}
// HasHealthyThreshold 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 *ActiveHealthCheck) HasHealthyThreshold() bool {
_, ok := o.GetHealthyThresholdOk()
return ok
}
// SetHealthyThreshold gets a reference to the given int64 and assigns it to the HealthyThreshold field.
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func (o *ActiveHealthCheck) SetHealthyThreshold(v ActiveHealthCheckGetHealthyThresholdRetType) {
setActiveHealthCheckGetHealthyThresholdAttributeType(&o.HealthyThreshold, v)
}
// GetHttpHealthChecks returns the HttpHealthChecks 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 *ActiveHealthCheck) GetHttpHealthChecks() (res ActiveHealthCheckGetHttpHealthChecksRetType) {
res, _ = o.GetHttpHealthChecksOk()
return
}
// GetHttpHealthChecksOk returns a tuple with the HttpHealthChecks 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 *ActiveHealthCheck) GetHttpHealthChecksOk() (ret ActiveHealthCheckGetHttpHealthChecksRetType, ok bool) {
return getActiveHealthCheckGetHttpHealthChecksAttributeTypeOk(o.HttpHealthChecks)
}
// HasHttpHealthChecks 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 *ActiveHealthCheck) HasHttpHealthChecks() bool {
_, ok := o.GetHttpHealthChecksOk()
return ok
}
// SetHttpHealthChecks gets a reference to the given HttpHealthChecks and assigns it to the HttpHealthChecks field.
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func (o *ActiveHealthCheck) SetHttpHealthChecks(v ActiveHealthCheckGetHttpHealthChecksRetType) {
setActiveHealthCheckGetHttpHealthChecksAttributeType(&o.HttpHealthChecks, v)
}
// GetInterval returns the Interval 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 *ActiveHealthCheck) GetInterval() (res ActiveHealthCheckGetIntervalRetType) {
res, _ = o.GetIntervalOk()
return
}
// GetIntervalOk returns a tuple with the Interval 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 *ActiveHealthCheck) GetIntervalOk() (ret ActiveHealthCheckGetIntervalRetType, ok bool) {
return getActiveHealthCheckGetIntervalAttributeTypeOk(o.Interval)
}
// HasInterval 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 *ActiveHealthCheck) HasInterval() bool {
_, ok := o.GetIntervalOk()
return ok
}
// SetInterval gets a reference to the given string and assigns it to the Interval field.
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func (o *ActiveHealthCheck) SetInterval(v ActiveHealthCheckGetIntervalRetType) {
setActiveHealthCheckGetIntervalAttributeType(&o.Interval, v)
}
// GetIntervalJitter returns the IntervalJitter 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 *ActiveHealthCheck) GetIntervalJitter() (res ActiveHealthCheckGetIntervalJitterRetType) {
res, _ = o.GetIntervalJitterOk()
return
}
// GetIntervalJitterOk returns a tuple with the IntervalJitter 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 *ActiveHealthCheck) GetIntervalJitterOk() (ret ActiveHealthCheckGetIntervalJitterRetType, ok bool) {
return getActiveHealthCheckGetIntervalJitterAttributeTypeOk(o.IntervalJitter)
}
// HasIntervalJitter 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 *ActiveHealthCheck) HasIntervalJitter() bool {
_, ok := o.GetIntervalJitterOk()
return ok
}
// SetIntervalJitter gets a reference to the given string and assigns it to the IntervalJitter field.
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func (o *ActiveHealthCheck) SetIntervalJitter(v ActiveHealthCheckGetIntervalJitterRetType) {
setActiveHealthCheckGetIntervalJitterAttributeType(&o.IntervalJitter, v)
}
// GetTimeout returns the Timeout 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 *ActiveHealthCheck) GetTimeout() (res ActiveHealthCheckGetTimeoutRetType) {
res, _ = o.GetTimeoutOk()
return
}
// GetTimeoutOk returns a tuple with the Timeout 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 *ActiveHealthCheck) GetTimeoutOk() (ret ActiveHealthCheckGetTimeoutRetType, ok bool) {
return getActiveHealthCheckGetTimeoutAttributeTypeOk(o.Timeout)
}
// HasTimeout 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 *ActiveHealthCheck) HasTimeout() bool {
_, ok := o.GetTimeoutOk()
return ok
}
// SetTimeout gets a reference to the given string and assigns it to the Timeout field.
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func (o *ActiveHealthCheck) SetTimeout(v ActiveHealthCheckGetTimeoutRetType) {
setActiveHealthCheckGetTimeoutAttributeType(&o.Timeout, v)
}
// GetUnhealthyThreshold returns the UnhealthyThreshold 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 *ActiveHealthCheck) GetUnhealthyThreshold() (res ActiveHealthCheckGetUnhealthyThresholdRetType) {
res, _ = o.GetUnhealthyThresholdOk()
return
}
// GetUnhealthyThresholdOk returns a tuple with the UnhealthyThreshold 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 *ActiveHealthCheck) GetUnhealthyThresholdOk() (ret ActiveHealthCheckGetUnhealthyThresholdRetType, ok bool) {
return getActiveHealthCheckGetUnhealthyThresholdAttributeTypeOk(o.UnhealthyThreshold)
}
// HasUnhealthyThreshold 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 *ActiveHealthCheck) HasUnhealthyThreshold() bool {
_, ok := o.GetUnhealthyThresholdOk()
return ok
}
// SetUnhealthyThreshold gets a reference to the given int64 and assigns it to the UnhealthyThreshold field.
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func (o *ActiveHealthCheck) SetUnhealthyThreshold(v ActiveHealthCheckGetUnhealthyThresholdRetType) {
setActiveHealthCheckGetUnhealthyThresholdAttributeType(&o.UnhealthyThreshold, v)
}
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func (o ActiveHealthCheck) ToMap() (map[string]interface{}, error) {
toSerialize := map[string]interface{}{}
if val, ok := getActiveHealthCheckGetAltPortAttributeTypeOk(o.AltPort); ok {
toSerialize["AltPort"] = val
}
if val, ok := getActiveHealthCheckGetHealthyThresholdAttributeTypeOk(o.HealthyThreshold); ok {
toSerialize["HealthyThreshold"] = val
}
if val, ok := getActiveHealthCheckGetHttpHealthChecksAttributeTypeOk(o.HttpHealthChecks); ok {
toSerialize["HttpHealthChecks"] = val
}
if val, ok := getActiveHealthCheckGetIntervalAttributeTypeOk(o.Interval); ok {
toSerialize["Interval"] = val
}
if val, ok := getActiveHealthCheckGetIntervalJitterAttributeTypeOk(o.IntervalJitter); ok {
toSerialize["IntervalJitter"] = val
}
if val, ok := getActiveHealthCheckGetTimeoutAttributeTypeOk(o.Timeout); ok {
toSerialize["Timeout"] = val
}
if val, ok := getActiveHealthCheckGetUnhealthyThresholdAttributeTypeOk(o.UnhealthyThreshold); ok {
toSerialize["UnhealthyThreshold"] = val
}
return toSerialize, nil
}
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
type NullableActiveHealthCheck struct {
value *ActiveHealthCheck
isSet bool
}
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func (v NullableActiveHealthCheck) Get() *ActiveHealthCheck {
return v.value
}
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func (v *NullableActiveHealthCheck) Set(val *ActiveHealthCheck) {
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 NullableActiveHealthCheck) 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 *NullableActiveHealthCheck) 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 NewNullableActiveHealthCheck(val *ActiveHealthCheck) *NullableActiveHealthCheck {
return &NullableActiveHealthCheck{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 NullableActiveHealthCheck) 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 *NullableActiveHealthCheck) UnmarshalJSON(src []byte) error {
v.isSet = true
return json.Unmarshal(src, &v.value)
}