blob: 231d08fbf7176fe8e46d17e310df33822279315f [file] [log] [blame]
George Keishingfbeaecc2016-08-16 05:24:31 -05001import os
2
Sweta Potthuridaf91342017-09-07 12:05:56 -05003OPENBMC_BASE_URI = '/xyz/openbmc_project/'
4OPENBMC_BASE_DBUS = 'xyz.openbmc_project.'
George Keishingcf910442016-12-08 03:12:59 -06005
George Keishingcae6e902017-09-07 13:35:59 -05006# org open power base URI.
7OPENPOWER_BASE_URI = '/org/open_power/'
8OPENPOWER_CONTROL = OPENPOWER_BASE_URI + 'control/'
George Keishingac512252018-02-05 02:04:30 -06009OPENPOWER_SENSORS = OPENPOWER_BASE_URI + 'sensors/'
George Keishingcae6e902017-09-07 13:35:59 -050010
11# REST URI base endpoint paths.
George Keishingcf910442016-12-08 03:12:59 -060012CONTROL_URI = OPENBMC_BASE_URI + 'control/'
George Keishing0da47e92017-10-23 02:22:29 -050013# old vs new code dependencies in many places.
14# TODO: remove when ready.
15SETTINGS_URI = '/org/openbmc/settings/'
George Keishingcf910442016-12-08 03:12:59 -060016WATCHDOG_URI = OPENBMC_BASE_URI + 'watchdog/'
Sweta Potthuridaf91342017-09-07 12:05:56 -050017TIME_MANAGER_URI = OPENBMC_BASE_URI + 'time/'
manasarm104cc6b2018-02-07 12:35:05 +053018NETWORK_MANAGER = OPENBMC_BASE_URI + 'network/'
Prashanth Katti081b3d92018-06-15 05:13:11 -050019# SNMP
20SNMP_MANAGER_URI = NETWORK_MANAGER + 'snmp/manager/'
George Keishing06572472017-09-01 11:33:01 -050021# Sensors base variables.
Gunnar Millsdca35792018-03-26 10:05:38 -050022SENSORS_URI = OPENBMC_BASE_URI + 'sensors/'
Marissa Garza9f3d3aa2019-11-06 15:02:44 -060023# Thermal Control base variables
24THERMAL_CONTROL_URI = CONTROL_URI + 'thermal/0'
George Keishing06572472017-09-01 11:33:01 -050025
Sweta Potthuridaf91342017-09-07 12:05:56 -050026# State Manager base variables
Rahul Maheshwari2f8de6c2017-01-17 07:00:22 -060027BMC_REBOOT_TRANS = 'xyz.openbmc_project.State.BMC.Transition.Reboot'
28
George Keishingbec365b2017-01-19 01:28:41 -060029HOST_POWEROFF_TRANS = 'xyz.openbmc_project.State.Host.Transition.Off'
30HOST_POWERON_TRANS = 'xyz.openbmc_project.State.Host.Transition.On'
Rahul Maheshwarif7ead242017-02-14 01:59:42 -060031HOST_REBOOT_TRANS = 'xyz.openbmc_project.State.Host.Transition.Reboot'
George Keishingbec365b2017-01-19 01:28:41 -060032HOST_POWEROFF_STATE = 'xyz.openbmc_project.State.Host.HostState.Off'
33HOST_POWERON_STATE = 'xyz.openbmc_project.State.Host.HostState.Running'
34
35CHASSIS_POWEROFF_TRANS = 'xyz.openbmc_project.State.Chassis.Transition.Off'
36CHASSIS_POWERON_TRANS = 'xyz.openbmc_project.State.Chassis.Transition.On'
37CHASSIS_POWEROFF_STATE = 'xyz.openbmc_project.State.Chassis.PowerState.Off'
38CHASSIS_POWERON_STATE = 'xyz.openbmc_project.State.Chassis.PowerState.On'
39
40# State Manager URI variables.
Sweta Potthuridaf91342017-09-07 12:05:56 -050041SYSTEM_STATE_URI = OPENBMC_BASE_URI + 'state/'
42BMC_STATE_URI = OPENBMC_BASE_URI + 'state/bmc0/'
43HOST_STATE_URI = OPENBMC_BASE_URI + 'state/host0/'
44CHASSIS_STATE_URI = OPENBMC_BASE_URI + 'state/chassis0/'
45HOST_WATCHDOG_URI = OPENBMC_BASE_URI + 'watchdog/host0/'
George Keishingbec365b2017-01-19 01:28:41 -060046
George Keishing505d5b42017-02-21 11:01:54 -060047# Logging URI variables
Sweta Potthuridaf91342017-09-07 12:05:56 -050048BMC_LOGGING_URI = OPENBMC_BASE_URI + 'logging/'
George Keishinga71dd202017-02-24 00:49:40 -060049BMC_LOGGING_ENTRY = BMC_LOGGING_URI + 'entry/'
George Keishing505d5b42017-02-21 11:01:54 -060050
George Keishingab5157b2017-02-09 12:24:25 -060051# Software manager version
Sweta Potthuridaf91342017-09-07 12:05:56 -050052SOFTWARE_VERSION_URI = OPENBMC_BASE_URI + 'software/'
George Keishingab5157b2017-02-09 12:24:25 -060053ACTIVE = 'xyz.openbmc_project.Software.Activation.Activations.Active'
Saqib Khanbb8b63f2017-05-24 10:58:01 -050054READY = 'xyz.openbmc_project.Software.Activation.Activations.Ready'
55INVALID = 'xyz.openbmc_project.Software.Activation.Activations.Invalid'
56ACTIVATING = 'xyz.openbmc_project.Software.Activation.Activations.Activating'
57NOTREADY = 'xyz.openbmc_project.Software.Activation.Activations.NotReady'
58FAILED = 'xyz.openbmc_project.Software.Activation.Activations.Failed'
59
60SOFTWARE_ACTIVATION = 'xyz.openbmc_project.Software.Activation'
George Keishing4af8f362017-10-23 00:26:58 -050061REQUESTED_ACTIVATION = SOFTWARE_ACTIVATION + '.RequestedActivations'
62REQUESTED_ACTIVE = REQUESTED_ACTIVATION + '.Active'
Saqib Khanbb8b63f2017-05-24 10:58:01 -050063REQUESTED_NONE = REQUESTED_ACTIVATION + '.None'
64
65SOFTWARE_PURPOSE = 'xyz.openbmc_project.Software.Version.VersionPurpose'
66VERSION_PURPOSE_HOST = SOFTWARE_PURPOSE + '.Host'
67VERSION_PURPOSE_BMC = SOFTWARE_PURPOSE + '.BMC'
68VERSION_PURPOSE_SYSTEM = SOFTWARE_PURPOSE + '.System'
George Keishingab5157b2017-02-09 12:24:25 -060069
Charles Paul Hofer9f74d3a2017-08-18 09:54:28 -050070# Image Upload Directory Path
71IMAGE_UPLOAD_DIR_PATH = '/tmp/images/'
72
Joy Onyerikwud806cc02019-10-01 07:46:18 -050073# Inventory URI variables
Sweta Potthuridaf91342017-09-07 12:05:56 -050074HOST_INVENTORY_URI = OPENBMC_BASE_URI + 'inventory/'
Joy Onyerikwud806cc02019-10-01 07:46:18 -050075CHASSIS_INVENTORY_URI = HOST_INVENTORY_URI + 'system/chassis/'
76MOTHERBOARD_INVENTORY_URI = CHASSIS_INVENTORY_URI + 'motherboard/'
George Keishingc8166ed2017-02-24 03:53:38 -060077
Rahul Maheshwari7258aec2017-02-02 04:46:38 -060078# Led URI variable
Sweta Potthuridaf91342017-09-07 12:05:56 -050079LED_GROUPS_URI = OPENBMC_BASE_URI + 'led/groups/'
80LED_PHYSICAL_URI = OPENBMC_BASE_URI + 'led/physical/'
Marissa Garza270a4112019-10-08 11:36:58 -050081LED_LAMP_TEST_ASSERTED_URI = LED_GROUPS_URI + 'lamp_test/'
82LED_PHYSICAL_PS0_URI = LED_PHYSICAL_URI + 'cffps1_69/'
83LED_PHYSICAL_PS1_URI = LED_PHYSICAL_URI + 'cffps1_68/'
Marissa Garza3fc34052019-10-28 14:13:13 -050084LED_PHYSICAL_FAN0_URI = LED_PHYSICAL_URI + 'fan0/'
85LED_PHYSICAL_FAN2_URI = LED_PHYSICAL_URI + 'fan2/'
86LED_PHYSICAL_FAN3_URI = LED_PHYSICAL_URI + 'fan3/'
Rahul Maheshwari7258aec2017-02-02 04:46:38 -060087
George Keishing1059b222017-07-21 13:24:43 -050088# Host control URI variables.
Sweta Potthuridaf91342017-09-07 12:05:56 -050089CONTROL_HOST_URI = OPENBMC_BASE_URI + 'control/host0/'
Rahul Maheshwari7258aec2017-02-02 04:46:38 -060090
George Keishing1c3a9662017-08-11 10:16:36 -050091# Power restore variables.
92POWER_RESTORE_URI = CONTROL_HOST_URI + 'power_restore_policy'
93CONTROL_DBUS_BASE = 'xyz.openbmc_project.Control.'
94
95RESTORE_LAST_STATE = CONTROL_DBUS_BASE + 'Power.RestorePolicy.Policy.Restore'
96ALWAYS_POWER_ON = CONTROL_DBUS_BASE + 'Power.RestorePolicy.Policy.AlwaysOn'
97ALWAYS_POWER_OFF = CONTROL_DBUS_BASE + 'Power.RestorePolicy.Policy.AlwaysOff'
98
Sweta Potthuri09a3cf92017-12-08 01:19:53 -060099# Dump URI variables.
George Keishing8d693382018-12-18 12:15:04 -0600100DUMP_URI = OPENBMC_BASE_URI + 'dump/'
Rahul Maheshwari23b18fb2017-08-01 00:30:26 -0500101DUMP_ENTRY_URI = DUMP_URI + 'entry/'
Naman Navin Hegdeebd4d682019-07-22 02:39:35 -0500102DUMP_DOWNLOAD_URI = "/download/dump/"
Michael Walshe11a1362017-10-19 15:35:26 -0500103# The path on the BMC where dumps are stored.
104DUMP_DIR_PATH = "/var/lib/phosphor-debug-collector/dumps/"
Rahul Maheshwari23b18fb2017-08-01 00:30:26 -0500105
George Keishing2bd6fc02017-08-10 01:15:16 -0500106# Boot progress variables.
107STATE_DBUS_BASE = 'xyz.openbmc_project.State.'
108OS_BOOT_START = STATE_DBUS_BASE + 'Boot.Progress.ProgressStages.OSStart'
109OS_BOOT_OFF = STATE_DBUS_BASE + 'Boot.Progress.ProgressStages.Unspecified'
Sweta Potthuri09a3cf92017-12-08 01:19:53 -0600110OS_BOOT_PCI = STATE_DBUS_BASE + 'Boot.Progress.ProgressStages.PCIInit'
111OS_BOOT_SECPCI = STATE_DBUS_BASE + \
Gunnar Millsdca35792018-03-26 10:05:38 -0500112 'Boot.Progress.ProgressStages.SecondaryProcInit'
Sweta Potthuri09a3cf92017-12-08 01:19:53 -0600113OS_BOOT_MEM = STATE_DBUS_BASE + 'Boot.Progress.ProgressStages.MemoryInit'
114OS_BOOT_MOTHERBOARD = STATE_DBUS_BASE + \
Gunnar Millsdca35792018-03-26 10:05:38 -0500115 'Boot.Progress.ProgressStages.MotherboardInit'
Sweta Potthuri09a3cf92017-12-08 01:19:53 -0600116
117# OperatingSystem status variables.
Gunnar Millsdca35792018-03-26 10:05:38 -0500118OS_BOOT_COMPLETE = STATE_DBUS_BASE + \
119 'OperatingSystem.Status.OSStatus.BootComplete'
120OS_BOOT_CDROM = STATE_DBUS_BASE + 'OperatingSystem.Status.OSStatus.CDROMBoot'
Sweta Potthuri09a3cf92017-12-08 01:19:53 -0600121OS_BOOT_ROM = STATE_DBUS_BASE + 'OperatingSystem.Status.OSStatus.ROMBoot'
122OS_BOOT_PXE = STATE_DBUS_BASE + 'OperatingSystem.Status.OSStatus.PXEBoot'
123OS_BOOT_CBoot = STATE_DBUS_BASE + 'OperatingSystem.Status.OSStatus.CBoot'
124OS_BOOT_DiagBoot = STATE_DBUS_BASE + 'OperatingSystem.Status.OSStatus.DiagBoot'
George Keishing2bd6fc02017-08-10 01:15:16 -0500125
Rahul Maheshwari85c4d342017-08-09 21:59:30 -0500126# Boot variables.
127BOOT_SOURCE_DEFAULT = 'xyz.openbmc_project.Control.Boot.Source.Sources.Default'
128BOOT_SOURCE_NETWORK = 'xyz.openbmc_project.Control.Boot.Source.Sources.Network'
129BOOT_SOURCE_DISK = 'xyz.openbmc_project.Control.Boot.Source.Sources.Disk'
130BOOT_SOURCE_CDROM = 'xyz.openbmc_project.Control.Boot.Source.Sources.ExternalMedia'
131BOOT_MODE_SAFE = 'xyz.openbmc_project.Control.Boot.Mode.Modes.Safe'
132BOOT_MODE_SETUP = 'xyz.openbmc_project.Control.Boot.Mode.Modes.Setup'
133BOOT_MODE_REGULAR = 'xyz.openbmc_project.Control.Boot.Mode.Modes.Regular'
134
Rahul Maheshwarif486ae82017-10-24 06:10:14 -0500135# Time variables.
136TIME_DBUS_BASE = 'xyz.openbmc_project.Time.'
137BMC_OWNER = TIME_DBUS_BASE + 'Owner.Owners.BMC'
138HOST_OWNER = TIME_DBUS_BASE + 'Owner.Owners.Host'
139SPLIT_OWNER = TIME_DBUS_BASE + 'Owner.Owners.Split'
140BOTH_OWNER = TIME_DBUS_BASE + 'Owner.Owners.Both'
141NTP_MODE = TIME_DBUS_BASE + 'Synchronization.Method.NTP'
142MANUAL_MODE = TIME_DBUS_BASE + 'Synchronization.Method.Manual'
143
George Keishingf1331672018-01-18 05:19:02 -0600144# User manager variable.
145BMC_USER_URI = OPENBMC_BASE_URI + 'user/'
146
Sivas SRR39909e32018-11-09 18:58:36 -0600147# LDAP User manager variable.
148BMC_LDAP_URI = BMC_USER_URI + 'ldap'
149
George Keishing0b837432018-03-20 13:46:10 -0500150# The path on the BMC where signed keys are stored.
151ACTIVATION_DIR_PATH = "/etc/activationdata/"
152
George Keishingeaa73b72018-07-30 09:30:16 -0500153# Redfish variables.
154REDFISH_BASE_URI = '/redfish/v1/'
155REDFISH_SESSION = REDFISH_BASE_URI + 'SessionService/Sessions'
George Keishing9cef1092018-08-06 01:06:24 -0500156REDFISH_SESSION_URI = 'SessionService/Sessions/'
Prashanth Kattif58cce02019-02-06 03:05:14 -0600157REDFISH_NW_ETH0 = 'Managers/bmc/EthernetInterfaces/eth0/'
158REDFISH_NW_ETH0_URI = REDFISH_BASE_URI + REDFISH_NW_ETH0
Prashanth Katti23efc6e2019-03-13 06:07:15 -0500159REDFISH_NW_PROTOCOL = 'Managers/bmc/NetworkProtocol'
160REDFISH_NW_PROTOCOL_URI = REDFISH_BASE_URI + REDFISH_NW_PROTOCOL
Sandhya Somashekar37122b62019-06-18 06:02:02 -0500161REDFISH_ACCOUNTS_SERVICE = 'AccountService/'
162REDFISH_ACCOUNTS_SERVICE_URI = REDFISH_BASE_URI + REDFISH_ACCOUNTS_SERVICE
Sandhya Somashekare92b1e62019-04-25 05:27:45 -0500163REDFISH_ACCOUNTS = 'AccountService/Accounts/'
164REDFISH_ACCOUNTS_URI = REDFISH_BASE_URI + REDFISH_ACCOUNTS
Rahul Maheshwaric1f43ed2019-06-03 01:00:16 -0500165REDFISH_HTTPS_CERTIFICATE = 'Managers/bmc/NetworkProtocol/HTTPS/Certificates'
166REDFISH_HTTPS_CERTIFICATE_URI = REDFISH_BASE_URI + REDFISH_HTTPS_CERTIFICATE
Rahul Maheshwari037a3432019-05-23 00:55:40 -0500167REDFISH_LDAP_CERTIFICATE = 'AccountService/LDAP/Certificates'
168REDFISH_LDAP_CERTIFICATE_URI = REDFISH_BASE_URI + REDFISH_LDAP_CERTIFICATE
Rahul Maheshwari3ecd1a62019-06-03 01:44:34 -0500169REDFISH_CA_CERTIFICATE = 'Managers/bmc/Truststore/Certificates'
170REDFISH_CA_CERTIFICATE_URI = REDFISH_BASE_URI + REDFISH_CA_CERTIFICATE
Steven Sombar815fa632019-07-16 14:24:40 -0500171REDFISH_CHASSIS_URI = REDFISH_BASE_URI + 'Chassis/'
George Keishing85ef4482019-07-22 23:36:06 -0500172REDFISH_CHASSIS_THERMAL = 'chassis/Thermal/'
173REDFISH_CHASSIS_THERMAL_URI = REDFISH_CHASSIS_URI + REDFISH_CHASSIS_THERMAL
George Keishing49ea58f2019-07-22 23:42:59 -0500174REDFISH_CHASSIS_POWER = 'chassis/Power/'
175REDFISH_CHASSIS_POWER_URI = REDFISH_CHASSIS_URI + REDFISH_CHASSIS_POWER
Joy Onyerikwud806cc02019-10-01 07:46:18 -0500176REDFISH_CHASSIS_SENSORS = 'chassis/Sensors'
177REDFISH_CHASSIS_SENSORS_URI = REDFISH_CHASSIS_URI + REDFISH_CHASSIS_SENSORS
George Keishingeaa73b72018-07-30 09:30:16 -0500178
George Keishing713dd5e2018-11-29 01:16:19 -0600179# Boot options and URI variables.
180POWER_ON = 'On'
Sridevi Ramesh0047de82019-02-01 06:33:08 -0600181POWER_GRACEFUL_OFF = "GracefulShutdown"
182POWER_GRACEFUL_RESTART = "GracefulRestart"
George Keishing713dd5e2018-11-29 01:16:19 -0600183POWER_FORCE_OFF = 'ForceOff'
184
Sivas SRR939b4b12019-06-26 00:01:59 -0500185REDFISH_POWER = 'Systems/system/Actions/ComputerSystem.Reset'
186REDFISH_POWER_URI = REDFISH_BASE_URI + REDFISH_POWER
George Keishing713dd5e2018-11-29 01:16:19 -0600187
George Keishing6a514ef2018-08-27 05:19:19 -0500188# rsyslog variables.
189REMOTE_LOGGING_URI = OPENBMC_BASE_URI + 'logging/config/remote/'
190
Rahul Maheshwari984791c2018-09-21 00:49:37 -0500191# Certificate variables.
192SERVER_CERTIFICATE_URI = OPENBMC_BASE_URI + 'certs/server/https'
193CLIENT_CERTIFICATE_URI = OPENBMC_BASE_URI + 'certs/client/ldap'
Rahul Maheshwari081eadb2018-10-26 03:11:10 -0500194CA_CERTIFICATE_URI = OPENBMC_BASE_URI + 'certs/authority/ldap'
Rahul Maheshwari984791c2018-09-21 00:49:37 -0500195
George Keishing87e2a852019-05-29 12:30:14 -0500196# EventLog variables.
197SYSTEM_BASE_URI = REDFISH_BASE_URI + 'Systems/system/'
George Keishing32f6df62019-05-29 13:58:12 -0500198EVENT_LOG_URI = SYSTEM_BASE_URI + 'LogServices/EventLog/'
George Keishing87e2a852019-05-29 12:30:14 -0500199
200
George Keishingfbeaecc2016-08-16 05:24:31 -0500201'''
202 QEMU HTTPS variable:
203
Sandhya Somashekar839a0c22019-01-31 05:05:43 -0600204 By default lib/resource.robot AUTH URI construct is as
George Keishingfbeaecc2016-08-16 05:24:31 -0500205 ${AUTH_URI} https://${OPENBMC_HOST}${AUTH_SUFFIX}
206 ${AUTH_SUFFIX} is populated here by default EMPTY else
207 the port from the OS environment
208'''
George Keishingcf910442016-12-08 03:12:59 -0600209
210
George Keishingfbeaecc2016-08-16 05:24:31 -0500211def get_port_https():
212 # defaulted to empty string
213 l_suffix = ''
214 try:
215 l_https_port = os.getenv('HTTPS_PORT')
216 if l_https_port:
George Keishingcf910442016-12-08 03:12:59 -0600217 l_suffix = ':' + l_https_port
Joy Onyerikwu004ad3c2018-06-11 16:29:56 -0500218 except BaseException:
George Keishing3b7115a2018-08-02 10:48:17 -0500219 print ("Environment variable HTTPS_PORT not set,\
220 using default HTTPS port")
George Keishingfbeaecc2016-08-16 05:24:31 -0500221 return l_suffix
222
Gunnar Millsdca35792018-03-26 10:05:38 -0500223
George Keishingcf910442016-12-08 03:12:59 -0600224AUTH_SUFFIX = {
225 "https_port": [get_port_https()],
George Keishingfbeaecc2016-08-16 05:24:31 -0500226}
227
228# Update the ':Port number' to this variable
229AUTH_SUFFIX = AUTH_SUFFIX['https_port'][0]
Chris Austenb29d2e82016-06-07 12:25:35 -0500230
231# Here contains a list of valid Properties bases on fru_type after a boot.
George Keishingcf910442016-12-08 03:12:59 -0600232INVENTORY_ITEMS = {
Chris Austenb29d2e82016-06-07 12:25:35 -0500233 "CPU": [
234 "Custom Field 1",
235 "Custom Field 2",
236 "Custom Field 3",
237 "Custom Field 4",
238 "Custom Field 5",
239 "Custom Field 6",
240 "Custom Field 7",
241 "Custom Field 8",
242 "FRU File ID",
243 "Manufacturer",
244 "Name",
245 "Part Number",
246 "Serial Number",
247 "fault",
248 "fru_type",
249 "is_fru",
250 "present",
251 "version",
Gunnar Millsdca35792018-03-26 10:05:38 -0500252 ],
Chris Austenb29d2e82016-06-07 12:25:35 -0500253
254 "DIMM": [
255 "Asset Tag",
256 "Custom Field 1",
257 "Custom Field 2",
258 "Custom Field 3",
259 "Custom Field 4",
260 "Custom Field 5",
261 "Custom Field 6",
262 "Custom Field 7",
263 "Custom Field 8",
264 "FRU File ID",
265 "Manufacturer",
266 "Model Number",
267 "Name",
268 "Serial Number",
269 "Version",
270 "fault",
271 "fru_type",
272 "is_fru",
273 "present",
274 "version",
Gunnar Millsdca35792018-03-26 10:05:38 -0500275 ],
Chris Austenb29d2e82016-06-07 12:25:35 -0500276 "MEMORY_BUFFER": [
277 "Custom Field 1",
278 "Custom Field 2",
279 "Custom Field 3",
280 "Custom Field 4",
281 "Custom Field 5",
282 "Custom Field 6",
283 "Custom Field 7",
284 "Custom Field 8",
285 "FRU File ID",
286 "Manufacturer",
287 "Name",
288 "Part Number",
289 "Serial Number",
290 "fault",
291 "fru_type",
292 "is_fru",
293 "present",
294 "version",
Gunnar Millsdca35792018-03-26 10:05:38 -0500295 ],
Chris Austenb29d2e82016-06-07 12:25:35 -0500296 "FAN": [
297 "fault",
298 "fru_type",
299 "is_fru",
300 "present",
301 "version",
Gunnar Millsdca35792018-03-26 10:05:38 -0500302 ],
Chris Austenb29d2e82016-06-07 12:25:35 -0500303 "DAUGHTER_CARD": [
304 "Custom Field 1",
305 "Custom Field 2",
306 "Custom Field 3",
307 "Custom Field 4",
308 "Custom Field 5",
309 "Custom Field 6",
310 "Custom Field 7",
311 "Custom Field 8",
312 "FRU File ID",
313 "Manufacturer",
314 "Name",
315 "Part Number",
316 "Serial Number",
317 "fault",
318 "fru_type",
319 "is_fru",
320 "present",
321 "version",
Gunnar Millsdca35792018-03-26 10:05:38 -0500322 ],
Chris Austenb29d2e82016-06-07 12:25:35 -0500323 "BMC": [
324 "fault",
325 "fru_type",
326 "is_fru",
327 "manufacturer",
328 "present",
329 "version",
Gunnar Millsdca35792018-03-26 10:05:38 -0500330 ],
Chris Austenb29d2e82016-06-07 12:25:35 -0500331 "MAIN_PLANAR": [
332 "Custom Field 1",
333 "Custom Field 2",
334 "Custom Field 3",
335 "Custom Field 4",
336 "Custom Field 5",
337 "Custom Field 6",
338 "Custom Field 7",
339 "Custom Field 8",
340 "Part Number",
341 "Serial Number",
342 "Type",
343 "fault",
344 "fru_type",
345 "is_fru",
346 "present",
347 "version",
Gunnar Millsdca35792018-03-26 10:05:38 -0500348 ],
Chris Austenb29d2e82016-06-07 12:25:35 -0500349 "SYSTEM": [
350 "Custom Field 1",
351 "Custom Field 2",
352 "Custom Field 3",
353 "Custom Field 4",
354 "Custom Field 5",
355 "Custom Field 6",
356 "Custom Field 7",
357 "Custom Field 8",
358 "FRU File ID",
359 "Manufacturer",
360 "Model Number",
361 "Name",
362 "Serial Number",
363 "Version",
364 "fault",
365 "fru_type",
366 "is_fru",
367 "present",
368 "version",
Gunnar Millsdca35792018-03-26 10:05:38 -0500369 ],
Chris Austenb29d2e82016-06-07 12:25:35 -0500370 "CORE": [
371 "fault",
372 "fru_type",
373 "is_fru",
374 "present",
375 "version",
Gunnar Millsdca35792018-03-26 10:05:38 -0500376 ],
Chris Austenb29d2e82016-06-07 12:25:35 -0500377}