-
Notifications
You must be signed in to change notification settings - Fork 166
/
Copy pathmodel_interface_request.go
1558 lines (1336 loc) · 45.3 KB
/
model_interface_request.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
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
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
NetBox REST API
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
API version: 4.2.2 (4.2)
*/
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.
package netbox
import (
"encoding/json"
"fmt"
)
// checks if the InterfaceRequest type satisfies the MappedNullable interface at compile time
var _ MappedNullable = &InterfaceRequest{}
// InterfaceRequest Adds support for custom fields and tags.
type InterfaceRequest struct {
Device BriefDeviceRequest `json:"device"`
Vdcs []int32 `json:"vdcs,omitempty"`
Module NullableBriefModuleRequest `json:"module,omitempty"`
Name string `json:"name"`
// Physical label
Label *string `json:"label,omitempty"`
Type InterfaceTypeValue `json:"type"`
Enabled *bool `json:"enabled,omitempty"`
Parent NullableNestedInterfaceRequest `json:"parent,omitempty"`
Bridge NullableNestedInterfaceRequest `json:"bridge,omitempty"`
Lag NullableNestedInterfaceRequest `json:"lag,omitempty"`
Mtu NullableInt32 `json:"mtu,omitempty"`
PrimaryMacAddress NullableBriefMACAddressRequest `json:"primary_mac_address,omitempty"`
Speed NullableInt32 `json:"speed,omitempty"`
Duplex NullableInterfaceRequestDuplex `json:"duplex,omitempty"`
Wwn NullableString `json:"wwn,omitempty"`
// This interface is used only for out-of-band management
MgmtOnly *bool `json:"mgmt_only,omitempty"`
Description *string `json:"description,omitempty"`
Mode *InterfaceModeValue `json:"mode,omitempty"`
RfRole *InterfaceRfRoleValue `json:"rf_role,omitempty"`
RfChannel *InterfaceRfChannelValue `json:"rf_channel,omitempty"`
PoeMode *InterfacePoeModeValue `json:"poe_mode,omitempty"`
PoeType *InterfacePoeTypeValue `json:"poe_type,omitempty"`
// Populated by selected channel (if set)
RfChannelFrequency NullableFloat64 `json:"rf_channel_frequency,omitempty"`
// Populated by selected channel (if set)
RfChannelWidth NullableFloat64 `json:"rf_channel_width,omitempty"`
TxPower NullableInt32 `json:"tx_power,omitempty"`
UntaggedVlan NullableBriefVLANRequest `json:"untagged_vlan,omitempty"`
TaggedVlans []int32 `json:"tagged_vlans,omitempty"`
QinqSvlan NullableBriefVLANRequest `json:"qinq_svlan,omitempty"`
VlanTranslationPolicy NullableBriefVLANTranslationPolicyRequest `json:"vlan_translation_policy,omitempty"`
// Treat as if a cable is connected
MarkConnected *bool `json:"mark_connected,omitempty"`
WirelessLans []int32 `json:"wireless_lans,omitempty"`
Vrf NullableBriefVRFRequest `json:"vrf,omitempty"`
Tags []NestedTagRequest `json:"tags,omitempty"`
CustomFields map[string]interface{} `json:"custom_fields,omitempty"`
AdditionalProperties map[string]interface{}
}
type _InterfaceRequest InterfaceRequest
// NewInterfaceRequest instantiates a new InterfaceRequest 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 NewInterfaceRequest(device BriefDeviceRequest, name string, type_ InterfaceTypeValue) *InterfaceRequest {
this := InterfaceRequest{}
this.Device = device
this.Name = name
this.Type = type_
return &this
}
// NewInterfaceRequestWithDefaults instantiates a new InterfaceRequest 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 NewInterfaceRequestWithDefaults() *InterfaceRequest {
this := InterfaceRequest{}
return &this
}
// GetDevice returns the Device field value
func (o *InterfaceRequest) GetDevice() BriefDeviceRequest {
if o == nil {
var ret BriefDeviceRequest
return ret
}
return o.Device
}
// GetDeviceOk returns a tuple with the Device field value
// and a boolean to check if the value has been set.
func (o *InterfaceRequest) GetDeviceOk() (*BriefDeviceRequest, bool) {
if o == nil {
return nil, false
}
return &o.Device, true
}
// SetDevice sets field value
func (o *InterfaceRequest) SetDevice(v BriefDeviceRequest) {
o.Device = v
}
// GetVdcs returns the Vdcs field value if set, zero value otherwise.
func (o *InterfaceRequest) GetVdcs() []int32 {
if o == nil || IsNil(o.Vdcs) {
var ret []int32
return ret
}
return o.Vdcs
}
// GetVdcsOk returns a tuple with the Vdcs field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *InterfaceRequest) GetVdcsOk() ([]int32, bool) {
if o == nil || IsNil(o.Vdcs) {
return nil, false
}
return o.Vdcs, true
}
// HasVdcs returns a boolean if a field has been set.
func (o *InterfaceRequest) HasVdcs() bool {
if o != nil && !IsNil(o.Vdcs) {
return true
}
return false
}
// SetVdcs gets a reference to the given []int32 and assigns it to the Vdcs field.
func (o *InterfaceRequest) SetVdcs(v []int32) {
o.Vdcs = v
}
// GetModule returns the Module field value if set, zero value otherwise (both if not set or set to explicit null).
func (o *InterfaceRequest) GetModule() BriefModuleRequest {
if o == nil || IsNil(o.Module.Get()) {
var ret BriefModuleRequest
return ret
}
return *o.Module.Get()
}
// GetModuleOk returns a tuple with the Module field value if set, nil otherwise
// and a boolean to check if the value has been set.
// NOTE: If the value is an explicit nil, `nil, true` will be returned
func (o *InterfaceRequest) GetModuleOk() (*BriefModuleRequest, bool) {
if o == nil {
return nil, false
}
return o.Module.Get(), o.Module.IsSet()
}
// HasModule returns a boolean if a field has been set.
func (o *InterfaceRequest) HasModule() bool {
if o != nil && o.Module.IsSet() {
return true
}
return false
}
// SetModule gets a reference to the given NullableBriefModuleRequest and assigns it to the Module field.
func (o *InterfaceRequest) SetModule(v BriefModuleRequest) {
o.Module.Set(&v)
}
// SetModuleNil sets the value for Module to be an explicit nil
func (o *InterfaceRequest) SetModuleNil() {
o.Module.Set(nil)
}
// UnsetModule ensures that no value is present for Module, not even an explicit nil
func (o *InterfaceRequest) UnsetModule() {
o.Module.Unset()
}
// GetName returns the Name field value
func (o *InterfaceRequest) GetName() string {
if o == nil {
var ret string
return ret
}
return o.Name
}
// GetNameOk returns a tuple with the Name field value
// and a boolean to check if the value has been set.
func (o *InterfaceRequest) GetNameOk() (*string, bool) {
if o == nil {
return nil, false
}
return &o.Name, true
}
// SetName sets field value
func (o *InterfaceRequest) SetName(v string) {
o.Name = v
}
// GetLabel returns the Label field value if set, zero value otherwise.
func (o *InterfaceRequest) GetLabel() string {
if o == nil || IsNil(o.Label) {
var ret string
return ret
}
return *o.Label
}
// GetLabelOk returns a tuple with the Label field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *InterfaceRequest) GetLabelOk() (*string, bool) {
if o == nil || IsNil(o.Label) {
return nil, false
}
return o.Label, true
}
// HasLabel returns a boolean if a field has been set.
func (o *InterfaceRequest) HasLabel() bool {
if o != nil && !IsNil(o.Label) {
return true
}
return false
}
// SetLabel gets a reference to the given string and assigns it to the Label field.
func (o *InterfaceRequest) SetLabel(v string) {
o.Label = &v
}
// GetType returns the Type field value
func (o *InterfaceRequest) GetType() InterfaceTypeValue {
if o == nil {
var ret InterfaceTypeValue
return ret
}
return o.Type
}
// GetTypeOk returns a tuple with the Type field value
// and a boolean to check if the value has been set.
func (o *InterfaceRequest) GetTypeOk() (*InterfaceTypeValue, bool) {
if o == nil {
return nil, false
}
return &o.Type, true
}
// SetType sets field value
func (o *InterfaceRequest) SetType(v InterfaceTypeValue) {
o.Type = v
}
// GetEnabled returns the Enabled field value if set, zero value otherwise.
func (o *InterfaceRequest) GetEnabled() bool {
if o == nil || IsNil(o.Enabled) {
var ret bool
return ret
}
return *o.Enabled
}
// GetEnabledOk returns a tuple with the Enabled field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *InterfaceRequest) GetEnabledOk() (*bool, bool) {
if o == nil || IsNil(o.Enabled) {
return nil, false
}
return o.Enabled, true
}
// HasEnabled returns a boolean if a field has been set.
func (o *InterfaceRequest) HasEnabled() bool {
if o != nil && !IsNil(o.Enabled) {
return true
}
return false
}
// SetEnabled gets a reference to the given bool and assigns it to the Enabled field.
func (o *InterfaceRequest) SetEnabled(v bool) {
o.Enabled = &v
}
// GetParent returns the Parent field value if set, zero value otherwise (both if not set or set to explicit null).
func (o *InterfaceRequest) GetParent() NestedInterfaceRequest {
if o == nil || IsNil(o.Parent.Get()) {
var ret NestedInterfaceRequest
return ret
}
return *o.Parent.Get()
}
// GetParentOk returns a tuple with the Parent field value if set, nil otherwise
// and a boolean to check if the value has been set.
// NOTE: If the value is an explicit nil, `nil, true` will be returned
func (o *InterfaceRequest) GetParentOk() (*NestedInterfaceRequest, bool) {
if o == nil {
return nil, false
}
return o.Parent.Get(), o.Parent.IsSet()
}
// HasParent returns a boolean if a field has been set.
func (o *InterfaceRequest) HasParent() bool {
if o != nil && o.Parent.IsSet() {
return true
}
return false
}
// SetParent gets a reference to the given NullableNestedInterfaceRequest and assigns it to the Parent field.
func (o *InterfaceRequest) SetParent(v NestedInterfaceRequest) {
o.Parent.Set(&v)
}
// SetParentNil sets the value for Parent to be an explicit nil
func (o *InterfaceRequest) SetParentNil() {
o.Parent.Set(nil)
}
// UnsetParent ensures that no value is present for Parent, not even an explicit nil
func (o *InterfaceRequest) UnsetParent() {
o.Parent.Unset()
}
// GetBridge returns the Bridge field value if set, zero value otherwise (both if not set or set to explicit null).
func (o *InterfaceRequest) GetBridge() NestedInterfaceRequest {
if o == nil || IsNil(o.Bridge.Get()) {
var ret NestedInterfaceRequest
return ret
}
return *o.Bridge.Get()
}
// GetBridgeOk returns a tuple with the Bridge field value if set, nil otherwise
// and a boolean to check if the value has been set.
// NOTE: If the value is an explicit nil, `nil, true` will be returned
func (o *InterfaceRequest) GetBridgeOk() (*NestedInterfaceRequest, bool) {
if o == nil {
return nil, false
}
return o.Bridge.Get(), o.Bridge.IsSet()
}
// HasBridge returns a boolean if a field has been set.
func (o *InterfaceRequest) HasBridge() bool {
if o != nil && o.Bridge.IsSet() {
return true
}
return false
}
// SetBridge gets a reference to the given NullableNestedInterfaceRequest and assigns it to the Bridge field.
func (o *InterfaceRequest) SetBridge(v NestedInterfaceRequest) {
o.Bridge.Set(&v)
}
// SetBridgeNil sets the value for Bridge to be an explicit nil
func (o *InterfaceRequest) SetBridgeNil() {
o.Bridge.Set(nil)
}
// UnsetBridge ensures that no value is present for Bridge, not even an explicit nil
func (o *InterfaceRequest) UnsetBridge() {
o.Bridge.Unset()
}
// GetLag returns the Lag field value if set, zero value otherwise (both if not set or set to explicit null).
func (o *InterfaceRequest) GetLag() NestedInterfaceRequest {
if o == nil || IsNil(o.Lag.Get()) {
var ret NestedInterfaceRequest
return ret
}
return *o.Lag.Get()
}
// GetLagOk returns a tuple with the Lag field value if set, nil otherwise
// and a boolean to check if the value has been set.
// NOTE: If the value is an explicit nil, `nil, true` will be returned
func (o *InterfaceRequest) GetLagOk() (*NestedInterfaceRequest, bool) {
if o == nil {
return nil, false
}
return o.Lag.Get(), o.Lag.IsSet()
}
// HasLag returns a boolean if a field has been set.
func (o *InterfaceRequest) HasLag() bool {
if o != nil && o.Lag.IsSet() {
return true
}
return false
}
// SetLag gets a reference to the given NullableNestedInterfaceRequest and assigns it to the Lag field.
func (o *InterfaceRequest) SetLag(v NestedInterfaceRequest) {
o.Lag.Set(&v)
}
// SetLagNil sets the value for Lag to be an explicit nil
func (o *InterfaceRequest) SetLagNil() {
o.Lag.Set(nil)
}
// UnsetLag ensures that no value is present for Lag, not even an explicit nil
func (o *InterfaceRequest) UnsetLag() {
o.Lag.Unset()
}
// GetMtu returns the Mtu field value if set, zero value otherwise (both if not set or set to explicit null).
func (o *InterfaceRequest) GetMtu() int32 {
if o == nil || IsNil(o.Mtu.Get()) {
var ret int32
return ret
}
return *o.Mtu.Get()
}
// GetMtuOk returns a tuple with the Mtu field value if set, nil otherwise
// and a boolean to check if the value has been set.
// NOTE: If the value is an explicit nil, `nil, true` will be returned
func (o *InterfaceRequest) GetMtuOk() (*int32, bool) {
if o == nil {
return nil, false
}
return o.Mtu.Get(), o.Mtu.IsSet()
}
// HasMtu returns a boolean if a field has been set.
func (o *InterfaceRequest) HasMtu() bool {
if o != nil && o.Mtu.IsSet() {
return true
}
return false
}
// SetMtu gets a reference to the given NullableInt32 and assigns it to the Mtu field.
func (o *InterfaceRequest) SetMtu(v int32) {
o.Mtu.Set(&v)
}
// SetMtuNil sets the value for Mtu to be an explicit nil
func (o *InterfaceRequest) SetMtuNil() {
o.Mtu.Set(nil)
}
// UnsetMtu ensures that no value is present for Mtu, not even an explicit nil
func (o *InterfaceRequest) UnsetMtu() {
o.Mtu.Unset()
}
// GetPrimaryMacAddress returns the PrimaryMacAddress field value if set, zero value otherwise (both if not set or set to explicit null).
func (o *InterfaceRequest) GetPrimaryMacAddress() BriefMACAddressRequest {
if o == nil || IsNil(o.PrimaryMacAddress.Get()) {
var ret BriefMACAddressRequest
return ret
}
return *o.PrimaryMacAddress.Get()
}
// GetPrimaryMacAddressOk returns a tuple with the PrimaryMacAddress field value if set, nil otherwise
// and a boolean to check if the value has been set.
// NOTE: If the value is an explicit nil, `nil, true` will be returned
func (o *InterfaceRequest) GetPrimaryMacAddressOk() (*BriefMACAddressRequest, bool) {
if o == nil {
return nil, false
}
return o.PrimaryMacAddress.Get(), o.PrimaryMacAddress.IsSet()
}
// HasPrimaryMacAddress returns a boolean if a field has been set.
func (o *InterfaceRequest) HasPrimaryMacAddress() bool {
if o != nil && o.PrimaryMacAddress.IsSet() {
return true
}
return false
}
// SetPrimaryMacAddress gets a reference to the given NullableBriefMACAddressRequest and assigns it to the PrimaryMacAddress field.
func (o *InterfaceRequest) SetPrimaryMacAddress(v BriefMACAddressRequest) {
o.PrimaryMacAddress.Set(&v)
}
// SetPrimaryMacAddressNil sets the value for PrimaryMacAddress to be an explicit nil
func (o *InterfaceRequest) SetPrimaryMacAddressNil() {
o.PrimaryMacAddress.Set(nil)
}
// UnsetPrimaryMacAddress ensures that no value is present for PrimaryMacAddress, not even an explicit nil
func (o *InterfaceRequest) UnsetPrimaryMacAddress() {
o.PrimaryMacAddress.Unset()
}
// GetSpeed returns the Speed field value if set, zero value otherwise (both if not set or set to explicit null).
func (o *InterfaceRequest) GetSpeed() int32 {
if o == nil || IsNil(o.Speed.Get()) {
var ret int32
return ret
}
return *o.Speed.Get()
}
// GetSpeedOk returns a tuple with the Speed field value if set, nil otherwise
// and a boolean to check if the value has been set.
// NOTE: If the value is an explicit nil, `nil, true` will be returned
func (o *InterfaceRequest) GetSpeedOk() (*int32, bool) {
if o == nil {
return nil, false
}
return o.Speed.Get(), o.Speed.IsSet()
}
// HasSpeed returns a boolean if a field has been set.
func (o *InterfaceRequest) HasSpeed() bool {
if o != nil && o.Speed.IsSet() {
return true
}
return false
}
// SetSpeed gets a reference to the given NullableInt32 and assigns it to the Speed field.
func (o *InterfaceRequest) SetSpeed(v int32) {
o.Speed.Set(&v)
}
// SetSpeedNil sets the value for Speed to be an explicit nil
func (o *InterfaceRequest) SetSpeedNil() {
o.Speed.Set(nil)
}
// UnsetSpeed ensures that no value is present for Speed, not even an explicit nil
func (o *InterfaceRequest) UnsetSpeed() {
o.Speed.Unset()
}
// GetDuplex returns the Duplex field value if set, zero value otherwise (both if not set or set to explicit null).
func (o *InterfaceRequest) GetDuplex() InterfaceRequestDuplex {
if o == nil || IsNil(o.Duplex.Get()) {
var ret InterfaceRequestDuplex
return ret
}
return *o.Duplex.Get()
}
// GetDuplexOk returns a tuple with the Duplex field value if set, nil otherwise
// and a boolean to check if the value has been set.
// NOTE: If the value is an explicit nil, `nil, true` will be returned
func (o *InterfaceRequest) GetDuplexOk() (*InterfaceRequestDuplex, bool) {
if o == nil {
return nil, false
}
return o.Duplex.Get(), o.Duplex.IsSet()
}
// HasDuplex returns a boolean if a field has been set.
func (o *InterfaceRequest) HasDuplex() bool {
if o != nil && o.Duplex.IsSet() {
return true
}
return false
}
// SetDuplex gets a reference to the given NullableInterfaceRequestDuplex and assigns it to the Duplex field.
func (o *InterfaceRequest) SetDuplex(v InterfaceRequestDuplex) {
o.Duplex.Set(&v)
}
// SetDuplexNil sets the value for Duplex to be an explicit nil
func (o *InterfaceRequest) SetDuplexNil() {
o.Duplex.Set(nil)
}
// UnsetDuplex ensures that no value is present for Duplex, not even an explicit nil
func (o *InterfaceRequest) UnsetDuplex() {
o.Duplex.Unset()
}
// GetWwn returns the Wwn field value if set, zero value otherwise (both if not set or set to explicit null).
func (o *InterfaceRequest) GetWwn() string {
if o == nil || IsNil(o.Wwn.Get()) {
var ret string
return ret
}
return *o.Wwn.Get()
}
// GetWwnOk returns a tuple with the Wwn field value if set, nil otherwise
// and a boolean to check if the value has been set.
// NOTE: If the value is an explicit nil, `nil, true` will be returned
func (o *InterfaceRequest) GetWwnOk() (*string, bool) {
if o == nil {
return nil, false
}
return o.Wwn.Get(), o.Wwn.IsSet()
}
// HasWwn returns a boolean if a field has been set.
func (o *InterfaceRequest) HasWwn() bool {
if o != nil && o.Wwn.IsSet() {
return true
}
return false
}
// SetWwn gets a reference to the given NullableString and assigns it to the Wwn field.
func (o *InterfaceRequest) SetWwn(v string) {
o.Wwn.Set(&v)
}
// SetWwnNil sets the value for Wwn to be an explicit nil
func (o *InterfaceRequest) SetWwnNil() {
o.Wwn.Set(nil)
}
// UnsetWwn ensures that no value is present for Wwn, not even an explicit nil
func (o *InterfaceRequest) UnsetWwn() {
o.Wwn.Unset()
}
// GetMgmtOnly returns the MgmtOnly field value if set, zero value otherwise.
func (o *InterfaceRequest) GetMgmtOnly() bool {
if o == nil || IsNil(o.MgmtOnly) {
var ret bool
return ret
}
return *o.MgmtOnly
}
// GetMgmtOnlyOk returns a tuple with the MgmtOnly field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *InterfaceRequest) GetMgmtOnlyOk() (*bool, bool) {
if o == nil || IsNil(o.MgmtOnly) {
return nil, false
}
return o.MgmtOnly, true
}
// HasMgmtOnly returns a boolean if a field has been set.
func (o *InterfaceRequest) HasMgmtOnly() bool {
if o != nil && !IsNil(o.MgmtOnly) {
return true
}
return false
}
// SetMgmtOnly gets a reference to the given bool and assigns it to the MgmtOnly field.
func (o *InterfaceRequest) SetMgmtOnly(v bool) {
o.MgmtOnly = &v
}
// GetDescription returns the Description field value if set, zero value otherwise.
func (o *InterfaceRequest) GetDescription() string {
if o == nil || IsNil(o.Description) {
var ret string
return ret
}
return *o.Description
}
// GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *InterfaceRequest) GetDescriptionOk() (*string, bool) {
if o == nil || IsNil(o.Description) {
return nil, false
}
return o.Description, true
}
// HasDescription returns a boolean if a field has been set.
func (o *InterfaceRequest) HasDescription() bool {
if o != nil && !IsNil(o.Description) {
return true
}
return false
}
// SetDescription gets a reference to the given string and assigns it to the Description field.
func (o *InterfaceRequest) SetDescription(v string) {
o.Description = &v
}
// GetMode returns the Mode field value if set, zero value otherwise.
func (o *InterfaceRequest) GetMode() InterfaceModeValue {
if o == nil || IsNil(o.Mode) {
var ret InterfaceModeValue
return ret
}
return *o.Mode
}
// GetModeOk returns a tuple with the Mode field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *InterfaceRequest) GetModeOk() (*InterfaceModeValue, bool) {
if o == nil || IsNil(o.Mode) {
return nil, false
}
return o.Mode, true
}
// HasMode returns a boolean if a field has been set.
func (o *InterfaceRequest) HasMode() bool {
if o != nil && !IsNil(o.Mode) {
return true
}
return false
}
// SetMode gets a reference to the given InterfaceModeValue and assigns it to the Mode field.
func (o *InterfaceRequest) SetMode(v InterfaceModeValue) {
o.Mode = &v
}
// GetRfRole returns the RfRole field value if set, zero value otherwise.
func (o *InterfaceRequest) GetRfRole() InterfaceRfRoleValue {
if o == nil || IsNil(o.RfRole) {
var ret InterfaceRfRoleValue
return ret
}
return *o.RfRole
}
// GetRfRoleOk returns a tuple with the RfRole field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *InterfaceRequest) GetRfRoleOk() (*InterfaceRfRoleValue, bool) {
if o == nil || IsNil(o.RfRole) {
return nil, false
}
return o.RfRole, true
}
// HasRfRole returns a boolean if a field has been set.
func (o *InterfaceRequest) HasRfRole() bool {
if o != nil && !IsNil(o.RfRole) {
return true
}
return false
}
// SetRfRole gets a reference to the given InterfaceRfRoleValue and assigns it to the RfRole field.
func (o *InterfaceRequest) SetRfRole(v InterfaceRfRoleValue) {
o.RfRole = &v
}
// GetRfChannel returns the RfChannel field value if set, zero value otherwise.
func (o *InterfaceRequest) GetRfChannel() InterfaceRfChannelValue {
if o == nil || IsNil(o.RfChannel) {
var ret InterfaceRfChannelValue
return ret
}
return *o.RfChannel
}
// GetRfChannelOk returns a tuple with the RfChannel field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *InterfaceRequest) GetRfChannelOk() (*InterfaceRfChannelValue, bool) {
if o == nil || IsNil(o.RfChannel) {
return nil, false
}
return o.RfChannel, true
}
// HasRfChannel returns a boolean if a field has been set.
func (o *InterfaceRequest) HasRfChannel() bool {
if o != nil && !IsNil(o.RfChannel) {
return true
}
return false
}
// SetRfChannel gets a reference to the given InterfaceRfChannelValue and assigns it to the RfChannel field.
func (o *InterfaceRequest) SetRfChannel(v InterfaceRfChannelValue) {
o.RfChannel = &v
}
// GetPoeMode returns the PoeMode field value if set, zero value otherwise.
func (o *InterfaceRequest) GetPoeMode() InterfacePoeModeValue {
if o == nil || IsNil(o.PoeMode) {
var ret InterfacePoeModeValue
return ret
}
return *o.PoeMode
}
// GetPoeModeOk returns a tuple with the PoeMode field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *InterfaceRequest) GetPoeModeOk() (*InterfacePoeModeValue, bool) {
if o == nil || IsNil(o.PoeMode) {
return nil, false
}
return o.PoeMode, true
}
// HasPoeMode returns a boolean if a field has been set.
func (o *InterfaceRequest) HasPoeMode() bool {
if o != nil && !IsNil(o.PoeMode) {
return true
}
return false
}
// SetPoeMode gets a reference to the given InterfacePoeModeValue and assigns it to the PoeMode field.
func (o *InterfaceRequest) SetPoeMode(v InterfacePoeModeValue) {
o.PoeMode = &v
}
// GetPoeType returns the PoeType field value if set, zero value otherwise.
func (o *InterfaceRequest) GetPoeType() InterfacePoeTypeValue {
if o == nil || IsNil(o.PoeType) {
var ret InterfacePoeTypeValue
return ret
}
return *o.PoeType
}
// GetPoeTypeOk returns a tuple with the PoeType field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *InterfaceRequest) GetPoeTypeOk() (*InterfacePoeTypeValue, bool) {
if o == nil || IsNil(o.PoeType) {
return nil, false
}
return o.PoeType, true
}
// HasPoeType returns a boolean if a field has been set.
func (o *InterfaceRequest) HasPoeType() bool {
if o != nil && !IsNil(o.PoeType) {
return true
}
return false
}
// SetPoeType gets a reference to the given InterfacePoeTypeValue and assigns it to the PoeType field.
func (o *InterfaceRequest) SetPoeType(v InterfacePoeTypeValue) {
o.PoeType = &v
}
// GetRfChannelFrequency returns the RfChannelFrequency field value if set, zero value otherwise (both if not set or set to explicit null).
func (o *InterfaceRequest) GetRfChannelFrequency() float64 {
if o == nil || IsNil(o.RfChannelFrequency.Get()) {
var ret float64
return ret
}
return *o.RfChannelFrequency.Get()
}
// GetRfChannelFrequencyOk returns a tuple with the RfChannelFrequency field value if set, nil otherwise
// and a boolean to check if the value has been set.
// NOTE: If the value is an explicit nil, `nil, true` will be returned
func (o *InterfaceRequest) GetRfChannelFrequencyOk() (*float64, bool) {
if o == nil {
return nil, false
}
return o.RfChannelFrequency.Get(), o.RfChannelFrequency.IsSet()
}
// HasRfChannelFrequency returns a boolean if a field has been set.
func (o *InterfaceRequest) HasRfChannelFrequency() bool {
if o != nil && o.RfChannelFrequency.IsSet() {
return true
}
return false
}
// SetRfChannelFrequency gets a reference to the given NullableFloat64 and assigns it to the RfChannelFrequency field.
func (o *InterfaceRequest) SetRfChannelFrequency(v float64) {
o.RfChannelFrequency.Set(&v)
}
// SetRfChannelFrequencyNil sets the value for RfChannelFrequency to be an explicit nil
func (o *InterfaceRequest) SetRfChannelFrequencyNil() {
o.RfChannelFrequency.Set(nil)
}
// UnsetRfChannelFrequency ensures that no value is present for RfChannelFrequency, not even an explicit nil
func (o *InterfaceRequest) UnsetRfChannelFrequency() {
o.RfChannelFrequency.Unset()
}
// GetRfChannelWidth returns the RfChannelWidth field value if set, zero value otherwise (both if not set or set to explicit null).
func (o *InterfaceRequest) GetRfChannelWidth() float64 {
if o == nil || IsNil(o.RfChannelWidth.Get()) {
var ret float64
return ret
}
return *o.RfChannelWidth.Get()
}
// GetRfChannelWidthOk returns a tuple with the RfChannelWidth field value if set, nil otherwise
// and a boolean to check if the value has been set.
// NOTE: If the value is an explicit nil, `nil, true` will be returned
func (o *InterfaceRequest) GetRfChannelWidthOk() (*float64, bool) {
if o == nil {
return nil, false
}
return o.RfChannelWidth.Get(), o.RfChannelWidth.IsSet()
}
// HasRfChannelWidth returns a boolean if a field has been set.
func (o *InterfaceRequest) HasRfChannelWidth() bool {
if o != nil && o.RfChannelWidth.IsSet() {
return true
}
return false
}
// SetRfChannelWidth gets a reference to the given NullableFloat64 and assigns it to the RfChannelWidth field.
func (o *InterfaceRequest) SetRfChannelWidth(v float64) {
o.RfChannelWidth.Set(&v)
}
// SetRfChannelWidthNil sets the value for RfChannelWidth to be an explicit nil
func (o *InterfaceRequest) SetRfChannelWidthNil() {
o.RfChannelWidth.Set(nil)
}
// UnsetRfChannelWidth ensures that no value is present for RfChannelWidth, not even an explicit nil
func (o *InterfaceRequest) UnsetRfChannelWidth() {
o.RfChannelWidth.Unset()
}
// GetTxPower returns the TxPower field value if set, zero value otherwise (both if not set or set to explicit null).
func (o *InterfaceRequest) GetTxPower() int32 {
if o == nil || IsNil(o.TxPower.Get()) {
var ret int32
return ret
}
return *o.TxPower.Get()
}
// GetTxPowerOk returns a tuple with the TxPower field value if set, nil otherwise
// and a boolean to check if the value has been set.
// NOTE: If the value is an explicit nil, `nil, true` will be returned
func (o *InterfaceRequest) GetTxPowerOk() (*int32, bool) {
if o == nil {
return nil, false
}
return o.TxPower.Get(), o.TxPower.IsSet()
}
// HasTxPower returns a boolean if a field has been set.
func (o *InterfaceRequest) HasTxPower() bool {
if o != nil && o.TxPower.IsSet() {
return true
}
return false
}
// SetTxPower gets a reference to the given NullableInt32 and assigns it to the TxPower field.
func (o *InterfaceRequest) SetTxPower(v int32) {
o.TxPower.Set(&v)
}
// SetTxPowerNil sets the value for TxPower to be an explicit nil
func (o *InterfaceRequest) SetTxPowerNil() {
o.TxPower.Set(nil)
}
// UnsetTxPower ensures that no value is present for TxPower, not even an explicit nil
func (o *InterfaceRequest) UnsetTxPower() {
o.TxPower.Unset()
}
// GetUntaggedVlan returns the UntaggedVlan field value if set, zero value otherwise (both if not set or set to explicit null).
func (o *InterfaceRequest) GetUntaggedVlan() BriefVLANRequest {
if o == nil || IsNil(o.UntaggedVlan.Get()) {
var ret BriefVLANRequest
return ret
}
return *o.UntaggedVlan.Get()
}
// GetUntaggedVlanOk returns a tuple with the UntaggedVlan field value if set, nil otherwise
// and a boolean to check if the value has been set.
// NOTE: If the value is an explicit nil, `nil, true` will be returned
func (o *InterfaceRequest) GetUntaggedVlanOk() (*BriefVLANRequest, bool) {
if o == nil {
return nil, false