blob: f942f510e12f1d6ff58a6e78bf2f2fc96b6e945f [file] [log] [blame]
Ed Tanous683f7272018-07-26 12:47:19 -07001{
2 "$ref": "#/definitions/NetworkDeviceFunction",
3 "$schema": "http://redfish.dmtf.org/schemas/v1/redfish-schema.v1_4_0.json",
4 "copyright": "Copyright 2014-2018 Distributed Management Task Force, Inc. (DMTF). For the full DMTF copyright policy, see http://www.dmtf.org/about/policies/copyright",
5 "definitions": {
6 "Actions": {
7 "additionalProperties": false,
8 "description": "The available actions for this resource.",
9 "longDescription": "This type shall contain the available actions for this resource.",
10 "patternProperties": {
11 "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_.]+$": {
12 "description": "This property shall specify a valid odata or Redfish property.",
13 "type": [
14 "array",
15 "boolean",
16 "number",
17 "null",
18 "object",
19 "string"
20 ]
21 }
22 },
23 "properties": {
24 "Oem": {
25 "$ref": "#/definitions/OemActions"
26 }
27 },
28 "type": "object"
29 },
30 "AuthenticationMethod": {
31 "enum": [
32 "None",
33 "CHAP",
34 "MutualCHAP"
35 ],
36 "enumDescriptions": {
37 "CHAP": "iSCSI Challenge Handshake Authentication Protocol (CHAP) authentication is used.",
38 "MutualCHAP": "iSCSI Mutual Challenge Handshake Authentication Protocol (CHAP) authentication is used.",
39 "None": "No iSCSI authentication is used."
40 },
41 "type": "string"
42 },
43 "BootMode": {
44 "enum": [
45 "Disabled",
46 "PXE",
47 "iSCSI",
48 "FibreChannel",
49 "FibreChannelOverEthernet"
50 ],
51 "enumDescriptions": {
52 "Disabled": "Do not indicate to UEFI/BIOS that this device is bootable.",
53 "FibreChannel": "Boot this device using the embedded Fibre Channel support and configuration. Only applicable if the NetworkDeviceFunctionType is set to FibreChannel.",
54 "FibreChannelOverEthernet": "Boot this device using the embedded Fibre Channel over Ethernet (FCoE) boot support and configuration. Only applicable if the NetworkDeviceFunctionType is set to FibreChannelOverEthernet.",
55 "PXE": "Boot this device using the embedded PXE support. Only applicable if the NetworkDeviceFunctionType is set to Ethernet.",
56 "iSCSI": "Boot this device using the embedded iSCSI boot support and configuration. Only applicable if the NetworkDeviceFunctionType is set to iSCSI."
57 },
58 "type": "string"
59 },
60 "BootTargets": {
61 "additionalProperties": false,
62 "description": "A Fibre Channel boot target configured for a network device function.",
63 "longDescription": "This type shall describe a Fibre Channel boot target configured for a network device function.",
64 "patternProperties": {
65 "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_.]+$": {
66 "description": "This property shall specify a valid odata or Redfish property.",
67 "type": [
68 "array",
69 "boolean",
70 "number",
71 "null",
72 "object",
73 "string"
74 ]
75 }
76 },
77 "properties": {
78 "BootPriority": {
79 "description": "The relative priority for this entry in the boot targets array.",
80 "longDescription": "The value of this property shall be the relative priority for this entry in the boot targets array. Lower numbers shall represent higher priority, with zero being the highest priority. The BootPriority shall be unique for all entries of the BootTargets array.",
81 "readonly": false,
82 "type": [
83 "number",
84 "null"
85 ]
86 },
87 "LUNID": {
88 "description": "The Logical Unit Number (LUN) ID to boot from on the device referred to by the corresponding WWPN.",
89 "longDescription": "The value of this property shall be the Logical Unit Number (LUN) ID to boot from on the device referred to by the corresponding WWPN.",
90 "readonly": false,
91 "type": [
92 "string",
93 "null"
94 ]
95 },
96 "WWPN": {
97 "description": "The World-Wide Port Name to boot from.",
98 "longDescription": "The value of this property shall be World-Wide Port Name (WWPN) to boot from.",
99 "readonly": false,
100 "type": [
101 "string",
102 "null"
103 ]
104 }
105 },
106 "type": "object"
107 },
108 "Ethernet": {
109 "additionalProperties": false,
110 "description": "This type describes Ethernet capabilities, status, and configuration of a network device function.",
111 "longDescription": "This type shall describe the Ethernet capabilities, status, and configuration values for a network device function.",
112 "patternProperties": {
113 "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_.]+$": {
114 "description": "This property shall specify a valid odata or Redfish property.",
115 "type": [
116 "array",
117 "boolean",
118 "number",
119 "null",
120 "object",
121 "string"
122 ]
123 }
124 },
125 "properties": {
126 "MACAddress": {
127 "description": "This is the currently configured MAC address of the (logical port) network device function.",
128 "longDescription": "The value of this property shall be the effective current MAC Address of this network device function. If an assignable MAC address is not supported, this is a read only alias of the PermanentMACAddress.",
129 "readonly": false,
130 "type": [
131 "string",
132 "null"
133 ]
134 },
135 "MTUSize": {
136 "description": "The Maximum Transmission Unit (MTU) configured for this network device function.",
137 "longDescription": "The Maximum Transmission Unit (MTU) configured for this Network Device Function. This value serves as a default for the OS driver when booting. The value only takes-effect on boot.",
138 "readonly": false,
139 "type": [
140 "number",
141 "null"
142 ]
143 },
144 "PermanentMACAddress": {
145 "description": "This is the permanent MAC address assigned to this network device function (physical function).",
146 "longDescription": "The value of this property shall be the Permanent MAC Address of this network device function (physical function). This value is typically programmed during the manufacturing time. This address is not assignable.",
147 "readonly": true,
148 "type": [
149 "string",
150 "null"
151 ]
152 }
153 },
154 "type": "object"
155 },
156 "FibreChannel": {
157 "additionalProperties": false,
158 "description": "This type describes Fibre Channel capabilities, status, and configuration of a network device function.",
159 "longDescription": "This object shall describe the Fibre Channel capabilities, status, and configuration values for a network device function.",
160 "patternProperties": {
161 "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_.]+$": {
162 "description": "This property shall specify a valid odata or Redfish property.",
163 "type": [
164 "array",
165 "boolean",
166 "number",
167 "null",
168 "object",
169 "string"
170 ]
171 }
172 },
173 "properties": {
174 "AllowFIPVLANDiscovery": {
175 "description": "Whether the FCoE Initialization Protocol (FIP) is used for populating the FCoE VLAN Id.",
176 "longDescription": "For FCoE connections, the value of this property shall be a boolean indicating whether the FIP VLAN Discovery Protocol is used to determine the FCoE VLAN ID selected by the network device function for the FCoE connection. If true, and the FIP VLAN Discovery succeeds, the FCoEActiveVLANId property shall reflect the FCoE VLAN ID to be used for all FCoE traffic. If false, or if the FIP VLAN Discovery protocol fails, the FCoELocalVLANId shall be used for all FCoE traffic and the FCoEActiveVLANId shall reflect the FCoELocalVLANId.",
177 "readonly": false,
178 "type": [
179 "boolean",
180 "null"
181 ]
182 },
183 "BootTargets": {
184 "description": "An array of Fibre Channel boot targets configured for this network device function.",
185 "items": {
186 "anyOf": [
187 {
188 "$ref": "#/definitions/BootTargets"
189 },
190 {
191 "type": "null"
192 }
193 ]
194 },
195 "longDescription": "The value of this property shall be an array of Fibre Channel boot targets configured for this network device function.",
196 "type": "array"
197 },
198 "FCoEActiveVLANId": {
199 "description": "The active FCoE VLAN ID.",
200 "longDescription": "For FCoE connections, the value of this property shall be null or a VLAN ID currently being used for FCoE traffic. When the FCoE link is down this value shall be null. When the FCoE link is up this value shall be either the FCoELocalVLANId property or a VLAN discovered via the FIP protocol.",
201 "maximum": 4094,
202 "minimum": 0,
203 "readonly": true,
204 "type": [
205 "number",
206 "null"
207 ]
208 },
209 "FCoELocalVLANId": {
210 "description": "The locally configured FCoE VLAN ID.",
211 "longDescription": "For FCoE connections, the value of this property shall be the VLAN ID configured locally by setting this property. This value shall be used for FCoE traffic to this network device function during boot unless AllowFIPVLANDiscovery is true and a valid FCoE VLAN ID is found via the FIP VLAN Discovery Protocol.",
212 "maximum": 4094,
213 "minimum": 0,
214 "readonly": false,
215 "type": [
216 "number",
217 "null"
218 ]
219 },
220 "PermanentWWNN": {
221 "description": "This is the permanent WWNN address assigned to this network device function (physical function).",
222 "longDescription": "The value of this property shall be the permanent World-Wide Node Name (WWNN) of this network device function (physical function). This value is typically programmed during the manufacturing time. This address is not assignable.",
223 "readonly": true,
224 "type": [
225 "string",
226 "null"
227 ]
228 },
229 "PermanentWWPN": {
230 "description": "This is the permanent WWPN address assigned to this network device function (physical function).",
231 "longDescription": "The value of this property shall be the permanent World-Wide Port Name (WWPN) of this network device function (physical function). This value is typically programmed during the manufacturing time. This address is not assignable.",
232 "readonly": true,
233 "type": [
234 "string",
235 "null"
236 ]
237 },
238 "WWNN": {
239 "description": "This is the currently configured WWNN address of the network device function (physical function).",
240 "longDescription": "The value of this property shall be the effective current World-Wide Node Name (WWNN) of this network device function (physical function). If an assignable WWNN is not supported, this is a read only alias of the PermanentWWNN.",
241 "readonly": false,
242 "type": [
243 "string",
244 "null"
245 ]
246 },
247 "WWNSource": {
248 "anyOf": [
249 {
250 "$ref": "#/definitions/WWNSource"
251 },
252 {
253 "type": "null"
254 }
255 ],
256 "description": "The configuration source of the WWNs for this connection (WWPN and WWNN).",
257 "longDescription": "The value of this property shall be the configuration source of the World-Wide Names (WWNs) for this connection (WWPN and WWNN).",
258 "readonly": false
259 },
260 "WWPN": {
261 "description": "This is the currently configured WWPN address of the network device function (physical function).",
262 "longDescription": "The value of this property shall be the effective current World-Wide Port Name (WWPN) of this network device function (physical function). If an assignable WWPN is not supported, this is a read only alias of the PermanentWWPN.",
263 "readonly": false,
264 "type": [
265 "string",
266 "null"
267 ]
268 }
269 },
270 "type": "object"
271 },
272 "IPAddressType": {
273 "enum": [
274 "IPv4",
275 "IPv6"
276 ],
277 "enumDescriptions": {
278 "IPv4": "IPv4 addressing is used for all IP-fields in this object.",
279 "IPv6": "IPv6 addressing is used for all IP-fields in this object."
280 },
281 "type": "string"
282 },
283 "Links": {
284 "additionalProperties": false,
285 "description": "Contains references to other resources that are related to this resource.",
286 "longDescription": "This type, as described by the Redfish Specification, shall contain references to resources that are related to, but not contained by (subordinate to), this resource.",
287 "patternProperties": {
288 "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_.]+$": {
289 "description": "This property shall specify a valid odata or Redfish property.",
290 "type": [
291 "array",
292 "boolean",
293 "number",
294 "null",
295 "object",
296 "string"
297 ]
298 }
299 },
300 "properties": {
301 "Endpoints": {
302 "description": "An array of references to endpoints associated with this network device function.",
303 "items": {
304 "$ref": "http://redfish.dmtf.org/schemas/v1/Endpoint.json#/definitions/Endpoint"
305 },
306 "longDescription": "The type shall contain an array property who's members reference resources, of type Endpoint, which are associated with this network device function.",
307 "readonly": true,
308 "type": "array"
309 },
310 "Endpoints@odata.count": {
311 "$ref": "http://redfish.dmtf.org/schemas/v1/odata.v4_0_2.json#/definitions/count"
312 },
313 "PCIeFunction": {
314 "$ref": "http://redfish.dmtf.org/schemas/v1/PCIeFunction.json#/definitions/PCIeFunction",
315 "description": "Contains the members of this collection.",
316 "readonly": true
317 }
318 },
319 "type": "object"
320 },
321 "NetworkDeviceFunction": {
322 "additionalProperties": false,
323 "description": "A Network Device Function represents a logical interface exposed by the network adapter.",
324 "longDescription": "A Network Device Function represents a logical interface exposed by the network adapter.",
325 "patternProperties": {
326 "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_.]+$": {
327 "description": "This property shall specify a valid odata or Redfish property.",
328 "type": [
329 "array",
330 "boolean",
331 "number",
332 "null",
333 "object",
334 "string"
335 ]
336 }
337 },
338 "properties": {
339 "@odata.context": {
340 "$ref": "http://redfish.dmtf.org/schemas/v1/odata.v4_0_2.json#/definitions/context"
341 },
342 "@odata.etag": {
343 "$ref": "http://redfish.dmtf.org/schemas/v1/odata.v4_0_2.json#/definitions/etag"
344 },
345 "@odata.id": {
346 "$ref": "http://redfish.dmtf.org/schemas/v1/odata.v4_0_2.json#/definitions/id"
347 },
348 "@odata.type": {
349 "$ref": "http://redfish.dmtf.org/schemas/v1/odata.v4_0_2.json#/definitions/type"
350 },
351 "Actions": {
352 "$ref": "#/definitions/Actions",
353 "description": "The available actions for this resource.",
354 "longDescription": "The Actions property shall contain the available actions for this resource."
355 },
356 "AssignablePhysicalPorts": {
357 "description": "The array of physical port references that this network device function may be assigned to.",
358 "items": {
359 "$ref": "http://redfish.dmtf.org/schemas/v1/NetworkPort.json#/definitions/NetworkPort"
360 },
361 "longDescription": "The value of this property shall be an array of physical port references that this network device function may be assigned to.",
362 "readonly": true,
363 "type": "array"
364 },
365 "AssignablePhysicalPorts@odata.count": {
366 "$ref": "http://redfish.dmtf.org/schemas/v1/odata.v4_0_2.json#/definitions/count"
367 },
368 "BootMode": {
369 "anyOf": [
370 {
371 "$ref": "#/definitions/BootMode"
372 },
373 {
374 "type": "null"
375 }
376 ],
377 "description": "The boot mode configured for this network device function.",
378 "longDescription": "The value of this property shall be the boot mode configured for this network device function. If the value is not quot;Disabled\", this network device function shall be configured for boot using the specified technology.",
379 "readonly": false
380 },
381 "Description": {
382 "anyOf": [
383 {
384 "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Description"
385 },
386 {
387 "type": "null"
388 }
389 ],
390 "readonly": true
391 },
392 "DeviceEnabled": {
393 "description": "Whether the network device function is enabled.",
394 "longDescription": "The value of this property shall be a boolean indicating whether the network device function is enabled. Disabled network device functions shall not be enumerated or seen by the operating system.",
395 "readonly": false,
396 "type": [
397 "boolean",
398 "null"
399 ]
400 },
401 "Ethernet": {
402 "anyOf": [
403 {
404 "$ref": "#/definitions/Ethernet"
405 },
406 {
407 "type": "null"
408 }
409 ],
410 "description": "Ethernet.",
411 "longDescription": "This object shall contain Ethernet capabilities, status, and configuration values for this network device function."
412 },
413 "FibreChannel": {
414 "anyOf": [
415 {
416 "$ref": "#/definitions/FibreChannel"
417 },
418 {
419 "type": "null"
420 }
421 ],
422 "description": "Fibre Channel.",
423 "longDescription": "This object shall contain Fibre Channel capabilities, status, and configuration values for this network device function."
424 },
425 "Id": {
426 "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Id",
427 "readonly": true
428 },
429 "Links": {
430 "$ref": "#/definitions/Links",
431 "description": "Links.",
432 "longDescription": "Links for this NetworkDeviceFunction."
433 },
434 "MaxVirtualFunctions": {
435 "description": "The number of virtual functions (VFs) that are available for this Network Device Function.",
436 "longDescription": "The value of this property shall be the number of virtual functions (VFs) that are available for this Network Device Function.",
437 "readonly": true,
438 "type": [
439 "number",
440 "null"
441 ]
442 },
443 "Name": {
444 "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Name",
445 "readonly": true
446 },
447 "NetDevFuncCapabilities": {
448 "description": "Capabilities of this network device function.",
449 "items": {
450 "anyOf": [
451 {
452 "$ref": "#/definitions/NetworkDeviceTechnology"
453 },
454 {
455 "type": "null"
456 }
457 ]
458 },
459 "longDescription": "This object shall contain an array of capabilities of this network device function.",
460 "readonly": true,
461 "type": "array"
462 },
463 "NetDevFuncType": {
464 "anyOf": [
465 {
466 "$ref": "#/definitions/NetworkDeviceTechnology"
467 },
468 {
469 "type": "null"
470 }
471 ],
472 "description": "The configured capability of this network device function.",
473 "longDescription": "The value of this property shall be the configured capability of this network device function.",
474 "readonly": false
475 },
476 "Oem": {
477 "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Oem",
478 "description": "This is the manufacturer/provider specific extension moniker used to divide the Oem object into sections.",
479 "longDescription": "The value of this string shall be of the format for the reserved word *Oem*."
480 },
481 "PhysicalPortAssignment": {
482 "$ref": "http://redfish.dmtf.org/schemas/v1/NetworkPort.json#/definitions/NetworkPort",
483 "description": "The physical port that this network device function is currently assigned to.",
484 "longDescription": "The value of this property shall be the physical port that this network device function is currently assigned to. This value shall be one of the AssignablePhysicalPorts array members.",
485 "readonly": true
486 },
487 "Status": {
488 "anyOf": [
489 {
490 "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Status"
491 },
492 {
493 "type": "null"
494 }
495 ]
496 },
497 "VirtualFunctionsEnabled": {
498 "description": "Whether Single Root I/O Virtualization (SR-IOV) Virual Functions (VFs) are enabled for this Network Device Function.",
499 "longDescription": "The value of this property shall be a boolean indicating whether Single Root I/O Virtualization (SR-IOV) Virual Functions (VFs) are enabled for this Network Device Function.",
500 "readonly": true,
501 "type": [
502 "boolean",
503 "null"
504 ]
505 },
506 "iSCSIBoot": {
507 "anyOf": [
508 {
509 "$ref": "#/definitions/iSCSIBoot"
510 },
511 {
512 "type": "null"
513 }
514 ],
515 "description": "iSCSI Boot.",
516 "longDescription": "This object shall contain iSCSI boot capabilities, status, and configuration values for this network device function."
517 }
518 },
519 "required": [
520 "Id",
521 "Name"
522 ],
523 "type": "object"
524 },
525 "NetworkDeviceTechnology": {
526 "enum": [
527 "Disabled",
528 "Ethernet",
529 "FibreChannel",
530 "iSCSI",
531 "FibreChannelOverEthernet"
532 ],
533 "enumDescriptions": {
534 "Disabled": "Neither enumerated nor visible to the operating system.",
535 "Ethernet": "Appears to the operating system as an Ethernet device.",
536 "FibreChannel": "Appears to the operating system as a Fibre Channel device.",
537 "FibreChannelOverEthernet": "Appears to the operating system as an FCoE device.",
538 "iSCSI": "Appears to the operating system as an iSCSI device."
539 },
540 "type": "string"
541 },
542 "OemActions": {
543 "additionalProperties": true,
544 "description": "The available OEM specific actions for this resource.",
545 "longDescription": "This type shall contain any additional OEM actions for this resource.",
546 "patternProperties": {
547 "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_.]+$": {
548 "description": "This property shall specify a valid odata or Redfish property.",
549 "type": [
550 "array",
551 "boolean",
552 "number",
553 "null",
554 "object",
555 "string"
556 ]
557 }
558 },
559 "properties": {},
560 "type": "object"
561 },
562 "WWNSource": {
563 "enum": [
564 "ConfiguredLocally",
565 "ProvidedByFabric"
566 ],
567 "enumDescriptions": {
568 "ConfiguredLocally": "The set of FC/FCoE boot targets was applied locally through API or UI.",
569 "ProvidedByFabric": "The set of FC/FCoE boot targets was applied by the Fibre Channel fabric."
570 },
571 "type": "string"
572 },
573 "iSCSIBoot": {
574 "additionalProperties": false,
575 "description": "This type describes iSCSI boot capabilities, status, and configuration of a network device function.",
576 "longDescription": "This type shall describe the iSCSI boot capabilities, status, and configuration values for a network device function.",
577 "patternProperties": {
578 "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_.]+$": {
579 "description": "This property shall specify a valid odata or Redfish property.",
580 "type": [
581 "array",
582 "boolean",
583 "number",
584 "null",
585 "object",
586 "string"
587 ]
588 }
589 },
590 "properties": {
591 "AuthenticationMethod": {
592 "anyOf": [
593 {
594 "$ref": "#/definitions/AuthenticationMethod"
595 },
596 {
597 "type": "null"
598 }
599 ],
600 "description": "The iSCSI boot authentication method for this network device function.",
601 "longDescription": "The value of this property shall be the iSCSI boot authentication method for this network device function.",
602 "readonly": false
603 },
604 "CHAPSecret": {
605 "description": "The shared secret for CHAP authentication.",
606 "longDescription": "The value of this property shall be the shared secret for CHAP authentication.",
607 "readonly": false,
608 "type": [
609 "string",
610 "null"
611 ]
612 },
613 "CHAPUsername": {
614 "description": "The username for CHAP authentication.",
615 "longDescription": "The value of this property shall behe username for CHAP authentication.",
616 "readonly": false,
617 "type": [
618 "string",
619 "null"
620 ]
621 },
622 "IPAddressType": {
623 "anyOf": [
624 {
625 "$ref": "#/definitions/IPAddressType"
626 },
627 {
628 "type": "null"
629 }
630 ],
631 "description": "The type of IP address (IPv6 or IPv4) being populated in the iSCSIBoot IP address fields.",
632 "longDescription": "The value of this property shall behe type of IP address (IPv6 or IPv4) being populated in the iSCSIBoot IP address fields. Mixing of IPv6 and IPv4 addresses on the same network device function shall not be permissible.",
633 "readonly": false
634 },
635 "IPMaskDNSViaDHCP": {
636 "description": "Whether the iSCSI boot initiator uses DHCP to obtain the iniator name, IP address, and netmask.",
637 "longDescription": "The value of this property shall be a boolean indicating whether the iSCSI boot initiator uses DHCP to obtain the iniator name, IP address, and netmask.",
638 "readonly": false,
639 "type": [
640 "boolean",
641 "null"
642 ]
643 },
644 "InitiatorDefaultGateway": {
645 "description": "The IPv6 or IPv4 iSCSI boot default gateway.",
646 "longDescription": "The value of this property shall be the IPv6 or IPv4 iSCSI boot default gateway.",
647 "readonly": false,
648 "type": [
649 "string",
650 "null"
651 ]
652 },
653 "InitiatorIPAddress": {
654 "description": "The IPv6 or IPv4 address of the iSCSI initiator.",
655 "longDescription": "The value of this property shall be the IPv6 or IPv4 address of the iSCSI boot initiator.",
656 "readonly": false,
657 "type": [
658 "string",
659 "null"
660 ]
661 },
662 "InitiatorName": {
663 "description": "The iSCSI initiator name.",
664 "longDescription": "The value of this property shall be the iSCSI boot initiator name. The value of this property should match formats defined in RFC3720 or RFC3721.",
665 "readonly": false,
666 "type": [
667 "string",
668 "null"
669 ]
670 },
671 "InitiatorNetmask": {
672 "description": "The IPv6 or IPv4 netmask of the iSCSI boot initiator.",
673 "longDescription": "The value of this property shall be the IPv6 or IPv4 netmask of the iSCSI boot initiator.",
674 "readonly": false,
675 "type": [
676 "string",
677 "null"
678 ]
679 },
680 "MutualCHAPSecret": {
681 "description": "The CHAP Secret for 2-way CHAP authentication.",
682 "longDescription": "The value of this property shall be the CHAP Secret for 2-way CHAP authentication.",
683 "readonly": false,
684 "type": [
685 "string",
686 "null"
687 ]
688 },
689 "MutualCHAPUsername": {
690 "description": "The CHAP Username for 2-way CHAP authentication.",
691 "longDescription": "The value of this property shall be the CHAP Username for 2-way CHAP authentication.",
692 "readonly": false,
693 "type": [
694 "string",
695 "null"
696 ]
697 },
698 "PrimaryDNS": {
699 "description": "The IPv6 or IPv4 address of the primary DNS server for the iSCSI boot initiator.",
700 "longDescription": "The value of this property shall be the IPv6 or IPv4 address of the primary DNS server for the iSCSI boot initiator.",
701 "readonly": false,
702 "type": [
703 "string",
704 "null"
705 ]
706 },
707 "PrimaryLUN": {
708 "description": "The logical unit number (LUN) for the primary iSCSI boot target.",
709 "longDescription": "The value of this property shall be the logical unit number (LUN) for the primary iSCSI boot target.",
710 "readonly": false,
711 "type": [
712 "number",
713 "null"
714 ]
715 },
716 "PrimaryTargetIPAddress": {
717 "description": "The IP address (IPv6 or IPv4) for the primary iSCSI boot target.",
718 "longDescription": "The value of this property shall be the IP address (IPv6 or IPv4) for the primary iSCSI boot target.",
719 "readonly": false,
720 "type": [
721 "string",
722 "null"
723 ]
724 },
725 "PrimaryTargetName": {
726 "description": "The name of the iSCSI primary boot target.",
727 "longDescription": "The value of this property shall be the name of the primary iSCSI boot target. The value of this property should match formats defined in RFC3720 or RFC3721.",
728 "readonly": false,
729 "type": [
730 "string",
731 "null"
732 ]
733 },
734 "PrimaryTargetTCPPort": {
735 "description": "The TCP port for the primary iSCSI boot target.",
736 "longDescription": "The value of this property shall be the TCP port for the primary iSCSI boot target.",
737 "readonly": false,
738 "type": [
739 "number",
740 "null"
741 ]
742 },
743 "PrimaryVLANEnable": {
744 "description": "This indicates if the primary VLAN is enabled.",
745 "longDescription": "The value of this property shall be used to indicate if this VLAN is enabled for the primary iSCSI boot target.",
746 "readonly": false,
747 "type": [
748 "boolean",
749 "null"
750 ]
751 },
752 "PrimaryVLANId": {
753 "description": "The 802.1q VLAN ID to use for iSCSI boot from the primary target.",
754 "longDescription": "The value of this property shall be the 802.1q VLAN ID to use for iSCSI boot from the primary target. This VLAN ID is only used if PrimaryVLANEnable is true.",
755 "maximum": 4094,
756 "minimum": 0,
757 "readonly": false,
758 "type": [
759 "number",
760 "null"
761 ]
762 },
763 "RouterAdvertisementEnabled": {
764 "description": "Whether IPv6 router advertisement is enabled for the iSCSI boot target.",
765 "longDescription": "The value of this property shall be a boolean indicating whether IPv6 router advertisement is enabled for the iSCSI boot target. This setting shall only apply to IPv6 configurations.",
766 "readonly": false,
767 "type": [
768 "boolean",
769 "null"
770 ]
771 },
772 "SecondaryDNS": {
773 "description": "The IPv6 or IPv4 address of the secondary DNS server for the iSCSI boot initiator.",
774 "longDescription": "The value of this property shall be the IPv6 or IPv4 address of the secondary DNS server for the iSCSI boot initiator.",
775 "readonly": false,
776 "type": [
777 "string",
778 "null"
779 ]
780 },
781 "SecondaryLUN": {
782 "description": "The logical unit number (LUN) for the secondary iSCSI boot target.",
783 "longDescription": "The value of this property shall be the logical unit number (LUN) for the secondary iSCSI boot target.",
784 "readonly": false,
785 "type": [
786 "number",
787 "null"
788 ]
789 },
790 "SecondaryTargetIPAddress": {
791 "description": "The IP address (IPv6 or IPv4) for the secondary iSCSI boot target.",
792 "longDescription": "The value of this property shall be the IP address (IPv6 or IPv4) for the secondary iSCSI boot target.",
793 "readonly": false,
794 "type": [
795 "string",
796 "null"
797 ]
798 },
799 "SecondaryTargetName": {
800 "description": "The name of the iSCSI secondary boot target.",
801 "longDescription": "The value of this property shall be the name of the secondary iSCSI boot target. The value of this property should match formats defined in RFC3720 or RFC3721.",
802 "readonly": false,
803 "type": [
804 "string",
805 "null"
806 ]
807 },
808 "SecondaryTargetTCPPort": {
809 "description": "The TCP port for the secondary iSCSI boot target.",
810 "longDescription": "The value of this property shall be the TCP port for the secondary iSCSI boot target.",
811 "readonly": false,
812 "type": [
813 "number",
814 "null"
815 ]
816 },
817 "SecondaryVLANEnable": {
818 "description": "This indicates if the secondary VLAN is enabled.",
819 "longDescription": "The value of this property shall be used to indicate if this VLAN is enabled for the secondary iSCSI boot target.",
820 "readonly": false,
821 "type": [
822 "boolean",
823 "null"
824 ]
825 },
826 "SecondaryVLANId": {
827 "description": "The 802.1q VLAN ID to use for iSCSI boot from the secondary target.",
828 "longDescription": "The value of this property shall be the 802.1q VLAN ID to use for iSCSI boot from the secondary target. This VLAN ID is only used if SecondaryVLANEnable is true.",
829 "maximum": 4094,
830 "minimum": 0,
831 "readonly": false,
832 "type": [
833 "number",
834 "null"
835 ]
836 },
837 "TargetInfoViaDHCP": {
838 "description": "Whether the iSCSI boot target name, LUN, IP address, and netmask should be obtained from DHCP.",
839 "longDescription": "The value of this property shall be a boolean indicating whether the iSCSI boot target name, LUN, IP address, and netmask should be obtained from DHCP.",
840 "readonly": false,
841 "type": [
842 "boolean",
843 "null"
844 ]
845 }
846 },
847 "type": "object"
848 }
849 },
850 "owningEntity": "DMTF",
851 "title": "#NetworkDeviceFunction.v1_2_1.NetworkDeviceFunction"
852}