blob: 245c3dd955885094b0107dca89c080bcb2e218f0 [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
George Keishingeaa73b72018-07-30 09:30:16 -0500166
George Keishing713dd5e2018-11-29 01:16:19 -0600167# Boot options and URI variables.
168POWER_ON = 'On'
Sridevi Ramesh0047de82019-02-01 06:33:08 -0600169POWER_GRACEFUL_OFF = "GracefulShutdown"
170POWER_GRACEFUL_RESTART = "GracefulRestart"
George Keishing713dd5e2018-11-29 01:16:19 -0600171POWER_FORCE_OFF = 'ForceOff'
172
Sivas SRR939b4b12019-06-26 00:01:59 -0500173REDFISH_POWER = 'Systems/system/Actions/ComputerSystem.Reset'
174REDFISH_POWER_URI = REDFISH_BASE_URI + REDFISH_POWER
George Keishing713dd5e2018-11-29 01:16:19 -0600175
George Keishing6a514ef2018-08-27 05:19:19 -0500176# rsyslog variables.
177REMOTE_LOGGING_URI = OPENBMC_BASE_URI + 'logging/config/remote/'
178
Rahul Maheshwari984791c2018-09-21 00:49:37 -0500179# Certificate variables.
180SERVER_CERTIFICATE_URI = OPENBMC_BASE_URI + 'certs/server/https'
181CLIENT_CERTIFICATE_URI = OPENBMC_BASE_URI + 'certs/client/ldap'
Rahul Maheshwari081eadb2018-10-26 03:11:10 -0500182CA_CERTIFICATE_URI = OPENBMC_BASE_URI + 'certs/authority/ldap'
Rahul Maheshwari984791c2018-09-21 00:49:37 -0500183
George Keishing87e2a852019-05-29 12:30:14 -0500184# EventLog variables.
185SYSTEM_BASE_URI = REDFISH_BASE_URI + 'Systems/system/'
George Keishing32f6df62019-05-29 13:58:12 -0500186EVENT_LOG_URI = SYSTEM_BASE_URI + 'LogServices/EventLog/'
George Keishing87e2a852019-05-29 12:30:14 -0500187
188
George Keishingfbeaecc2016-08-16 05:24:31 -0500189'''
190 QEMU HTTPS variable:
191
Sandhya Somashekar839a0c22019-01-31 05:05:43 -0600192 By default lib/resource.robot AUTH URI construct is as
George Keishingfbeaecc2016-08-16 05:24:31 -0500193 ${AUTH_URI} https://${OPENBMC_HOST}${AUTH_SUFFIX}
194 ${AUTH_SUFFIX} is populated here by default EMPTY else
195 the port from the OS environment
196'''
George Keishingcf910442016-12-08 03:12:59 -0600197
198
George Keishingfbeaecc2016-08-16 05:24:31 -0500199def get_port_https():
200 # defaulted to empty string
201 l_suffix = ''
202 try:
203 l_https_port = os.getenv('HTTPS_PORT')
204 if l_https_port:
George Keishingcf910442016-12-08 03:12:59 -0600205 l_suffix = ':' + l_https_port
Joy Onyerikwu004ad3c2018-06-11 16:29:56 -0500206 except BaseException:
George Keishing3b7115a2018-08-02 10:48:17 -0500207 print ("Environment variable HTTPS_PORT not set,\
208 using default HTTPS port")
George Keishingfbeaecc2016-08-16 05:24:31 -0500209 return l_suffix
210
Gunnar Millsdca35792018-03-26 10:05:38 -0500211
George Keishingcf910442016-12-08 03:12:59 -0600212AUTH_SUFFIX = {
213 "https_port": [get_port_https()],
George Keishingfbeaecc2016-08-16 05:24:31 -0500214}
215
216# Update the ':Port number' to this variable
217AUTH_SUFFIX = AUTH_SUFFIX['https_port'][0]
Chris Austenb29d2e82016-06-07 12:25:35 -0500218
219# Here contains a list of valid Properties bases on fru_type after a boot.
George Keishingcf910442016-12-08 03:12:59 -0600220INVENTORY_ITEMS = {
Chris Austenb29d2e82016-06-07 12:25:35 -0500221 "CPU": [
222 "Custom Field 1",
223 "Custom Field 2",
224 "Custom Field 3",
225 "Custom Field 4",
226 "Custom Field 5",
227 "Custom Field 6",
228 "Custom Field 7",
229 "Custom Field 8",
230 "FRU File ID",
231 "Manufacturer",
232 "Name",
233 "Part Number",
234 "Serial Number",
235 "fault",
236 "fru_type",
237 "is_fru",
238 "present",
239 "version",
Gunnar Millsdca35792018-03-26 10:05:38 -0500240 ],
Chris Austenb29d2e82016-06-07 12:25:35 -0500241
242 "DIMM": [
243 "Asset Tag",
244 "Custom Field 1",
245 "Custom Field 2",
246 "Custom Field 3",
247 "Custom Field 4",
248 "Custom Field 5",
249 "Custom Field 6",
250 "Custom Field 7",
251 "Custom Field 8",
252 "FRU File ID",
253 "Manufacturer",
254 "Model Number",
255 "Name",
256 "Serial Number",
257 "Version",
258 "fault",
259 "fru_type",
260 "is_fru",
261 "present",
262 "version",
Gunnar Millsdca35792018-03-26 10:05:38 -0500263 ],
Chris Austenb29d2e82016-06-07 12:25:35 -0500264 "MEMORY_BUFFER": [
265 "Custom Field 1",
266 "Custom Field 2",
267 "Custom Field 3",
268 "Custom Field 4",
269 "Custom Field 5",
270 "Custom Field 6",
271 "Custom Field 7",
272 "Custom Field 8",
273 "FRU File ID",
274 "Manufacturer",
275 "Name",
276 "Part Number",
277 "Serial Number",
278 "fault",
279 "fru_type",
280 "is_fru",
281 "present",
282 "version",
Gunnar Millsdca35792018-03-26 10:05:38 -0500283 ],
Chris Austenb29d2e82016-06-07 12:25:35 -0500284 "FAN": [
285 "fault",
286 "fru_type",
287 "is_fru",
288 "present",
289 "version",
Gunnar Millsdca35792018-03-26 10:05:38 -0500290 ],
Chris Austenb29d2e82016-06-07 12:25:35 -0500291 "DAUGHTER_CARD": [
292 "Custom Field 1",
293 "Custom Field 2",
294 "Custom Field 3",
295 "Custom Field 4",
296 "Custom Field 5",
297 "Custom Field 6",
298 "Custom Field 7",
299 "Custom Field 8",
300 "FRU File ID",
301 "Manufacturer",
302 "Name",
303 "Part Number",
304 "Serial Number",
305 "fault",
306 "fru_type",
307 "is_fru",
308 "present",
309 "version",
Gunnar Millsdca35792018-03-26 10:05:38 -0500310 ],
Chris Austenb29d2e82016-06-07 12:25:35 -0500311 "BMC": [
312 "fault",
313 "fru_type",
314 "is_fru",
315 "manufacturer",
316 "present",
317 "version",
Gunnar Millsdca35792018-03-26 10:05:38 -0500318 ],
Chris Austenb29d2e82016-06-07 12:25:35 -0500319 "MAIN_PLANAR": [
320 "Custom Field 1",
321 "Custom Field 2",
322 "Custom Field 3",
323 "Custom Field 4",
324 "Custom Field 5",
325 "Custom Field 6",
326 "Custom Field 7",
327 "Custom Field 8",
328 "Part Number",
329 "Serial Number",
330 "Type",
331 "fault",
332 "fru_type",
333 "is_fru",
334 "present",
335 "version",
Gunnar Millsdca35792018-03-26 10:05:38 -0500336 ],
Chris Austenb29d2e82016-06-07 12:25:35 -0500337 "SYSTEM": [
338 "Custom Field 1",
339 "Custom Field 2",
340 "Custom Field 3",
341 "Custom Field 4",
342 "Custom Field 5",
343 "Custom Field 6",
344 "Custom Field 7",
345 "Custom Field 8",
346 "FRU File ID",
347 "Manufacturer",
348 "Model Number",
349 "Name",
350 "Serial Number",
351 "Version",
352 "fault",
353 "fru_type",
354 "is_fru",
355 "present",
356 "version",
Gunnar Millsdca35792018-03-26 10:05:38 -0500357 ],
Chris Austenb29d2e82016-06-07 12:25:35 -0500358 "CORE": [
359 "fault",
360 "fru_type",
361 "is_fru",
362 "present",
363 "version",
Gunnar Millsdca35792018-03-26 10:05:38 -0500364 ],
Chris Austenb29d2e82016-06-07 12:25:35 -0500365}