summaryrefslogtreecommitdiff
path: root/api-ref/source/parameters.yaml
blob: b55ef405f2066edfc682a7231bc6d0f5d4d44ca8 (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
# variables in header
header_version:
  description: |
    Specific API microversion used to generate this response.
  in: header
  required: true
  type: string
openstack-request-id:
  description: >
    A unique ID for tracking the request. The request ID associated with the request
    appears in the log lines for that request. By default, the middleware configuration
    ensures that the request ID appears in the log files.
  in: header
  required: false
  type: string
x-openstack-ironic-api-max-version:
  description: |
    Maximum API microversion supported by this endpoint, eg. "1.22"
  in: header
  required: true
  type: string
x-openstack-ironic-api-min-version:
  description: |
    Minimum API microversion supported by this endpoint, eg. "1.1"
  in: header
  required: true
  type: string
x-openstack-ironic-api-version:
  description: >
    A request SHOULD include this header to indicate to the Ironic API service what
    version the client supports. The server will transform the response object into
    compliance with the requested version, if it is supported, or return a
    406 Not Supported error.
    If this header is not supplied, the server will default to ``min_version``
    in all responses.
  in: header
  required: true
  type: string

# variables in path
allocation_ident:
  description: |
    The UUID or name of the allocation.
  in: path
  required: true
  type: string
bios_setting:
  description: |
    The name of the Bios setting.
  in: path
  required: true
  type: string
chassis_ident:
  description: |
    The UUID of the chassis.
  in: path
  required: true
  type: string
component:
  description: |
    The Bare Metal node component.
  in: path
  required: true
  type: string
deploy_template_ident:
  description: |
    The UUID or name of the deploy template.
  in: path
  required: true
  type: string
driver_ident:
  description: |
    The name of the driver.
  in: path
  required: true
  type: string
history_event_ident:
  description: |
    The UUID of a history event.
  in: path
  required: true
  type: string
hostname_ident:
  description: |
    The hostname of the conductor.
  in: path
  required: true
  type: string
ind_ident:
  description: |
    The indicator of a Bare Metal component.
  in: path
  required: true
  type: string
node_id:
  description: |
    The UUID of the node.
  in: path
  required: false
  type: string
node_ident:
  description: |
    The UUID or Name of the node.
  in: path
  required: true
  type: string
port_ident:
  description: |
    The UUID of the port.
  in: path
  required: true
  type: string
portgroup_ident:
  description: |
    The UUID or Name of the portgroup.
  in: path
  required: true
  type: string
trait:
  description: |
    A single trait for this node.
  in: path
  required: true
  type: string
volume_connector_id:
  description: |
    The UUID of the Volume connector.
  in: path
  required: true
  type: string
volume_target_id:
  description: |
    The UUID of the Volume target.
  in: path
  required: true
  type: string

agent_token:
  description: |
    The token of the ironic-python-agent ramdisk, sent to the Bare Metal
    service for authentication purposes.
  in: query
  required: true
  type: string
agent_version:
  description: |
    The version of the ironic-python-agent ramdisk, sent back to the Bare Metal
    service and stored during provisioning.
  in: query
  required: true
  type: string
callback_url:
  description: |
    The URL of an active ironic-python-agent ramdisk, sent back to the Bare
    Metal service and stored temporarily during a provisioning action.
  in: query
  required: true
  type: string

detail:
  description: |
    Whether to show detailed information about the resource. This cannot be
    set to True if ``fields`` parameter is specified.
  in: query
  required: false
  type: boolean

# variables in driver query string
driver_detail:
  description: |
    Whether to show detailed information about the drivers (e.g. the
    "boot_interface" field).
  in: query
  required: false
  type: boolean
driver_type:
  description: |
    Only list drivers of this type. Options are "classic" or "dynamic".
  in: query
  required: false
  type: string

# variables common to all query strings
fields:
  description: |
    One or more fields to be returned in the response.

    For example, the following request returns only the ``uuid``
    and ``name`` fields for each node:

    ::

       GET /v1/nodes?fields=uuid,name
  in: query
  required: false
  type: array
fields_for_conductor:
  description: |
    One or more fields to be returned in the response.

    For example, the following request returns only the ``hostname``
    and ``alive`` fields for each conductor:

    ::

       GET /v1/conductors?fields=hostname,alive
  in: query
  required: false
  type: array
limit:
  description: |
    Requests a page size of items. Returns a number of items up to a limit
    value. Use the ``limit`` parameter to make an initial limited request and
    use the ID of the last-seen item from the response as the ``marker``
    parameter value in a subsequent limited request. This value cannot be
    larger than the ``max_limit`` option in the ``[api]`` section of the
    configuration. If it is higher than ``max_limit``, only ``max-limit``
    resources will be returned.
  in: query
  required: false
  type: integer
marker:
  description: |
    The ID of the last-seen item. Use the ``limit``
    parameter to make an initial limited request and use the ID of the
    last-seen item from the response as the ``marker`` parameter value
    in a subsequent limited request.
  in: query
  required: false
  type: string

# variables in the vendor_passthru query string
method_name:
  description: |
    Driver specific method name.
  in: query
  required: true
  type: string

# variable in the lookup query string
r_addresses:
  description: |
    Optional list of one or more Port addresses.
  in: query
  required: false
  type: array

# variables in the query string
r_allocation_node:
  description: |
    Filter the list of allocations by the node UUID or name.
  in: query
  required: false
  type: string
r_allocation_state:
  description: |
    Filter the list of allocations by the allocation state, one of ``active``,
    ``allocating`` or ``error``.
  in: query
  required: false
  type: string
r_associated:
  description: |
    Filter the list of returned nodes and only return those which are, or are
    not, associated with an ``instance_uuid``.
  in: query
  required: false
  type: boolean
r_conductor:
  description: |
    Filter the list of returned nodes, and only return those with the
    specified ``conductor``.
  in: query
  required: false
  type: string
r_conductor_group:
  description: |
    Filter the list of returned nodes, and only return those with the
    specified ``conductor_group``. Case-insensitive string up to 255
    characters, containing ``a-z``, ``0-9``, ``_``, ``-``, and ``.``.
  in: query
  required: false
  type: string
r_description_contains:
  description: |
    Filter the list of returned nodes, and only return those containing
    substring specified by ``description_contains``.
  in: query
  requred: false
  type: string
r_driver:
  description: |
    Filter the list of returned nodes, and only return those with the specified
    ``driver``.
  in: query
  required: false
  type: string
r_fault:
  description: |
    Filter the list of returned nodes, and only return those with the specified
    ``fault``. Possible values are determined by faults supported by ironic,
    e.g., ``power failure``, ``clean failure`` or ``rescue abort failure``.
  in: query
  required: false
  type: string
r_instance_uuid:
  description: |
    Filter the list of returned nodes, and only return the node with this
    specific instance UUID, or an empty set if not found.
  in: query
  required: false
  type: string
r_maintenance:
  description: |
    Filter the list of returned nodes and only return those with
    ``maintenance`` set to ``True`` or ``False``.
  in: query
  required: false
  type: boolean
# variable in the lookup query string
r_node_uuid:
  description: |
    Optional Node UUID.
  in: query
  required: false
  type: string
r_owner:
  description: |
    Filter the list of returned allocations, and only return those with
    the specified owner.
  in: query
  required: false
  type: string
r_port_address:
  description: |
    Filter the list of returned Ports, and only return the ones with the
    specified physical hardware address, typically MAC, or an empty set if not
    found.
  in: query
  required: false
  type: string
r_port_node_ident:
  description: |
    Filter the list of returned Ports, and only return the ones associated
    with this specific node (name or UUID), or an empty set if not found.
  in: query
  required: false
  type: string
r_port_node_uuid:
  description: |
    Filter the list of returned Ports, and only return the ones associated
    with this specific node UUID, or an empty set if not found.
  in: query
  required: false
  type: string
r_port_portgroup_ident:
  description: |
    Filter the list of returned Ports, and only return the ones associated
    with this specific Portgroup (name or UUID), or an empty set if not found.
  in: query
  required: false
  type: string
r_portgroup_address:
  description: |
    Filter the list of returned Portgroups, and only return the ones with the
    specified physical hardware address, typically MAC, or an empty set if not
    found.
  in: query
  required: false
  type: string
r_portgroup_node_ident:
  description: |
    Filter the list of returned Portgroups, and only return the ones associated
    with this specific node (name or UUID), or an empty set if not found.
  in: query
  required: false
  type: string
r_provision_state:
  description: |
    Filter the list of returned nodes, and only return those with the specified
    ``provision_state``.
  in: query
  required: false
  type: string
r_resource_class:
  description: |
    Filter the list of returned nodes, and only return the ones with the
    specified resource class.
  in: query
  required: false
  type: string
r_volume_connector_node_ident:
  description: |
    Filter the list of returned Volume connectors, and only return the ones
    associated with this specific node (name or UUID), or an empty set if not
    found.
  in: query
  required: false
  type: string
r_volume_target_node_ident:
  description: |
    Filter the list of returned Volume targets, and only return the ones
    associated with this specific node (name or UUID), or an empty set if not
    found.
  in: query
  required: false
  type: string
sort_dir:
  description: |
    Sorts the response by the requested sort
    direction. A valid value is ``asc`` (ascending) or ``desc``
    (descending). Default is ``asc``. You can specify multiple pairs
    of sort key and sort direction query parameters. If you omit the
    sort direction in a pair, the API uses the natural sorting
    direction of the server attribute that is provided as the
    ``sort_key``.
  in: query
  required: false
  type: string
sort_key:
  description: |
    Sorts the response by this attribute value.
    Default is ``id``. You can specify multiple pairs of sort key and
    sort direction query parameters. If you omit the sort direction in
    a pair, the API uses the natural sorting direction of the server
    attribute that is provided as the ``sort_key``.
  in: query
  required: false
  type: string


# variable returned from /lookup
agent_config:
  description: |
    JSON document of configuration data for the ironic-python-agent process.
  in: body
  required: true
  type: JSON
agent_node:
  description: |
    JSON document containing the Node fields "uuid", "properties",
    "instance_info", and "driver_internal_info"; used by the
    ironic-python-agent process as it operates on the Node.
  in: body
  required: true
  type: JSON

# variables in the API body
alive:
  description: |
    The conductor status indicates whether a conductor is considered alive
    or not.
  in: body
  required: true
  type: boolean
allocation_last_error:
  description: |
    The error message for the allocation if it is in the ``error`` state,
    ``null`` otherwise.
  in: body
  required: true
  type: string
allocation_name:
  description: |
    The unique name of the allocation.
  in: body
  required: true
  type: string
allocation_node:
  description: |
    The UUID of the node assigned to the allocation. Will be ``null`` if a node
    is not yet assigned.
  in: body
  required: true
  type: string
allocation_patch:
  description: |
    A JSON patch document to apply to the allocation.
  in: body
  required: true
  type: JSON
allocation_resource_class:
  description: |
    The resource class requested for the allocation. Can be ``null`` if
    the allocation was created via backfilling and the target node did not
    have the resource class set.
  in: body
  required: true
  type: string
allocation_state:
  description: |
    The current state of the allocation. One of:

    * ``allocating`` - allocation is in progress.
    * ``active`` - allocation is finished and ``node_uuid`` is assigned.
    * ``error`` - allocation has failed, see ``last_error`` for details.
  in: body
  required: true
  type: string
allocation_traits:
  description: |
    The list of the traits requested for the allocation.
  in: body
  required: true
  type: array
allocation_uuid:
  description: |
    The UUID of the allocation associated with the node. If not ``null``, will
    be the same as ``instance_uuid`` (the opposite is not always true).
    Unlike ``instance_uuid``, this field is read-only. Please use the
    Allocation API to remove allocations.
  in: body
  required: true
  type: string
automated_clean:
  description: |
    Indicates whether the node will perform automated clean or not.
  in: body
  required: true
  type: boolean
bios_interface:
  description: |
    The bios interface to be used for this node.
  in: body
  required: true
  type: string
bios_setting_allowable_values:
  description: |
    A list of allowable values, otherwise ``null``.
  in: body
  required: true
  type: array
bios_setting_attribute_type:
  description: |
    A string describing the type of the Bios setting. May be ``null``.
  in: body
  required: true
  type: string
bios_setting_lower_bound:
  description: |
    The lowest allowed integer value. May be ``null``.
  in: body
  required: true
  type: integer
bios_setting_max_length:
  description: |
    The maximum string length of the value. May be ``null``.
  in: body
  required: true
  type: integer
bios_setting_min_length:
  description: |
    The minimum string length of the value. May be ``null``.
  in: body
  required: true
  type: integer
bios_setting_name:
  description: |
    The name of a Bios setting for a Node, eg. "virtualization".
  in: body
  required: true
  type: string
bios_setting_read_only:
  description: |
    This Bios seting is read only and can't be changed.
    May be None.
  in: body
  required: true
  type: boolean
bios_setting_reset_required:
  description: |
    After setting this Bios setting a node reboot is required.
    May be None.
  in: body
  required: true
  type: boolean
bios_setting_unique:
  description: |
    This Bios setting is unique to this node. May be ``null``.
  in: body
  required: true
  type: boolean
bios_setting_upper_bound:
  description: |
    The highest allowed integer value. May be ``null``.
  in: body
  required: true
  type: integer
bios_setting_value:
  description: |
    The value of a Bios setting for a Node, eg. "on".
  in: body
  required: true
  type: string
bios_settings:
  description: |
    Optional list of one or more Bios settings. It includes following fields
    "created_at", "updated_at", "links", "name", "value", "attribute_type",
    "allowable_values", "lower_bound", "max_length", "min_length", "read_only",
    "reset_required", "unique", "upper_bound"
  in: body
  required: true
  type: array
boot_device:
  description: |
    The boot device for a Node, eg. "pxe" or "disk".
  in: body
  required: true
  type: string
boot_interface:
  description: |
    The boot interface for a Node, e.g. "pxe".
  in: body
  required: true
  type: string
boot_mode:
  description: |
    The current boot mode state (uefi/bios)
  in: body
  type: string
candidate_nodes:
  description: |
    A list of UUIDs of the nodes that are candidates for this allocation.
  in: body
  required: true
  type: array
chassis:
  description: |
    A ``chassis`` object.
  in: body
  required: true
  type: array
chassis_uuid:
  description: |
    UUID of the chassis associated with this Node. May be empty or None.
  in: body
  required: true
  type: string
clean_step:
  description: |
    The current clean step. Introduced with the cleaning feature.
  in: body
  required: false
  type: string
clean_steps:
  description: |
    An ordered list of cleaning steps that will be performed on the node. A
    cleaning step is a dictionary with required keys 'interface' and 'step', and
    optional key 'args'. If specified, the value for 'args' is a keyword variable
    argument dictionary that is passed to the cleaning step method.
  in: body
  required: false
  type: array
component_name:
  description: |
    The name of the component available for the node.
  in: body
  required: true
  type: string
conductor:
  description: |
    The conductor currently servicing a node. This field is read-only.
  in: body
  required: false
  type: string
conductor_group:
  description: |
    The conductor group for a node. Case-insensitive string up to 255
    characters, containing ``a-z``, ``0-9``, ``_``, ``-``, and ``.``.
  in: body
  required: true
  type: string
configdrive:
  description: |
    A config drive to be written to a partition on the Node's boot disk. Can be
    a full gzip'ed and base-64 encoded image or a JSON object with the keys:

    * ``meta_data`` (optional) - JSON object with the standard meta data.
      Ironic will provide the defaults for the ``uuid`` and ``name`` fields.
    * ``network_data`` (optional) - JSON object with networking configuration.
    * ``user_data`` (optional) - user data. May be a string (which will be
      UTF-8 encoded); a JSON object, or a JSON array.
    * ``vendor_data`` (optional) - JSON object with extra vendor data.

    This parameter is only accepted when setting the state to "active" or
    "rebuild".
  in: body
  required: false
  type: string or object
console_enabled:
  description: |
    Indicates whether console access is enabled or disabled on this node.
  in: body
  required: true
  type: boolean
console_interface:
  description: |
    The console interface for a node, e.g. "no-console".
  in: body
  required: true
  type: string
created_at:
  description: |
    The UTC date and time when the resource was created,
    `ISO 8601 <https://en.wikipedia.org/wiki/ISO_8601>`_ format.
  in: body
  required: true
  type: string
d_bios_setting:
  description: |
    Dictionary containing the definition of a Bios setting. It includes the
    following fields "created_at", "updated_at", "links", "name", "value".
  in: body
  required: true
  type: dictionary
default_bios_interface:
  description: |
    The default bios interface used for a node with a dynamic driver, if no
    bios interface is specified for the node.
  in: body
  required: true
  type: string
default_boot_interface:
  description: |
    The default boot interface used for a node with a dynamic driver, if no
    boot interface is specified for the node.
  in: body
  required: true
  type: string
default_console_interface:
  description: |
    The default console interface used for a node with a dynamic driver, if no
    console interface is specified for the node.
  in: body
  required: true
  type: string
default_deploy_interface:
  description: |
    The default deploy interface used for a node with a dynamic driver, if no
    deploy interface is specified for the node.
  in: body
  required: true
  type: string
default_inspect_interface:
  description: |
    The default inspection interface used for a node with a dynamic driver, if
    no inspection interface is specified for the node.
  in: body
  required: true
  type: string
default_management_interface:
  description: |
    The default management interface used for a node with a dynamic driver, if
    no management interface is specified for the node.
  in: body
  required: true
  type: string
default_network_interface:
  description: |
    The default network interface used for a node with a dynamic driver, if
    no network interface is specified for the node.
  in: body
  required: true
  type: string
default_power_interface:
  description: |
    The default power interface used for a node with a dynamic driver, if
    no power interface is specified for the node.
  in: body
  required: true
  type: string
default_raid_interface:
  description: |
    The default RAID interface used for a node with a dynamic driver, if
    no RAID interface is specified for the node.
  in: body
  required: true
  type: string
default_rescue_interface:
  description: |
    The default rescue interface used for a node with a dynamic driver, if
    no rescue interface is specified for the node.
  in: body
  required: true
  type: string
default_storage_interface:
  description: |
    The default storage interface used for a node with a dynamic driver, if
    no storage interface is specified for the node.
  in: body
  required: true
  type: string
default_vendor_interface:
  description: |
    The default vendor interface used for a node with a dynamic driver, if
    no vendor interface is specified for the node.
  in: body
  required: true
  type: string
deploy_interface:
  description: |
    The deploy interface for a node, e.g. "iscsi".
  in: body
  required: true
  type: string
deploy_step:
  description: |
    The current deploy step.
  in: body
  required: false
  type: string
deploy_steps:
  description: |
    A list of deploy steps that will be performed on the node. A deploy step is
    a dictionary with required keys 'interface', 'step', 'priority' and optional
    key 'args'. If specified, the value for 'args' is a keyword variable
    argument dictionary that is passed to the deploy step method.
  in: body
  required: False
  type: array
deploy_template_name:
  description: |
    The unique name of the deploy template.
  in: body
  required: true
  type: string
deploy_template_step_args:
  description: |
    A dictionary of arguments that are passed to the deploy step method.
  in: body
  required: true
  type: object
deploy_template_step_interface:
  description: |
    The name of the driver interface.
  in: body
  required: true
  type: string
deploy_template_step_priority:
  description: |
    A non-negative integer priority for the step. A value of ``0`` will
    disable that step.
  in: body
  required: true
  type: integer
deploy_template_step_step:
  description: |
    The name of the deploy step method on the driver interface.
  in: body
  required: true
  type: string
deploy_template_steps:
  description: |
    The deploy steps of the deploy template. Must be a list of dictionaries
    containing at least one deploy step. See `Request Step`_ for step parameters.
  in: body
  required: true
  type: array
description:
  description: |
    Descriptive text about the Ironic service.
  in: body
  required: true
  type: string
disable_ramdisk:
  description: |
    If set to ``true``, the ironic-python-agent ramdisk will not be booted for
    cleaning. Only clean steps explicitly marked as not requiring ramdisk can
    be executed in this mode. Only allowed for manual cleaning.
  in: body
  required: false
  type: boolean
driver_info:
  description: |
    All the metadata required by the driver to manage this Node. List of fields
    varies between drivers, and can be retrieved from the ``/v1/drivers/<DRIVER_NAME>/properties`` resource.
  in: body
  required: true
  type: JSON
driver_internal_info:
  description: |
    Internal metadata set and stored by the Node's driver. This field is read-only.
  in: body
  required: false
  type: JSON
driver_name:
  description: |
    The name of the driver.
  in: body
  required: true
  type: string
driver_property_links:
  description: |
    A list of links to driver properties.
  in: body
  required: true
  type: array
drivers:
  description: |
    A list of driver objects.
  in: body
  required: true
  type: array
enabled_bios_interfaces:
  description: |
    The enabled bios interfaces for this driver.
  in: body
  required: true
  type: list
enabled_boot_interfaces:
  description: |
    The enabled boot interfaces for this driver.
  in: body
  required: true
  type: list
enabled_console_interfaces:
  description: |
    The enabled console interfaces for this driver.
  in: body
  required: true
  type: list
enabled_deploy_interfaces:
  description: |
    The enabled deploy interfaces for this driver.
  in: body
  required: true
  type: list
enabled_inspect_interfaces:
  description: |
    The enabled inspection interfaces for this driver.
  in: body
  required: true
  type: list
enabled_management_interfaces:
  description: |
    The enabled management interfaces for this driver.
  in: body
  required: true
  type: list
enabled_network_interfaces:
  description: |
    The enabled network interfaces for this driver.
  in: body
  required: true
  type: list
enabled_power_interfaces:
  description: |
    The enabled power interfaces for this driver.
  in: body
  required: true
  type: list
enabled_raid_interfaces:
  description: |
    The enabled RAID interfaces for this driver.
  in: body
  required: true
  type: list
enabled_rescue_interfaces:
  description: |
    The enabled rescue interfaces for this driver.
  in: body
  required: true
  type: list
enabled_storage_interfaces:
  description: |
    The enabled storage interfaces for this driver.
  in: body
  required: true
  type: list
enabled_vendor_interfaces:
  description: |
    The enabled vendor interfaces for this driver.
  in: body
  required: true
  type: list
extra:
  description: |
    A set of one or more arbitrary metadata key and
    value pairs.
  in: body
  required: true
  type: object
fault:
  description: |
    The fault indicates the active fault detected by ironic, typically the
    Node is in "maintenance mode".
    None means no fault has been detected by ironic. "power failure" indicates
    ironic failed to retrieve power state from this node. There are other
    possible types, e.g., "clean failure" and "rescue abort failure".
  in: body
  required: false
  type: string
history_event:
  description: |
    The event message body which has been logged related to the node for
    this error.
  in: body
  required: true
  type: string
history_event_type:
  description: |
    Short descriptive string to indicate where the error occurred at to
    enable API users/System Operators to be able to identify repeated
    issues in a particular area of operation, such as 'deployment',
    'console', 'cleaning', 'monitoring'.
  in: body
  required: true
  type: string
history_severity:
  description: |
    Severity indicator for the event being returned. Typically this will
    indicate if this was an Error or Informational entry.
  in: body
  required: true
  type: string
history_user_ident:
  description: |
    The UUID value representing the user whom appears to have caused
    the recorded event.
  in: body
  required: true
  type: string
hostname:
  description: |
    The hostname of this conductor.
  in: body
  required: true
  type: array
hosts:
  description: |
    A list of active hosts that support this driver.
  in: body
  required: true
  type: array
id:
  description: |
    Major API version, eg, "v1"
  in: body
  required: true
  type: string
indicator_name:
  description: |
    The name of the indicator.
  in: body
  required: true
  type: boolean
indicator_readonly:
  description: |
    Indicates whether the indicator is readonly.
  in: body
  required: true
  type: boolean
indicator_states:
  description: |
    The possible states for a given indicator, the only values that can be
    returned are:  ``ON``, ``OFF``, ``BLINKING`` and ``UNKNOWN``
  in: body
  required: true
  type: string
inspect_interface:
  description: |
    The interface used for node inspection, e.g. "no-inspect".
  in: body
  required: true
  type: string
inspection_finished_at:
  description: |
    The UTC date and time when the last hardware inspection finished
    successfully, `ISO 8601 <https://en.wikipedia.org/wiki/ISO_8601>`_ format.
    May be "null".
  in: body
  required: true
  type: string
inspection_started_at:
  description: |
    The UTC date and time when the hardware inspection was started,
    `ISO 8601 <https://en.wikipedia.org/wiki/ISO_8601>`_ format.
    May be "null".
  in: body
  required: true
  type: string
instance_info:
  description: |
    Information used to customize the deployed image. May include root partition
    size, a base 64 encoded config drive, and other metadata. Note that this field
    is erased automatically when the instance is deleted (this is done by requesting
    the Node provision state be changed to DELETED).
  in: body
  required: true
  type: JSON
instance_uuid:
  description: |
    UUID of the Nova instance associated with this Node.
  in: body
  required: true
  type: string
internal_info:
  description: |
    Internal metadata set and stored by the Port. This field is read-only.
  in: body
  required: true
  type: JSON
is_smartnic:
  description: |
    Indicates whether the Port is a Smart NIC port.
  in: body
  required: false
  type: boolean
last_error:
  description: |
    Any error from the most recent (last) transaction that started but failed to finish.
  in: body
  required: true
  type: string
lessee:
  description: |
    A string or UUID of the tenant who is leasing the object.
  in: body
  required: false
  type: string
links:
  description: |
    A list of relative links. Includes the self and
    bookmark links.
  in: body
  required: true
  type: array
local_link_connection:
  description: |
    The Port binding profile. If specified, must contain ``switch_id`` (only
    a MAC address or an OpenFlow based datapath_id of the switch are accepted
    in this field) and ``port_id`` (identifier of the physical port on the
    switch to which node's port is connected to) fields. ``switch_info`` is an
    optional string field to be used to store any vendor-specific information.
  in: body
  required: true
  type: JSON
maintenance:
  description: |
    Whether or not this Node is currently in "maintenance mode". Setting a Node
    into maintenance mode removes it from the available resource pool and halts
    some internal automation. This can happen manually (eg, via an API request)
    or automatically when Ironic detects a hardware fault that prevents communication
    with the machine.
  in: body
  required: true
  type: boolean
maintenance_reason:
  description: |
    User-settable description of the reason why this Node was placed into
    maintenance mode
  in: body
  required: false
  type: string
management_interface:
  description: |
    Interface for out-of-band node management, e.g. "ipmitool".
  in: body
  required: true
  type: string
n_components:
  description: |
    List all available indicators names for each of the hardware components
    for this node.
  in: body
  required: true
  type: array
n_description:
  description: |
    Informational text about this node.
  in: body
  required: true
  type: string
n_history:
  description: |
    History events attached to this node.
  in: body
  required: true
  type: array
n_ind_state:
  description: |
    The state of an indicator of the component of the node. Possible values
    are: ``OFF``, ``ON``, ``BLINKING`` or ``UNKNOWN``.
  in: body
  required: true
  type: string
n_indicators:
  description: |
    Retrieves all indicators for a given hardware component along with their
    attributes for this node.
  in: body
  required: true
  type: array
n_inventory:
  description: |
    Inventory of this node.
  in: body
  required: false
  type: JSON
n_plugin_data:
  description: |
    Plugin data of this node.
  in: body
  required: false
  type: JSON
n_portgroups:
  description: |
    Links to the collection of portgroups on this node.
  in: body
  required: true
  type: array
n_ports:
  description: |
    Links to the collection of ports on this node
  in: body
  required: true
  type: array
n_properties:
  description: |
    Physical characteristics of this Node. Populated by ironic-inspector during
    inspection. May be edited via the REST API at any time.
  in: body
  required: true
  type: JSON
n_states:
  description: |
    Links to the collection of states. Note that this resource is also used to
    request state transitions.
  in: body
  required: true
  type: array
n_traits:
  description: |
    List of traits for this node.
  in: body
  required: true
  type: array
n_vifs:
  description: |
    VIFs attached to this node.
  in: body
  required: true
  type: array
n_volume:
  description: |
    Links to the volume resources.
  in: body
  required: true
  type: array
name:
  description: |
    The name of the driver.
  in: body
  required: true
  type: string
network_data:
  description: |
    Static network configuration in the OpenStack network data format to use
    during deployment and cleaning. Requires a specially crafted ramdisk, see
    `DHCP-less documentation
    <https://docs.openstack.org/ironic/latest/admin/dhcp-less.html>`_.
  in: body
  required: false
  type: JSON
network_interface:
  description: |
    Which Network Interface provider to use when plumbing the network
    connections for this Node.
  in: body
  required: true
  type: string
next:
  description: |
    A URL to request a next collection of the resource. This parameter is
    returned when ``limit`` is specified in a request and there remain items.
  in: body
  required: false
  type: string
node_name:
  description: |
    Human-readable identifier for the Node resource. May be undefined. Certain
    words are reserved.
  in: body
  required: false
  type: string
node_uuid:
  description: |
    UUID of the Node this resource belongs to.
  in: body
  required: true
  type: string
node_vif_ident:
  description: |
    The UUID or name of the VIF.
  in: body
  required: true
  type: string
nodes:
  description: |
    Links to the collection of nodes contained in
    this chassis.
  in: body
  required: true
  type: array
owner:
  description: |
    A string or UUID of the tenant who owns the object.
  in: body
  required: false
  type: string
passthru_async:
  description: |
    If True the passthru function is invoked asynchronously; if False,
    synchronously.
  in: body
  required: true
  type: boolean
passthru_attach:
  description: |
    True if the return value will be attached to the response object, and False
    if the return value will be returned in the response body.
  in: body
  required: true
  type: boolean
passthru_description:
  description: |
    A description of what the method does, including any method parameters.
  in: body
  required: true
  type: string
passthru_http_methods:
  description: |
    A list of HTTP methods supported by the vendor function.
  in: body
  required: true
  type: array
persistent:
  description: |
    Whether the boot device should be set only for the next reboot, or
    persistently.
  in: body
  required: true
  type: boolean
pg_ports:
  description: |
    Links to the collection of ports belonging to this portgroup.
  in: body
  required: true
  type: array
physical_network:
  description: |
    The name of the physical network to which a port is connected. May be
    empty.
  in: body
  required: true
  type: string
port_address:
  description: |
    Physical hardware address of this network Port, typically the hardware
    MAC address.
  in: body
  required: true
  type: string
portgroup_address:
  description: |
    Physical hardware address of this Portgroup, typically the hardware
    MAC address.
  in: body
  required: false
  type: string
portgroup_internal_info:
  description: |
    Internal metadata set and stored by the Portgroup. This field is read-only.
  in: body
  required: true
  type: JSON
portgroup_mode:
  description: |
    Mode of the port group. For possible values, refer to
    https://www.kernel.org/doc/Documentation/networking/bonding.txt. If not
    specified in a request to create a port group, it will be set to the value
    of the ``[DEFAULT]default_portgroup_mode`` configuration option. When set,
    can not be removed from the port group.
  in: body
  required: true
  type: string
portgroup_name:
  description: |
    Human-readable identifier for the Portgroup resource. May be undefined.
  in: body
  required: true
  type: string
portgroup_properties:
  description: |
    Key/value properties related to the port group's configuration.
  in: body
  required: true
  type: JSON
portgroup_uuid:
  description: |
    UUID of the Portgroup this resource belongs to.
  in: body
  required: true
  type: string
portgroups:
  description: |
    A collection of Portgroup resources.
  in: body
  required: true
  type: array
ports:
  description: |
    A collection of Port resources.
  in: body
  required: true
  type: array
power_interface:
  description: |
    Interface used for performing power actions on the node, e.g. "ipmitool".
  in: body
  required: true
  type: string
power_state:
  description: |
    The current power state of this Node. Usually, "power on" or "power off", but may be "None"
    if Ironic is unable to determine the power state (eg, due to hardware failure).
  in: body
  required: true
  type: string
power_timeout:
  description: |
    Timeout (in seconds) for a power state transition.
  in: body
  required: false
  type: integer
properties:
  description: |
    A list of links to driver properties.
  in: body
  required: true
  type: array
protected:
  description: |
    Whether the node is protected from undeploying, rebuilding and deletion.
  in: body
  required: false
  type: boolean
protected_reason:
  description: |
    The reason the node is marked as protected.
  in: body
  required: false
  type: string
provision_state:
  description: |
    The current provisioning state of this Node.
  in: body
  required: true
  type: string
provision_updated_at:
  description: |
    The UTC date and time when the resource was created,
    `ISO 8601 <https://en.wikipedia.org/wiki/ISO_8601>`_ format.
    ``null`` if the node is not being provisioned.
  in: body
  required: true
  type: string
pxe_enabled:
  description: |
    Indicates whether PXE is enabled or disabled on the Port.
  in: body
  required: true
  type: boolean
raid_config:
  description: |
    Represents the current RAID configuration of the node. Introduced with
    the cleaning feature.
  in: body
  required: false
  type: JSON
raid_interface:
  description: |
    Interface used for configuring RAID on this node, e.g. "no-raid".
  in: body
  required: true
  type: string
reason:
  description: |
    Specify the reason for setting the Node into maintenance mode.
  in: body
  required: false
  type: string
req_allocation_name:
  description: |
    The unique name of the Allocation.
  in: body
  required: false
  type: string
req_allocation_node:
  description: |
    The node UUID or name to create the allocation against, bypassing
    the normal allocation process.

    .. warning:: This field must not be used to request a normal allocation
                 with one candidate node, use ``candidate_nodes`` instead.
  in: body
  required: false
  type: string
req_allocation_resource_class:
  description: |
    The requested resource class for the allocation. Can only be missing when
    backfilling an allocation (will be set to the node's ``resource_class``
    in such case).
  in: body
  required: true
  type: string
req_allocation_traits:
  description: |
    The list of requested traits for the allocation.
  in: body
  required: false
  type: array
req_automated_clean:
  description: |
    Indicates whether the node will perform automated clean or not.
  in: body
  required: false
  type: boolean
req_bios_interface:
  description: |
    The bios interface to be used for this node.
  in: body
  required: false
  type: string
req_boot_device:
  description: |
    The boot device for a Node, eg. "pxe" or "disk".
  in: body
  required: true
  type: string
req_boot_interface:
  description: |
    The boot interface for a Node, e.g. "pxe".
  in: body
  required: false
  type: string
req_candidate_nodes:
  description: |
    The list of nodes (names or UUIDs) that should be considered for this
    allocation. If not provided, all available nodes will be considered.
  in: body
  required: false
  type: array
req_chassis:
  description: |
    A ``chassis`` object.
  in: body
  required: true
  type: array
req_chassis_uuid:
  description: |
    UUID of the chassis associated with this Node. May be empty or None.
  in: body
  required: false
  type: string
req_conductor_group:
  description: |
    The conductor group for a node. Case-insensitive string up to 255
    characters, containing ``a-z``, ``0-9``, ``_``, ``-``, and ``.``.
  in: body
  required: false
  type: string
req_console_enabled:
  description: |
    Indicates whether console access is enabled or disabled on this node.
  in: body
  required: true
  type: boolean
req_console_interface:
  description: |
    The console interface for a node, e.g. "no-console".
  in: body
  required: false
  type: string
req_deploy_interface:
  description: |
    The deploy interface for a node, e.g. "iscsi".
  in: body
  required: false
  type: string
req_description:
  description: |
    Descriptive text about the Ironic service.
  in: body
  required: false
  type: string
req_driver_info:
  description: |
    All the metadata required by the driver to manage this Node. List of fields
    varies between drivers, and can be retrieved from the
    ``/v1/drivers/<DRIVER_NAME>/properties`` resource.
  in: body
  required: false
  type: JSON
req_driver_name:
  description: |
    The name of the driver used to manage this Node.
  in: body
  required: true
  type: string
req_extra:
  description: |
    A set of one or more arbitrary metadata key and
    value pairs.
  in: body
  required: false
  type: object
req_inspect_interface:
  description: |
    The interface used for node inspection, e.g. "no-inspect".
  in: body
  required: false
  type: string
req_instance_info:
  description: |
    Information used to customize the deployed image. May include root partition
    size, a base 64 encoded config drive, and other metadata. Note that this field
    is erased automatically when the instance is deleted (this is done by requesting
    the Node provision state be changed to DELETED).
  in: body
  required: false
  type: JSON
req_instance_uuid:
  description: |
    UUID of the Nova instance associated with this Node.
  in: body
  required: false
  type: string
req_is_smartnic:
  description: |
    Indicates whether the Port is a Smart NIC port.
  in: body
  required: false
  type: boolean
req_local_link_connection:
  description: |
    The Port binding profile. If specified, must contain ``switch_id`` (only
    a MAC address or an OpenFlow based datapath_id of the switch are accepted
    in this field) and ``port_id`` (identifier of the physical port on the
    switch to which node's port is connected to) fields. ``switch_info`` is an
    optional string field to be used to store any vendor-specific information.
  in: body
  required: false
  type: JSON
req_maintenance:
  description: |
    Whether or not this Node is currently in "maintenance mode". Setting a Node
    into maintenance mode removes it from the available resource pool and halts
    some internal automation. This can happen manually (eg, via an API request)
    or automatically when Ironic detects a hardware fault that prevents communication
    with the machine.
  in: body
  required: false
  type: boolean
req_management_interface:
  description: |
    Interface for out-of-band node management, e.g. "ipmitool".
  in: body
  required: false
  type: string
req_n_description:
  description: |
    Informational text about this node.
  in: body
  required: false
  type: string
req_network_interface:
  description: |
    Which Network Interface provider to use when plumbing the network
    connections for this Node.
  in: body
  required: false
  type: string
req_node_uuid:
  description: |
    UUID of the Node this resource belongs to.
  in: body
  required: true
  type: string
req_node_vif_ident:
  description: |
    The UUID or name of the VIF.
  in: body
  required: true
  type: string
req_node_vif_port_uuid:
  description: |
    The UUID of a port to attach the VIF to. Cannot be specified with
    ``portgroup_uuid``.
  in: body
  required: false
  type: string
req_node_vif_portgroup_uuid:
  description: |
    The UUID of a portgroup to attach the VIF to. Cannot be specified with
    ``port_uuid``.
  in: body
  required: false
  type: string
req_persistent:
  description: |
    Whether the boot device should be set only for the next reboot, or
    persistently.
  in: body
  required: false
  type: boolean
req_physical_network:
  description: |
    The name of the physical network to which a port is connected. May be
    empty.
  in: body
  required: false
  type: string
req_port_address:
  description: |
    Physical hardware address of this network Port, typically the hardware
    MAC address.
  in: body
  required: true
  type: string
req_portgroup_address:
  description: |
    Physical hardware address of this Portgroup, typically the hardware
    MAC address.
  in: body
  required: false
  type: string
req_portgroup_mode:
  description: |
    Mode of the port group. For possible values, refer to
    https://www.kernel.org/doc/Documentation/networking/bonding.txt. If not
    specified in a request to create a port group, it will be set to the value
    of the ``[DEFAULT]default_portgroup_mode`` configuration option. When set,
    can not be removed from the port group.
  in: body
  required: false
  type: string
req_portgroup_name:
  description: |
    Human-readable identifier for the Portgroup resource. May be undefined.
  in: body
  required: false
  type: string
req_portgroup_properties:
  description: |
    Key/value properties related to the port group's configuration.
  in: body
  required: false
  type: JSON
req_portgroup_uuid:
  description: |
    UUID of the Portgroup this resource belongs to.
  in: body
  required: false
  type: string
req_power_interface:
  description: |
    Interface used for performing power actions on the node, e.g. "ipmitool".
  in: body
  required: false
  type: string
req_properties:
  description: |
    Physical characteristics of this Node. Populated during inspection, if
    performed. Can be edited via the REST API at any time.
  in: body
  required: false
  type: JSON
req_provision_state:
  description: |
    The requested provisioning state of this Node.
  in: body
  required: true
  type: string
req_pxe_enabled:
  description: |
    Indicates whether PXE is enabled or disabled on the Port.
  in: body
  required: false
  type: boolean
req_raid_interface:
  description: |
    Interface used for configuring RAID on this node, e.g. "no-raid".
  in: body
  required: false
  type: string
req_rescue_interface:
  description: |
    The interface used for node rescue, e.g. "no-rescue".
  in: body
  required: false
  type: string
req_resource_class_create:
  description: |
    A string which can be used by external schedulers to identify this Node as
    a unit of a specific type of resource.
  in: body
  required: false
  type: string
req_standalone_ports_supported:
  description: |
    Indicates whether ports that are members of this portgroup can be
    used as stand-alone ports.
  in: body
  required: false
  type: boolean
req_storage_interface:
  description: |
    Interface used for attaching and detaching volumes on this node, e.g.
    "cinder".
  in: body
  required: false
  type: string
req_target_boot_mode:
  description: |
    If a boot mode change has been requested, this field represents the
    requested (ie, "target") state, either "uefi" or "bios".
  in: body
  required: true
  type: string
req_target_power_state:
  description: |
    If a power state transition has been requested, this field represents the
    requested (ie, "target") state either "power on", "power off", "rebooting",
    "soft power off" or "soft rebooting".
  in: body
  required: true
  type: string
req_target_raid_config:
  description: |
    Represents the requested RAID configuration of the node, which will be
    applied when the Node next transitions through the CLEANING state. Introduced
    with the cleaning feature.
  in: body
  required: true
  type: JSON
req_target_secure_boot:
  description: |
    If a secure boot change has been requested, this field represents the
    requested (ie, "target") state, either ``true`` or ``false``.
  in: body
  required: true
  type: boolean
req_uuid:
  description: |
    The UUID for the resource.
  in: body
  required: false
  type: string
req_vendor_interface:
  description: |
    Interface for vendor-specific functionality on this node, e.g. "no-vendor".
  in: body
  required: false
  type: string
req_volume_target_properties:
  description: |
    A set of physical information of the volume such as the identifier
    (eg. IQN) and LUN number of the volume. This information is used to connect
    the node to the volume by the storage interface. The contents depend on the
    volume type.
  in: body
  required: false
  type: object
requested_provision_state:
  description: |
    One of the provisioning verbs: manage, provide, inspect, clean, active,
    rebuild, delete (deleted), abort, adopt, rescue, unrescue.
  in: body
  required: true
  type: string
rescue_interface:
  description: |
    The interface used for node rescue, e.g. "no-rescue".
  in: body
  required: true
  type: string
rescue_password:
  description: |
    Non-empty password used to configure rescue ramdisk during node rescue
    operation.
  in: body
  required: false
  type: string
reservation:
  description: |
    The ``name`` of an Ironic Conductor host which is holding a lock on this node,
    if a lock is held. Usually "null", but this field can be useful for debugging.
  in: body
  required: true
  type: string
resource_class:
  description: |
    A string which can be used by external schedulers to identify this Node as
    a unit of a specific type of resource. For more details, see:
    https://docs.openstack.org/ironic/latest/install/configure-nova-flavors.html
  in: body
  required: true
  type: string
response_driver_type:
  description: |
    Type of this driver ("classic" or "dynamic").
  in: body
  required: true
  type: string
retired:
  description: |
    Whether the node is retired and can hence no longer be provided, i.e. move
    from ``manageable`` to ``available``, and will end up in ``manageable``
    after cleaning (rather than ``available``).
  in: body
  required: false
  type: boolean
retired_reason:
  description: |
    The reason the node is marked as retired.
  in: body
  required: false
  type: string
secure_boot:
  description: |
    Indicates whether node is currently booted with secure_boot turned on.
  in: body
  type: boolean
standalone_ports_supported:
  description: |
    Indicates whether ports that are members of this portgroup can be
    used as stand-alone ports.
  in: body
  required: true
  type: boolean
storage_interface:
  description: |
    Interface used for attaching and detaching volumes on this node, e.g.
    "cinder".
  in: body
  required: true
  type: string
supported_boot_devices:
  description: |
    List of boot devices which this Node's driver supports.
  in: body
  required: true
  type: array
target_power_state:
  description: |
    If a power state transition has been requested, this field represents the
    requested (ie, "target") state, either "power on" or "power off".
  in: body
  required: true
  type: string
target_provision_state:
  description: |
    If a provisioning action has been requested, this field represents the
    requested (ie, "target") state. Note that a Node may go through several
    states during its transition to this target state. For instance, when requesting
    an instance be deployed to an AVAILABLE Node, the Node may go through the following
    state change progression: AVAILABLE -> DEPLOYING -> DEPLOYWAIT -> DEPLOYING -> ACTIVE
  in: body
  required: true
  type: string
target_raid_config:
  description: |
    Represents the requested RAID configuration of the node, which will be
    applied when the Node next transitions through the CLEANING state. Introduced
    with the cleaning feature.
  in: body
  required: true
  type: JSON
updated_at:
  description: |
    The UTC date and time when the resource was updated,
    `ISO 8601 <https://en.wikipedia.org/wiki/ISO_8601>`_ format.
    May be "null".
  in: body
  required: true
  type: string
uuid:
  description: |
    The UUID for the resource.
  in: body
  required: true
  type: string

# variables returned from node-validate
v_bios:
  description: |
    Status of the "bios" interface
  in: body
  required: true
  type: object
v_boot:
  description: |
    Status of the "boot" interface
  in: body
  required: true
  type: object
v_console:
  description: |
    Status of the "console" interface
  in: body
  required: true
  type: object
v_deploy:
  description: |
    Status of the "deploy" interface
  in: body
  required: true
  type: object
v_inspect:
  description: |
    Status of the "inspect" interface
  in: body
  required: true
  type: object
v_management:
  description: |
    Status of the "management" interface
  in: body
  required: true
  type: object
v_network:
  description: |
    Status of the "network" interface
  in: body
  required: true
  type: object
v_power:
  description: |
    Status of the "power" interface
  in: body
  required: true
  type: object
v_raid:
  description: |
    Status of the "raid" interface
  in: body
  required: true
  type: object
v_rescue:
  description: |
    Status of the "rescue" interface
  in: body
  required: true
  type: object
v_storage:
  description: |
    Status of the "storage" interface
  in: body
  required: true
  type: object
vendor_interface:
  description: |
    Interface for vendor-specific functionality on this node, e.g. "no-vendor".
  in: body
  required: true
  type: string
version:
  description: |
    Versioning of this API response, eg. "1.22".
  in: body
  required: true
  type: string
versions:
  description: |
    Array of information about currently supported versions.
  in: body
  required: true
  type: array

# variables returned from volume-connector
volume_connector_connector_id:
  description: |
    The identifier of Volume connector. The identifier format depends on the
    ``type`` of the Volume connector, eg
    "iqn.2017-05.org.openstack:01:d9a51732c3f" if the ``type`` is "iqn",
    "192.168.1.2" if the ``type`` is "ip".
  in: body
  required: true
  type: string
volume_connector_type:
  description: |
    The type of Volume connector such as "iqn", "ip", "wwnn" and "wwpn".
  in: body
  required: true
  type: string
volume_connectors:
  description: |
    A collection of Volume connector resources.
  in: body
  required: true
  type: array
volume_connectors_link:
  description: |
    Links to a collection of Volume connector resources.
  in: body
  required: true
  type: array

# variables returned from volume-target
volume_target_boot_index:
  description: |
    The boot index of the Volume target. "0" indicates that this volume is
    used as a boot volume.
  in: body
  required: true
  type: string
volume_target_properties:
  description: |
    A set of physical information of the volume such as the identifier
    (eg. IQN) and LUN number of the volume. This information is used to connect
    the node to the volume by the storage interface. The contents depend on the
    volume type.
  in: body
  required: true
  type: object
volume_target_volume_id:
  description: |
    The identifier of the volume. This ID is used by storage interface to
    distinguish volumes.
  in: body
  required: true
  type: string
volume_target_volume_type:
  description: |
    The type of Volume target such as 'iscsi' and 'fibre_channel'.
  in: body
  required: true
  type: string
volume_targets:
  description: |
    A collection of Volume target resources.
  in: body
  required: true
  type: array
volume_targets_link:
  description: |
    Links to a collection of Volume target resources.
  in: body
  required: true
  type: array