-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdatastore_machine_search_query.py
More file actions
1135 lines (832 loc) · 36.4 KB
/
datastore_machine_search_query.py
File metadata and controls
1135 lines (832 loc) · 36.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
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
# coding: utf-8
"""
metal-api
API to manage and control plane resources like machines, switches, operating system images, machine sizes, networks, IP addresses and more # noqa: E501
OpenAPI spec version: v0.42.2
Generated by: https://github.com/swagger-api/swagger-codegen.git
"""
import pprint
import re # noqa: F401
import six
class DatastoreMachineSearchQuery(object):
"""NOTE: This class is auto generated by the swagger code generator program.
Do not edit the class manually.
"""
"""
Attributes:
swagger_types (dict): The key is attribute name
and the value is attribute type.
attribute_map (dict): The key is attribute name
and the value is json key in definition.
"""
swagger_types = {
'allocation_hostname': 'str',
'allocation_image_id': 'str',
'allocation_name': 'str',
'allocation_project': 'str',
'allocation_role': 'str',
'allocation_succeeded': 'bool',
'disk_names': 'list[str]',
'disk_sizes': 'list[int]',
'fru_board_mfg': 'str',
'fru_board_mfg_serial': 'str',
'fru_board_part_number': 'str',
'fru_chassis_part_number': 'str',
'fru_chassis_part_serial': 'str',
'fru_product_manufacturer': 'str',
'fru_product_part_number': 'str',
'fru_product_serial': 'str',
'hardware_memory': 'int',
'id': 'str',
'ipmi_address': 'str',
'ipmi_interface': 'str',
'ipmi_mac_address': 'str',
'ipmi_user': 'str',
'name': 'str',
'network_asns': 'list[int]',
'network_destination_prefixes': 'list[str]',
'network_ids': 'list[str]',
'network_ips': 'list[str]',
'network_prefixes': 'list[str]',
'network_vrfs': 'list[int]',
'nics_mac_addresses': 'list[str]',
'nics_names': 'list[str]',
'nics_neighbor_mac_addresses': 'list[str]',
'nics_neighbor_names': 'list[str]',
'nics_neighbor_vrfs': 'list[str]',
'nics_vrfs': 'list[str]',
'partition_id': 'str',
'rackid': 'str',
'sizeid': 'str',
'state_value': 'str',
'tags': 'list[str]'
}
attribute_map = {
'allocation_hostname': 'allocation_hostname',
'allocation_image_id': 'allocation_image_id',
'allocation_name': 'allocation_name',
'allocation_project': 'allocation_project',
'allocation_role': 'allocation_role',
'allocation_succeeded': 'allocation_succeeded',
'disk_names': 'disk_names',
'disk_sizes': 'disk_sizes',
'fru_board_mfg': 'fru_board_mfg',
'fru_board_mfg_serial': 'fru_board_mfg_serial',
'fru_board_part_number': 'fru_board_part_number',
'fru_chassis_part_number': 'fru_chassis_part_number',
'fru_chassis_part_serial': 'fru_chassis_part_serial',
'fru_product_manufacturer': 'fru_product_manufacturer',
'fru_product_part_number': 'fru_product_part_number',
'fru_product_serial': 'fru_product_serial',
'hardware_memory': 'hardware_memory',
'id': 'id',
'ipmi_address': 'ipmi_address',
'ipmi_interface': 'ipmi_interface',
'ipmi_mac_address': 'ipmi_mac_address',
'ipmi_user': 'ipmi_user',
'name': 'name',
'network_asns': 'network_asns',
'network_destination_prefixes': 'network_destination_prefixes',
'network_ids': 'network_ids',
'network_ips': 'network_ips',
'network_prefixes': 'network_prefixes',
'network_vrfs': 'network_vrfs',
'nics_mac_addresses': 'nics_mac_addresses',
'nics_names': 'nics_names',
'nics_neighbor_mac_addresses': 'nics_neighbor_mac_addresses',
'nics_neighbor_names': 'nics_neighbor_names',
'nics_neighbor_vrfs': 'nics_neighbor_vrfs',
'nics_vrfs': 'nics_vrfs',
'partition_id': 'partition_id',
'rackid': 'rackid',
'sizeid': 'sizeid',
'state_value': 'state_value',
'tags': 'tags'
}
def __init__(self, allocation_hostname=None, allocation_image_id=None, allocation_name=None, allocation_project=None, allocation_role=None, allocation_succeeded=None, disk_names=None, disk_sizes=None, fru_board_mfg=None, fru_board_mfg_serial=None, fru_board_part_number=None, fru_chassis_part_number=None, fru_chassis_part_serial=None, fru_product_manufacturer=None, fru_product_part_number=None, fru_product_serial=None, hardware_memory=None, id=None, ipmi_address=None, ipmi_interface=None, ipmi_mac_address=None, ipmi_user=None, name=None, network_asns=None, network_destination_prefixes=None, network_ids=None, network_ips=None, network_prefixes=None, network_vrfs=None, nics_mac_addresses=None, nics_names=None, nics_neighbor_mac_addresses=None, nics_neighbor_names=None, nics_neighbor_vrfs=None, nics_vrfs=None, partition_id=None, rackid=None, sizeid=None, state_value=None, tags=None): # noqa: E501
"""DatastoreMachineSearchQuery - a model defined in Swagger""" # noqa: E501
self._allocation_hostname = None
self._allocation_image_id = None
self._allocation_name = None
self._allocation_project = None
self._allocation_role = None
self._allocation_succeeded = None
self._disk_names = None
self._disk_sizes = None
self._fru_board_mfg = None
self._fru_board_mfg_serial = None
self._fru_board_part_number = None
self._fru_chassis_part_number = None
self._fru_chassis_part_serial = None
self._fru_product_manufacturer = None
self._fru_product_part_number = None
self._fru_product_serial = None
self._hardware_memory = None
self._id = None
self._ipmi_address = None
self._ipmi_interface = None
self._ipmi_mac_address = None
self._ipmi_user = None
self._name = None
self._network_asns = None
self._network_destination_prefixes = None
self._network_ids = None
self._network_ips = None
self._network_prefixes = None
self._network_vrfs = None
self._nics_mac_addresses = None
self._nics_names = None
self._nics_neighbor_mac_addresses = None
self._nics_neighbor_names = None
self._nics_neighbor_vrfs = None
self._nics_vrfs = None
self._partition_id = None
self._rackid = None
self._sizeid = None
self._state_value = None
self._tags = None
self.discriminator = None
if allocation_hostname is not None:
self.allocation_hostname = allocation_hostname
if allocation_image_id is not None:
self.allocation_image_id = allocation_image_id
if allocation_name is not None:
self.allocation_name = allocation_name
if allocation_project is not None:
self.allocation_project = allocation_project
if allocation_role is not None:
self.allocation_role = allocation_role
if allocation_succeeded is not None:
self.allocation_succeeded = allocation_succeeded
if disk_names is not None:
self.disk_names = disk_names
if disk_sizes is not None:
self.disk_sizes = disk_sizes
if fru_board_mfg is not None:
self.fru_board_mfg = fru_board_mfg
if fru_board_mfg_serial is not None:
self.fru_board_mfg_serial = fru_board_mfg_serial
if fru_board_part_number is not None:
self.fru_board_part_number = fru_board_part_number
if fru_chassis_part_number is not None:
self.fru_chassis_part_number = fru_chassis_part_number
if fru_chassis_part_serial is not None:
self.fru_chassis_part_serial = fru_chassis_part_serial
if fru_product_manufacturer is not None:
self.fru_product_manufacturer = fru_product_manufacturer
if fru_product_part_number is not None:
self.fru_product_part_number = fru_product_part_number
if fru_product_serial is not None:
self.fru_product_serial = fru_product_serial
if hardware_memory is not None:
self.hardware_memory = hardware_memory
if id is not None:
self.id = id
if ipmi_address is not None:
self.ipmi_address = ipmi_address
if ipmi_interface is not None:
self.ipmi_interface = ipmi_interface
if ipmi_mac_address is not None:
self.ipmi_mac_address = ipmi_mac_address
if ipmi_user is not None:
self.ipmi_user = ipmi_user
if name is not None:
self.name = name
if network_asns is not None:
self.network_asns = network_asns
if network_destination_prefixes is not None:
self.network_destination_prefixes = network_destination_prefixes
if network_ids is not None:
self.network_ids = network_ids
if network_ips is not None:
self.network_ips = network_ips
if network_prefixes is not None:
self.network_prefixes = network_prefixes
if network_vrfs is not None:
self.network_vrfs = network_vrfs
if nics_mac_addresses is not None:
self.nics_mac_addresses = nics_mac_addresses
if nics_names is not None:
self.nics_names = nics_names
if nics_neighbor_mac_addresses is not None:
self.nics_neighbor_mac_addresses = nics_neighbor_mac_addresses
if nics_neighbor_names is not None:
self.nics_neighbor_names = nics_neighbor_names
if nics_neighbor_vrfs is not None:
self.nics_neighbor_vrfs = nics_neighbor_vrfs
if nics_vrfs is not None:
self.nics_vrfs = nics_vrfs
if partition_id is not None:
self.partition_id = partition_id
if rackid is not None:
self.rackid = rackid
if sizeid is not None:
self.sizeid = sizeid
if state_value is not None:
self.state_value = state_value
if tags is not None:
self.tags = tags
@property
def allocation_hostname(self):
"""Gets the allocation_hostname of this DatastoreMachineSearchQuery. # noqa: E501
:return: The allocation_hostname of this DatastoreMachineSearchQuery. # noqa: E501
:rtype: str
"""
return self._allocation_hostname
@allocation_hostname.setter
def allocation_hostname(self, allocation_hostname):
"""Sets the allocation_hostname of this DatastoreMachineSearchQuery.
:param allocation_hostname: The allocation_hostname of this DatastoreMachineSearchQuery. # noqa: E501
:type: str
"""
self._allocation_hostname = allocation_hostname
@property
def allocation_image_id(self):
"""Gets the allocation_image_id of this DatastoreMachineSearchQuery. # noqa: E501
:return: The allocation_image_id of this DatastoreMachineSearchQuery. # noqa: E501
:rtype: str
"""
return self._allocation_image_id
@allocation_image_id.setter
def allocation_image_id(self, allocation_image_id):
"""Sets the allocation_image_id of this DatastoreMachineSearchQuery.
:param allocation_image_id: The allocation_image_id of this DatastoreMachineSearchQuery. # noqa: E501
:type: str
"""
self._allocation_image_id = allocation_image_id
@property
def allocation_name(self):
"""Gets the allocation_name of this DatastoreMachineSearchQuery. # noqa: E501
:return: The allocation_name of this DatastoreMachineSearchQuery. # noqa: E501
:rtype: str
"""
return self._allocation_name
@allocation_name.setter
def allocation_name(self, allocation_name):
"""Sets the allocation_name of this DatastoreMachineSearchQuery.
:param allocation_name: The allocation_name of this DatastoreMachineSearchQuery. # noqa: E501
:type: str
"""
self._allocation_name = allocation_name
@property
def allocation_project(self):
"""Gets the allocation_project of this DatastoreMachineSearchQuery. # noqa: E501
:return: The allocation_project of this DatastoreMachineSearchQuery. # noqa: E501
:rtype: str
"""
return self._allocation_project
@allocation_project.setter
def allocation_project(self, allocation_project):
"""Sets the allocation_project of this DatastoreMachineSearchQuery.
:param allocation_project: The allocation_project of this DatastoreMachineSearchQuery. # noqa: E501
:type: str
"""
self._allocation_project = allocation_project
@property
def allocation_role(self):
"""Gets the allocation_role of this DatastoreMachineSearchQuery. # noqa: E501
:return: The allocation_role of this DatastoreMachineSearchQuery. # noqa: E501
:rtype: str
"""
return self._allocation_role
@allocation_role.setter
def allocation_role(self, allocation_role):
"""Sets the allocation_role of this DatastoreMachineSearchQuery.
:param allocation_role: The allocation_role of this DatastoreMachineSearchQuery. # noqa: E501
:type: str
"""
self._allocation_role = allocation_role
@property
def allocation_succeeded(self):
"""Gets the allocation_succeeded of this DatastoreMachineSearchQuery. # noqa: E501
:return: The allocation_succeeded of this DatastoreMachineSearchQuery. # noqa: E501
:rtype: bool
"""
return self._allocation_succeeded
@allocation_succeeded.setter
def allocation_succeeded(self, allocation_succeeded):
"""Sets the allocation_succeeded of this DatastoreMachineSearchQuery.
:param allocation_succeeded: The allocation_succeeded of this DatastoreMachineSearchQuery. # noqa: E501
:type: bool
"""
self._allocation_succeeded = allocation_succeeded
@property
def disk_names(self):
"""Gets the disk_names of this DatastoreMachineSearchQuery. # noqa: E501
:return: The disk_names of this DatastoreMachineSearchQuery. # noqa: E501
:rtype: list[str]
"""
return self._disk_names
@disk_names.setter
def disk_names(self, disk_names):
"""Sets the disk_names of this DatastoreMachineSearchQuery.
:param disk_names: The disk_names of this DatastoreMachineSearchQuery. # noqa: E501
:type: list[str]
"""
self._disk_names = disk_names
@property
def disk_sizes(self):
"""Gets the disk_sizes of this DatastoreMachineSearchQuery. # noqa: E501
:return: The disk_sizes of this DatastoreMachineSearchQuery. # noqa: E501
:rtype: list[int]
"""
return self._disk_sizes
@disk_sizes.setter
def disk_sizes(self, disk_sizes):
"""Sets the disk_sizes of this DatastoreMachineSearchQuery.
:param disk_sizes: The disk_sizes of this DatastoreMachineSearchQuery. # noqa: E501
:type: list[int]
"""
self._disk_sizes = disk_sizes
@property
def fru_board_mfg(self):
"""Gets the fru_board_mfg of this DatastoreMachineSearchQuery. # noqa: E501
:return: The fru_board_mfg of this DatastoreMachineSearchQuery. # noqa: E501
:rtype: str
"""
return self._fru_board_mfg
@fru_board_mfg.setter
def fru_board_mfg(self, fru_board_mfg):
"""Sets the fru_board_mfg of this DatastoreMachineSearchQuery.
:param fru_board_mfg: The fru_board_mfg of this DatastoreMachineSearchQuery. # noqa: E501
:type: str
"""
self._fru_board_mfg = fru_board_mfg
@property
def fru_board_mfg_serial(self):
"""Gets the fru_board_mfg_serial of this DatastoreMachineSearchQuery. # noqa: E501
:return: The fru_board_mfg_serial of this DatastoreMachineSearchQuery. # noqa: E501
:rtype: str
"""
return self._fru_board_mfg_serial
@fru_board_mfg_serial.setter
def fru_board_mfg_serial(self, fru_board_mfg_serial):
"""Sets the fru_board_mfg_serial of this DatastoreMachineSearchQuery.
:param fru_board_mfg_serial: The fru_board_mfg_serial of this DatastoreMachineSearchQuery. # noqa: E501
:type: str
"""
self._fru_board_mfg_serial = fru_board_mfg_serial
@property
def fru_board_part_number(self):
"""Gets the fru_board_part_number of this DatastoreMachineSearchQuery. # noqa: E501
:return: The fru_board_part_number of this DatastoreMachineSearchQuery. # noqa: E501
:rtype: str
"""
return self._fru_board_part_number
@fru_board_part_number.setter
def fru_board_part_number(self, fru_board_part_number):
"""Sets the fru_board_part_number of this DatastoreMachineSearchQuery.
:param fru_board_part_number: The fru_board_part_number of this DatastoreMachineSearchQuery. # noqa: E501
:type: str
"""
self._fru_board_part_number = fru_board_part_number
@property
def fru_chassis_part_number(self):
"""Gets the fru_chassis_part_number of this DatastoreMachineSearchQuery. # noqa: E501
:return: The fru_chassis_part_number of this DatastoreMachineSearchQuery. # noqa: E501
:rtype: str
"""
return self._fru_chassis_part_number
@fru_chassis_part_number.setter
def fru_chassis_part_number(self, fru_chassis_part_number):
"""Sets the fru_chassis_part_number of this DatastoreMachineSearchQuery.
:param fru_chassis_part_number: The fru_chassis_part_number of this DatastoreMachineSearchQuery. # noqa: E501
:type: str
"""
self._fru_chassis_part_number = fru_chassis_part_number
@property
def fru_chassis_part_serial(self):
"""Gets the fru_chassis_part_serial of this DatastoreMachineSearchQuery. # noqa: E501
:return: The fru_chassis_part_serial of this DatastoreMachineSearchQuery. # noqa: E501
:rtype: str
"""
return self._fru_chassis_part_serial
@fru_chassis_part_serial.setter
def fru_chassis_part_serial(self, fru_chassis_part_serial):
"""Sets the fru_chassis_part_serial of this DatastoreMachineSearchQuery.
:param fru_chassis_part_serial: The fru_chassis_part_serial of this DatastoreMachineSearchQuery. # noqa: E501
:type: str
"""
self._fru_chassis_part_serial = fru_chassis_part_serial
@property
def fru_product_manufacturer(self):
"""Gets the fru_product_manufacturer of this DatastoreMachineSearchQuery. # noqa: E501
:return: The fru_product_manufacturer of this DatastoreMachineSearchQuery. # noqa: E501
:rtype: str
"""
return self._fru_product_manufacturer
@fru_product_manufacturer.setter
def fru_product_manufacturer(self, fru_product_manufacturer):
"""Sets the fru_product_manufacturer of this DatastoreMachineSearchQuery.
:param fru_product_manufacturer: The fru_product_manufacturer of this DatastoreMachineSearchQuery. # noqa: E501
:type: str
"""
self._fru_product_manufacturer = fru_product_manufacturer
@property
def fru_product_part_number(self):
"""Gets the fru_product_part_number of this DatastoreMachineSearchQuery. # noqa: E501
:return: The fru_product_part_number of this DatastoreMachineSearchQuery. # noqa: E501
:rtype: str
"""
return self._fru_product_part_number
@fru_product_part_number.setter
def fru_product_part_number(self, fru_product_part_number):
"""Sets the fru_product_part_number of this DatastoreMachineSearchQuery.
:param fru_product_part_number: The fru_product_part_number of this DatastoreMachineSearchQuery. # noqa: E501
:type: str
"""
self._fru_product_part_number = fru_product_part_number
@property
def fru_product_serial(self):
"""Gets the fru_product_serial of this DatastoreMachineSearchQuery. # noqa: E501
:return: The fru_product_serial of this DatastoreMachineSearchQuery. # noqa: E501
:rtype: str
"""
return self._fru_product_serial
@fru_product_serial.setter
def fru_product_serial(self, fru_product_serial):
"""Sets the fru_product_serial of this DatastoreMachineSearchQuery.
:param fru_product_serial: The fru_product_serial of this DatastoreMachineSearchQuery. # noqa: E501
:type: str
"""
self._fru_product_serial = fru_product_serial
@property
def hardware_memory(self):
"""Gets the hardware_memory of this DatastoreMachineSearchQuery. # noqa: E501
:return: The hardware_memory of this DatastoreMachineSearchQuery. # noqa: E501
:rtype: int
"""
return self._hardware_memory
@hardware_memory.setter
def hardware_memory(self, hardware_memory):
"""Sets the hardware_memory of this DatastoreMachineSearchQuery.
:param hardware_memory: The hardware_memory of this DatastoreMachineSearchQuery. # noqa: E501
:type: int
"""
self._hardware_memory = hardware_memory
@property
def id(self):
"""Gets the id of this DatastoreMachineSearchQuery. # noqa: E501
:return: The id of this DatastoreMachineSearchQuery. # noqa: E501
:rtype: str
"""
return self._id
@id.setter
def id(self, id):
"""Sets the id of this DatastoreMachineSearchQuery.
:param id: The id of this DatastoreMachineSearchQuery. # noqa: E501
:type: str
"""
self._id = id
@property
def ipmi_address(self):
"""Gets the ipmi_address of this DatastoreMachineSearchQuery. # noqa: E501
:return: The ipmi_address of this DatastoreMachineSearchQuery. # noqa: E501
:rtype: str
"""
return self._ipmi_address
@ipmi_address.setter
def ipmi_address(self, ipmi_address):
"""Sets the ipmi_address of this DatastoreMachineSearchQuery.
:param ipmi_address: The ipmi_address of this DatastoreMachineSearchQuery. # noqa: E501
:type: str
"""
self._ipmi_address = ipmi_address
@property
def ipmi_interface(self):
"""Gets the ipmi_interface of this DatastoreMachineSearchQuery. # noqa: E501
:return: The ipmi_interface of this DatastoreMachineSearchQuery. # noqa: E501
:rtype: str
"""
return self._ipmi_interface
@ipmi_interface.setter
def ipmi_interface(self, ipmi_interface):
"""Sets the ipmi_interface of this DatastoreMachineSearchQuery.
:param ipmi_interface: The ipmi_interface of this DatastoreMachineSearchQuery. # noqa: E501
:type: str
"""
self._ipmi_interface = ipmi_interface
@property
def ipmi_mac_address(self):
"""Gets the ipmi_mac_address of this DatastoreMachineSearchQuery. # noqa: E501
:return: The ipmi_mac_address of this DatastoreMachineSearchQuery. # noqa: E501
:rtype: str
"""
return self._ipmi_mac_address
@ipmi_mac_address.setter
def ipmi_mac_address(self, ipmi_mac_address):
"""Sets the ipmi_mac_address of this DatastoreMachineSearchQuery.
:param ipmi_mac_address: The ipmi_mac_address of this DatastoreMachineSearchQuery. # noqa: E501
:type: str
"""
self._ipmi_mac_address = ipmi_mac_address
@property
def ipmi_user(self):
"""Gets the ipmi_user of this DatastoreMachineSearchQuery. # noqa: E501
:return: The ipmi_user of this DatastoreMachineSearchQuery. # noqa: E501
:rtype: str
"""
return self._ipmi_user
@ipmi_user.setter
def ipmi_user(self, ipmi_user):
"""Sets the ipmi_user of this DatastoreMachineSearchQuery.
:param ipmi_user: The ipmi_user of this DatastoreMachineSearchQuery. # noqa: E501
:type: str
"""
self._ipmi_user = ipmi_user
@property
def name(self):
"""Gets the name of this DatastoreMachineSearchQuery. # noqa: E501
:return: The name of this DatastoreMachineSearchQuery. # noqa: E501
:rtype: str
"""
return self._name
@name.setter
def name(self, name):
"""Sets the name of this DatastoreMachineSearchQuery.
:param name: The name of this DatastoreMachineSearchQuery. # noqa: E501
:type: str
"""
self._name = name
@property
def network_asns(self):
"""Gets the network_asns of this DatastoreMachineSearchQuery. # noqa: E501
:return: The network_asns of this DatastoreMachineSearchQuery. # noqa: E501
:rtype: list[int]
"""
return self._network_asns
@network_asns.setter
def network_asns(self, network_asns):
"""Sets the network_asns of this DatastoreMachineSearchQuery.
:param network_asns: The network_asns of this DatastoreMachineSearchQuery. # noqa: E501
:type: list[int]
"""
self._network_asns = network_asns
@property
def network_destination_prefixes(self):
"""Gets the network_destination_prefixes of this DatastoreMachineSearchQuery. # noqa: E501
:return: The network_destination_prefixes of this DatastoreMachineSearchQuery. # noqa: E501
:rtype: list[str]
"""
return self._network_destination_prefixes
@network_destination_prefixes.setter
def network_destination_prefixes(self, network_destination_prefixes):
"""Sets the network_destination_prefixes of this DatastoreMachineSearchQuery.
:param network_destination_prefixes: The network_destination_prefixes of this DatastoreMachineSearchQuery. # noqa: E501
:type: list[str]
"""
self._network_destination_prefixes = network_destination_prefixes
@property
def network_ids(self):
"""Gets the network_ids of this DatastoreMachineSearchQuery. # noqa: E501
:return: The network_ids of this DatastoreMachineSearchQuery. # noqa: E501
:rtype: list[str]
"""
return self._network_ids
@network_ids.setter
def network_ids(self, network_ids):
"""Sets the network_ids of this DatastoreMachineSearchQuery.
:param network_ids: The network_ids of this DatastoreMachineSearchQuery. # noqa: E501
:type: list[str]
"""
self._network_ids = network_ids
@property
def network_ips(self):
"""Gets the network_ips of this DatastoreMachineSearchQuery. # noqa: E501
:return: The network_ips of this DatastoreMachineSearchQuery. # noqa: E501
:rtype: list[str]
"""
return self._network_ips
@network_ips.setter
def network_ips(self, network_ips):
"""Sets the network_ips of this DatastoreMachineSearchQuery.
:param network_ips: The network_ips of this DatastoreMachineSearchQuery. # noqa: E501
:type: list[str]
"""
self._network_ips = network_ips
@property
def network_prefixes(self):
"""Gets the network_prefixes of this DatastoreMachineSearchQuery. # noqa: E501
:return: The network_prefixes of this DatastoreMachineSearchQuery. # noqa: E501
:rtype: list[str]
"""
return self._network_prefixes
@network_prefixes.setter
def network_prefixes(self, network_prefixes):
"""Sets the network_prefixes of this DatastoreMachineSearchQuery.
:param network_prefixes: The network_prefixes of this DatastoreMachineSearchQuery. # noqa: E501
:type: list[str]
"""
self._network_prefixes = network_prefixes
@property
def network_vrfs(self):
"""Gets the network_vrfs of this DatastoreMachineSearchQuery. # noqa: E501
:return: The network_vrfs of this DatastoreMachineSearchQuery. # noqa: E501
:rtype: list[int]
"""
return self._network_vrfs
@network_vrfs.setter
def network_vrfs(self, network_vrfs):
"""Sets the network_vrfs of this DatastoreMachineSearchQuery.
:param network_vrfs: The network_vrfs of this DatastoreMachineSearchQuery. # noqa: E501
:type: list[int]
"""
self._network_vrfs = network_vrfs
@property
def nics_mac_addresses(self):
"""Gets the nics_mac_addresses of this DatastoreMachineSearchQuery. # noqa: E501
:return: The nics_mac_addresses of this DatastoreMachineSearchQuery. # noqa: E501
:rtype: list[str]
"""
return self._nics_mac_addresses
@nics_mac_addresses.setter
def nics_mac_addresses(self, nics_mac_addresses):
"""Sets the nics_mac_addresses of this DatastoreMachineSearchQuery.
:param nics_mac_addresses: The nics_mac_addresses of this DatastoreMachineSearchQuery. # noqa: E501
:type: list[str]
"""
self._nics_mac_addresses = nics_mac_addresses
@property
def nics_names(self):
"""Gets the nics_names of this DatastoreMachineSearchQuery. # noqa: E501
:return: The nics_names of this DatastoreMachineSearchQuery. # noqa: E501
:rtype: list[str]
"""
return self._nics_names
@nics_names.setter
def nics_names(self, nics_names):
"""Sets the nics_names of this DatastoreMachineSearchQuery.
:param nics_names: The nics_names of this DatastoreMachineSearchQuery. # noqa: E501
:type: list[str]
"""
self._nics_names = nics_names
@property
def nics_neighbor_mac_addresses(self):
"""Gets the nics_neighbor_mac_addresses of this DatastoreMachineSearchQuery. # noqa: E501
:return: The nics_neighbor_mac_addresses of this DatastoreMachineSearchQuery. # noqa: E501
:rtype: list[str]
"""
return self._nics_neighbor_mac_addresses
@nics_neighbor_mac_addresses.setter
def nics_neighbor_mac_addresses(self, nics_neighbor_mac_addresses):
"""Sets the nics_neighbor_mac_addresses of this DatastoreMachineSearchQuery.
:param nics_neighbor_mac_addresses: The nics_neighbor_mac_addresses of this DatastoreMachineSearchQuery. # noqa: E501
:type: list[str]
"""
self._nics_neighbor_mac_addresses = nics_neighbor_mac_addresses
@property
def nics_neighbor_names(self):
"""Gets the nics_neighbor_names of this DatastoreMachineSearchQuery. # noqa: E501
:return: The nics_neighbor_names of this DatastoreMachineSearchQuery. # noqa: E501
:rtype: list[str]
"""
return self._nics_neighbor_names
@nics_neighbor_names.setter
def nics_neighbor_names(self, nics_neighbor_names):
"""Sets the nics_neighbor_names of this DatastoreMachineSearchQuery.
:param nics_neighbor_names: The nics_neighbor_names of this DatastoreMachineSearchQuery. # noqa: E501
:type: list[str]
"""
self._nics_neighbor_names = nics_neighbor_names
@property
def nics_neighbor_vrfs(self):
"""Gets the nics_neighbor_vrfs of this DatastoreMachineSearchQuery. # noqa: E501
:return: The nics_neighbor_vrfs of this DatastoreMachineSearchQuery. # noqa: E501
:rtype: list[str]
"""
return self._nics_neighbor_vrfs
@nics_neighbor_vrfs.setter
def nics_neighbor_vrfs(self, nics_neighbor_vrfs):
"""Sets the nics_neighbor_vrfs of this DatastoreMachineSearchQuery.
:param nics_neighbor_vrfs: The nics_neighbor_vrfs of this DatastoreMachineSearchQuery. # noqa: E501
:type: list[str]
"""
self._nics_neighbor_vrfs = nics_neighbor_vrfs
@property
def nics_vrfs(self):
"""Gets the nics_vrfs of this DatastoreMachineSearchQuery. # noqa: E501
:return: The nics_vrfs of this DatastoreMachineSearchQuery. # noqa: E501
:rtype: list[str]
"""
return self._nics_vrfs
@nics_vrfs.setter
def nics_vrfs(self, nics_vrfs):
"""Sets the nics_vrfs of this DatastoreMachineSearchQuery.
:param nics_vrfs: The nics_vrfs of this DatastoreMachineSearchQuery. # noqa: E501
:type: list[str]
"""
self._nics_vrfs = nics_vrfs
@property
def partition_id(self):
"""Gets the partition_id of this DatastoreMachineSearchQuery. # noqa: E501
:return: The partition_id of this DatastoreMachineSearchQuery. # noqa: E501
:rtype: str
"""
return self._partition_id
@partition_id.setter
def partition_id(self, partition_id):
"""Sets the partition_id of this DatastoreMachineSearchQuery.
:param partition_id: The partition_id of this DatastoreMachineSearchQuery. # noqa: E501
:type: str
"""
self._partition_id = partition_id