blob: 22bba3243711f3e4eab2cece2804ae2b3ab0b49d [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/'
George Keishing06572472017-09-01 11:33:01 -050023
Sweta Potthuridaf91342017-09-07 12:05:56 -050024# State Manager base variables
Rahul Maheshwari2f8de6c2017-01-17 07:00:22 -060025BMC_REBOOT_TRANS = 'xyz.openbmc_project.State.BMC.Transition.Reboot'
26
George Keishingbec365b2017-01-19 01:28:41 -060027HOST_POWEROFF_TRANS = 'xyz.openbmc_project.State.Host.Transition.Off'
28HOST_POWERON_TRANS = 'xyz.openbmc_project.State.Host.Transition.On'
Rahul Maheshwarif7ead242017-02-14 01:59:42 -060029HOST_REBOOT_TRANS = 'xyz.openbmc_project.State.Host.Transition.Reboot'
George Keishingbec365b2017-01-19 01:28:41 -060030HOST_POWEROFF_STATE = 'xyz.openbmc_project.State.Host.HostState.Off'
31HOST_POWERON_STATE = 'xyz.openbmc_project.State.Host.HostState.Running'
32
33CHASSIS_POWEROFF_TRANS = 'xyz.openbmc_project.State.Chassis.Transition.Off'
34CHASSIS_POWERON_TRANS = 'xyz.openbmc_project.State.Chassis.Transition.On'
35CHASSIS_POWEROFF_STATE = 'xyz.openbmc_project.State.Chassis.PowerState.Off'
36CHASSIS_POWERON_STATE = 'xyz.openbmc_project.State.Chassis.PowerState.On'
37
38# State Manager URI variables.
Sweta Potthuridaf91342017-09-07 12:05:56 -050039SYSTEM_STATE_URI = OPENBMC_BASE_URI + 'state/'
40BMC_STATE_URI = OPENBMC_BASE_URI + 'state/bmc0/'
41HOST_STATE_URI = OPENBMC_BASE_URI + 'state/host0/'
42CHASSIS_STATE_URI = OPENBMC_BASE_URI + 'state/chassis0/'
43HOST_WATCHDOG_URI = OPENBMC_BASE_URI + 'watchdog/host0/'
George Keishingbec365b2017-01-19 01:28:41 -060044
George Keishing505d5b42017-02-21 11:01:54 -060045# Logging URI variables
Sweta Potthuridaf91342017-09-07 12:05:56 -050046BMC_LOGGING_URI = OPENBMC_BASE_URI + 'logging/'
George Keishinga71dd202017-02-24 00:49:40 -060047BMC_LOGGING_ENTRY = BMC_LOGGING_URI + 'entry/'
George Keishing505d5b42017-02-21 11:01:54 -060048
George Keishingab5157b2017-02-09 12:24:25 -060049# Software manager version
Sweta Potthuridaf91342017-09-07 12:05:56 -050050SOFTWARE_VERSION_URI = OPENBMC_BASE_URI + 'software/'
George Keishingab5157b2017-02-09 12:24:25 -060051ACTIVE = 'xyz.openbmc_project.Software.Activation.Activations.Active'
Saqib Khanbb8b63f2017-05-24 10:58:01 -050052READY = 'xyz.openbmc_project.Software.Activation.Activations.Ready'
53INVALID = 'xyz.openbmc_project.Software.Activation.Activations.Invalid'
54ACTIVATING = 'xyz.openbmc_project.Software.Activation.Activations.Activating'
55NOTREADY = 'xyz.openbmc_project.Software.Activation.Activations.NotReady'
56FAILED = 'xyz.openbmc_project.Software.Activation.Activations.Failed'
57
58SOFTWARE_ACTIVATION = 'xyz.openbmc_project.Software.Activation'
George Keishing4af8f362017-10-23 00:26:58 -050059REQUESTED_ACTIVATION = SOFTWARE_ACTIVATION + '.RequestedActivations'
60REQUESTED_ACTIVE = REQUESTED_ACTIVATION + '.Active'
Saqib Khanbb8b63f2017-05-24 10:58:01 -050061REQUESTED_NONE = REQUESTED_ACTIVATION + '.None'
62
63SOFTWARE_PURPOSE = 'xyz.openbmc_project.Software.Version.VersionPurpose'
64VERSION_PURPOSE_HOST = SOFTWARE_PURPOSE + '.Host'
65VERSION_PURPOSE_BMC = SOFTWARE_PURPOSE + '.BMC'
66VERSION_PURPOSE_SYSTEM = SOFTWARE_PURPOSE + '.System'
George Keishingab5157b2017-02-09 12:24:25 -060067
Charles Paul Hofer9f74d3a2017-08-18 09:54:28 -050068# Image Upload Directory Path
69IMAGE_UPLOAD_DIR_PATH = '/tmp/images/'
70
George Keishingc8166ed2017-02-24 03:53:38 -060071# Inventory URI
Sweta Potthuridaf91342017-09-07 12:05:56 -050072HOST_INVENTORY_URI = OPENBMC_BASE_URI + 'inventory/'
George Keishingc8166ed2017-02-24 03:53:38 -060073
Rahul Maheshwari7258aec2017-02-02 04:46:38 -060074# Led URI variable
Sweta Potthuridaf91342017-09-07 12:05:56 -050075LED_GROUPS_URI = OPENBMC_BASE_URI + 'led/groups/'
76LED_PHYSICAL_URI = OPENBMC_BASE_URI + 'led/physical/'
Rahul Maheshwari7258aec2017-02-02 04:46:38 -060077
George Keishing1059b222017-07-21 13:24:43 -050078# Host control URI variables.
Sweta Potthuridaf91342017-09-07 12:05:56 -050079CONTROL_HOST_URI = OPENBMC_BASE_URI + 'control/host0/'
Rahul Maheshwari7258aec2017-02-02 04:46:38 -060080
George Keishing1c3a9662017-08-11 10:16:36 -050081# Power restore variables.
82POWER_RESTORE_URI = CONTROL_HOST_URI + 'power_restore_policy'
83CONTROL_DBUS_BASE = 'xyz.openbmc_project.Control.'
84
85RESTORE_LAST_STATE = CONTROL_DBUS_BASE + 'Power.RestorePolicy.Policy.Restore'
86ALWAYS_POWER_ON = CONTROL_DBUS_BASE + 'Power.RestorePolicy.Policy.AlwaysOn'
87ALWAYS_POWER_OFF = CONTROL_DBUS_BASE + 'Power.RestorePolicy.Policy.AlwaysOff'
88
Sweta Potthuri09a3cf92017-12-08 01:19:53 -060089# Dump URI variables.
George Keishing8d693382018-12-18 12:15:04 -060090DUMP_URI = OPENBMC_BASE_URI + 'dump/'
Rahul Maheshwari23b18fb2017-08-01 00:30:26 -050091DUMP_ENTRY_URI = DUMP_URI + 'entry/'
Naman Navin Hegdeebd4d682019-07-22 02:39:35 -050092DUMP_DOWNLOAD_URI = "/download/dump/"
Michael Walshe11a1362017-10-19 15:35:26 -050093# The path on the BMC where dumps are stored.
94DUMP_DIR_PATH = "/var/lib/phosphor-debug-collector/dumps/"
Rahul Maheshwari23b18fb2017-08-01 00:30:26 -050095
George Keishing2bd6fc02017-08-10 01:15:16 -050096# Boot progress variables.
97STATE_DBUS_BASE = 'xyz.openbmc_project.State.'
98OS_BOOT_START = STATE_DBUS_BASE + 'Boot.Progress.ProgressStages.OSStart'
99OS_BOOT_OFF = STATE_DBUS_BASE + 'Boot.Progress.ProgressStages.Unspecified'
Sweta Potthuri09a3cf92017-12-08 01:19:53 -0600100OS_BOOT_PCI = STATE_DBUS_BASE + 'Boot.Progress.ProgressStages.PCIInit'
101OS_BOOT_SECPCI = STATE_DBUS_BASE + \
Gunnar Millsdca35792018-03-26 10:05:38 -0500102 'Boot.Progress.ProgressStages.SecondaryProcInit'
Sweta Potthuri09a3cf92017-12-08 01:19:53 -0600103OS_BOOT_MEM = STATE_DBUS_BASE + 'Boot.Progress.ProgressStages.MemoryInit'
104OS_BOOT_MOTHERBOARD = STATE_DBUS_BASE + \
Gunnar Millsdca35792018-03-26 10:05:38 -0500105 'Boot.Progress.ProgressStages.MotherboardInit'
Sweta Potthuri09a3cf92017-12-08 01:19:53 -0600106
107# OperatingSystem status variables.
Gunnar Millsdca35792018-03-26 10:05:38 -0500108OS_BOOT_COMPLETE = STATE_DBUS_BASE + \
109 'OperatingSystem.Status.OSStatus.BootComplete'
110OS_BOOT_CDROM = STATE_DBUS_BASE + 'OperatingSystem.Status.OSStatus.CDROMBoot'
Sweta Potthuri09a3cf92017-12-08 01:19:53 -0600111OS_BOOT_ROM = STATE_DBUS_BASE + 'OperatingSystem.Status.OSStatus.ROMBoot'
112OS_BOOT_PXE = STATE_DBUS_BASE + 'OperatingSystem.Status.OSStatus.PXEBoot'
113OS_BOOT_CBoot = STATE_DBUS_BASE + 'OperatingSystem.Status.OSStatus.CBoot'
114OS_BOOT_DiagBoot = STATE_DBUS_BASE + 'OperatingSystem.Status.OSStatus.DiagBoot'
George Keishing2bd6fc02017-08-10 01:15:16 -0500115
Rahul Maheshwari85c4d342017-08-09 21:59:30 -0500116# Boot variables.
117BOOT_SOURCE_DEFAULT = 'xyz.openbmc_project.Control.Boot.Source.Sources.Default'
118BOOT_SOURCE_NETWORK = 'xyz.openbmc_project.Control.Boot.Source.Sources.Network'
119BOOT_SOURCE_DISK = 'xyz.openbmc_project.Control.Boot.Source.Sources.Disk'
120BOOT_SOURCE_CDROM = 'xyz.openbmc_project.Control.Boot.Source.Sources.ExternalMedia'
121BOOT_MODE_SAFE = 'xyz.openbmc_project.Control.Boot.Mode.Modes.Safe'
122BOOT_MODE_SETUP = 'xyz.openbmc_project.Control.Boot.Mode.Modes.Setup'
123BOOT_MODE_REGULAR = 'xyz.openbmc_project.Control.Boot.Mode.Modes.Regular'
124
Rahul Maheshwarif486ae82017-10-24 06:10:14 -0500125# Time variables.
126TIME_DBUS_BASE = 'xyz.openbmc_project.Time.'
127BMC_OWNER = TIME_DBUS_BASE + 'Owner.Owners.BMC'
128HOST_OWNER = TIME_DBUS_BASE + 'Owner.Owners.Host'
129SPLIT_OWNER = TIME_DBUS_BASE + 'Owner.Owners.Split'
130BOTH_OWNER = TIME_DBUS_BASE + 'Owner.Owners.Both'
131NTP_MODE = TIME_DBUS_BASE + 'Synchronization.Method.NTP'
132MANUAL_MODE = TIME_DBUS_BASE + 'Synchronization.Method.Manual'
133
George Keishingf1331672018-01-18 05:19:02 -0600134# User manager variable.
135BMC_USER_URI = OPENBMC_BASE_URI + 'user/'
136
Sivas SRR39909e32018-11-09 18:58:36 -0600137# LDAP User manager variable.
138BMC_LDAP_URI = BMC_USER_URI + 'ldap'
139
George Keishing0b837432018-03-20 13:46:10 -0500140# The path on the BMC where signed keys are stored.
141ACTIVATION_DIR_PATH = "/etc/activationdata/"
142
George Keishingeaa73b72018-07-30 09:30:16 -0500143# Redfish variables.
144REDFISH_BASE_URI = '/redfish/v1/'
145REDFISH_SESSION = REDFISH_BASE_URI + 'SessionService/Sessions'
George Keishing9cef1092018-08-06 01:06:24 -0500146REDFISH_SESSION_URI = 'SessionService/Sessions/'
Prashanth Kattif58cce02019-02-06 03:05:14 -0600147REDFISH_NW_ETH0 = 'Managers/bmc/EthernetInterfaces/eth0/'
148REDFISH_NW_ETH0_URI = REDFISH_BASE_URI + REDFISH_NW_ETH0
Prashanth Katti23efc6e2019-03-13 06:07:15 -0500149REDFISH_NW_PROTOCOL = 'Managers/bmc/NetworkProtocol'
150REDFISH_NW_PROTOCOL_URI = REDFISH_BASE_URI + REDFISH_NW_PROTOCOL
Sandhya Somashekar37122b62019-06-18 06:02:02 -0500151REDFISH_ACCOUNTS_SERVICE = 'AccountService/'
152REDFISH_ACCOUNTS_SERVICE_URI = REDFISH_BASE_URI + REDFISH_ACCOUNTS_SERVICE
Sandhya Somashekare92b1e62019-04-25 05:27:45 -0500153REDFISH_ACCOUNTS = 'AccountService/Accounts/'
154REDFISH_ACCOUNTS_URI = REDFISH_BASE_URI + REDFISH_ACCOUNTS
Rahul Maheshwaric1f43ed2019-06-03 01:00:16 -0500155REDFISH_HTTPS_CERTIFICATE = 'Managers/bmc/NetworkProtocol/HTTPS/Certificates'
156REDFISH_HTTPS_CERTIFICATE_URI = REDFISH_BASE_URI + REDFISH_HTTPS_CERTIFICATE
Rahul Maheshwari037a3432019-05-23 00:55:40 -0500157REDFISH_LDAP_CERTIFICATE = 'AccountService/LDAP/Certificates'
158REDFISH_LDAP_CERTIFICATE_URI = REDFISH_BASE_URI + REDFISH_LDAP_CERTIFICATE
Rahul Maheshwari3ecd1a62019-06-03 01:44:34 -0500159REDFISH_CA_CERTIFICATE = 'Managers/bmc/Truststore/Certificates'
160REDFISH_CA_CERTIFICATE_URI = REDFISH_BASE_URI + REDFISH_CA_CERTIFICATE
Steven Sombar815fa632019-07-16 14:24:40 -0500161REDFISH_CHASSIS_URI = REDFISH_BASE_URI + 'Chassis/'
George Keishing85ef4482019-07-22 23:36:06 -0500162REDFISH_CHASSIS_THERMAL = 'chassis/Thermal/'
163REDFISH_CHASSIS_THERMAL_URI = REDFISH_CHASSIS_URI + REDFISH_CHASSIS_THERMAL
George Keishing49ea58f2019-07-22 23:42:59 -0500164REDFISH_CHASSIS_POWER = 'chassis/Power/'
165REDFISH_CHASSIS_POWER_URI = REDFISH_CHASSIS_URI + REDFISH_CHASSIS_POWER
Marissa Garza6e3f9ec2019-07-24 15:31:26 -0500166REDFISH_CHASSIS_PSUPPLY0 = 'powersupply0/Power/'
167REDFISH_CHASSIS_PSUPPLY1 = 'powersupply1/Power/'
168REDFISH_CHASSIS_PSUPPLY0_URI = REDFISH_CHASSIS_URI + REDFISH_CHASSIS_PSUPPLY0
169REDFISH_CHASSIS_PSUPPLY1_URI = REDFISH_CHASSIS_URI + REDFISH_CHASSIS_PSUPPLY1
George Keishingeaa73b72018-07-30 09:30:16 -0500170
George Keishing713dd5e2018-11-29 01:16:19 -0600171# Boot options and URI variables.
172POWER_ON = 'On'
Sridevi Ramesh0047de82019-02-01 06:33:08 -0600173POWER_GRACEFUL_OFF = "GracefulShutdown"
174POWER_GRACEFUL_RESTART = "GracefulRestart"
George Keishing713dd5e2018-11-29 01:16:19 -0600175POWER_FORCE_OFF = 'ForceOff'
176
Sivas SRR939b4b12019-06-26 00:01:59 -0500177REDFISH_POWER = 'Systems/system/Actions/ComputerSystem.Reset'
178REDFISH_POWER_URI = REDFISH_BASE_URI + REDFISH_POWER
George Keishing713dd5e2018-11-29 01:16:19 -0600179
George Keishing6a514ef2018-08-27 05:19:19 -0500180# rsyslog variables.
181REMOTE_LOGGING_URI = OPENBMC_BASE_URI + 'logging/config/remote/'
182
Rahul Maheshwari984791c2018-09-21 00:49:37 -0500183# Certificate variables.
184SERVER_CERTIFICATE_URI = OPENBMC_BASE_URI + 'certs/server/https'
185CLIENT_CERTIFICATE_URI = OPENBMC_BASE_URI + 'certs/client/ldap'
Rahul Maheshwari081eadb2018-10-26 03:11:10 -0500186CA_CERTIFICATE_URI = OPENBMC_BASE_URI + 'certs/authority/ldap'
Rahul Maheshwari984791c2018-09-21 00:49:37 -0500187
George Keishing87e2a852019-05-29 12:30:14 -0500188# EventLog variables.
189SYSTEM_BASE_URI = REDFISH_BASE_URI + 'Systems/system/'
George Keishing32f6df62019-05-29 13:58:12 -0500190EVENT_LOG_URI = SYSTEM_BASE_URI + 'LogServices/EventLog/'
George Keishing87e2a852019-05-29 12:30:14 -0500191
192
George Keishingfbeaecc2016-08-16 05:24:31 -0500193'''
194 QEMU HTTPS variable:
195
Sandhya Somashekar839a0c22019-01-31 05:05:43 -0600196 By default lib/resource.robot AUTH URI construct is as
George Keishingfbeaecc2016-08-16 05:24:31 -0500197 ${AUTH_URI} https://${OPENBMC_HOST}${AUTH_SUFFIX}
198 ${AUTH_SUFFIX} is populated here by default EMPTY else
199 the port from the OS environment
200'''
George Keishingcf910442016-12-08 03:12:59 -0600201
202
George Keishingfbeaecc2016-08-16 05:24:31 -0500203def get_port_https():
204 # defaulted to empty string
205 l_suffix = ''
206 try:
207 l_https_port = os.getenv('HTTPS_PORT')
208 if l_https_port:
George Keishingcf910442016-12-08 03:12:59 -0600209 l_suffix = ':' + l_https_port
Joy Onyerikwu004ad3c2018-06-11 16:29:56 -0500210 except BaseException:
George Keishing3b7115a2018-08-02 10:48:17 -0500211 print ("Environment variable HTTPS_PORT not set,\
212 using default HTTPS port")
George Keishingfbeaecc2016-08-16 05:24:31 -0500213 return l_suffix
214
Gunnar Millsdca35792018-03-26 10:05:38 -0500215
George Keishingcf910442016-12-08 03:12:59 -0600216AUTH_SUFFIX = {
217 "https_port": [get_port_https()],
George Keishingfbeaecc2016-08-16 05:24:31 -0500218}
219
220# Update the ':Port number' to this variable
221AUTH_SUFFIX = AUTH_SUFFIX['https_port'][0]
Chris Austenb29d2e82016-06-07 12:25:35 -0500222
223# Here contains a list of valid Properties bases on fru_type after a boot.
George Keishingcf910442016-12-08 03:12:59 -0600224INVENTORY_ITEMS = {
Chris Austenb29d2e82016-06-07 12:25:35 -0500225 "CPU": [
226 "Custom Field 1",
227 "Custom Field 2",
228 "Custom Field 3",
229 "Custom Field 4",
230 "Custom Field 5",
231 "Custom Field 6",
232 "Custom Field 7",
233 "Custom Field 8",
234 "FRU File ID",
235 "Manufacturer",
236 "Name",
237 "Part Number",
238 "Serial Number",
239 "fault",
240 "fru_type",
241 "is_fru",
242 "present",
243 "version",
Gunnar Millsdca35792018-03-26 10:05:38 -0500244 ],
Chris Austenb29d2e82016-06-07 12:25:35 -0500245
246 "DIMM": [
247 "Asset Tag",
248 "Custom Field 1",
249 "Custom Field 2",
250 "Custom Field 3",
251 "Custom Field 4",
252 "Custom Field 5",
253 "Custom Field 6",
254 "Custom Field 7",
255 "Custom Field 8",
256 "FRU File ID",
257 "Manufacturer",
258 "Model Number",
259 "Name",
260 "Serial Number",
261 "Version",
262 "fault",
263 "fru_type",
264 "is_fru",
265 "present",
266 "version",
Gunnar Millsdca35792018-03-26 10:05:38 -0500267 ],
Chris Austenb29d2e82016-06-07 12:25:35 -0500268 "MEMORY_BUFFER": [
269 "Custom Field 1",
270 "Custom Field 2",
271 "Custom Field 3",
272 "Custom Field 4",
273 "Custom Field 5",
274 "Custom Field 6",
275 "Custom Field 7",
276 "Custom Field 8",
277 "FRU File ID",
278 "Manufacturer",
279 "Name",
280 "Part Number",
281 "Serial Number",
282 "fault",
283 "fru_type",
284 "is_fru",
285 "present",
286 "version",
Gunnar Millsdca35792018-03-26 10:05:38 -0500287 ],
Chris Austenb29d2e82016-06-07 12:25:35 -0500288 "FAN": [
289 "fault",
290 "fru_type",
291 "is_fru",
292 "present",
293 "version",
Gunnar Millsdca35792018-03-26 10:05:38 -0500294 ],
Chris Austenb29d2e82016-06-07 12:25:35 -0500295 "DAUGHTER_CARD": [
296 "Custom Field 1",
297 "Custom Field 2",
298 "Custom Field 3",
299 "Custom Field 4",
300 "Custom Field 5",
301 "Custom Field 6",
302 "Custom Field 7",
303 "Custom Field 8",
304 "FRU File ID",
305 "Manufacturer",
306 "Name",
307 "Part Number",
308 "Serial Number",
309 "fault",
310 "fru_type",
311 "is_fru",
312 "present",
313 "version",
Gunnar Millsdca35792018-03-26 10:05:38 -0500314 ],
Chris Austenb29d2e82016-06-07 12:25:35 -0500315 "BMC": [
316 "fault",
317 "fru_type",
318 "is_fru",
319 "manufacturer",
320 "present",
321 "version",
Gunnar Millsdca35792018-03-26 10:05:38 -0500322 ],
Chris Austenb29d2e82016-06-07 12:25:35 -0500323 "MAIN_PLANAR": [
324 "Custom Field 1",
325 "Custom Field 2",
326 "Custom Field 3",
327 "Custom Field 4",
328 "Custom Field 5",
329 "Custom Field 6",
330 "Custom Field 7",
331 "Custom Field 8",
332 "Part Number",
333 "Serial Number",
334 "Type",
335 "fault",
336 "fru_type",
337 "is_fru",
338 "present",
339 "version",
Gunnar Millsdca35792018-03-26 10:05:38 -0500340 ],
Chris Austenb29d2e82016-06-07 12:25:35 -0500341 "SYSTEM": [
342 "Custom Field 1",
343 "Custom Field 2",
344 "Custom Field 3",
345 "Custom Field 4",
346 "Custom Field 5",
347 "Custom Field 6",
348 "Custom Field 7",
349 "Custom Field 8",
350 "FRU File ID",
351 "Manufacturer",
352 "Model Number",
353 "Name",
354 "Serial Number",
355 "Version",
356 "fault",
357 "fru_type",
358 "is_fru",
359 "present",
360 "version",
Gunnar Millsdca35792018-03-26 10:05:38 -0500361 ],
Chris Austenb29d2e82016-06-07 12:25:35 -0500362 "CORE": [
363 "fault",
364 "fru_type",
365 "is_fru",
366 "present",
367 "version",
Gunnar Millsdca35792018-03-26 10:05:38 -0500368 ],
Chris Austenb29d2e82016-06-07 12:25:35 -0500369}