Lines Matching full:bmc
7 bmc: null, property in BmcStore.state
10 bmc: (state) => state.bmc,
14 const bmc = {};
15 bmc.dateTime = new Date(data.DateTime);
16 bmc.description = data.Description;
17 bmc.firmwareVersion = data.FirmwareVersion;
18 bmc.graphicalConsoleConnectTypes =
20 bmc.graphicalConsoleEnabled = data.GraphicalConsole.ServiceEnabled;
21 bmc.graphicalConsoleMaxSessions =
23 bmc.health = data.Status.Health;
24 bmc.healthRollup = data.Status.HealthRollup;
25 bmc.id = data.Id;
26 bmc.lastResetTime = new Date(data.LastResetTime);
27 bmc.identifyLed = data.LocationIndicatorActive;
28 bmc.locationNumber = data.Location?.PartLocation?.ServiceLabel;
29 bmc.manufacturer = data.manufacturer;
30 bmc.managerType = data.ManagerType;
31 bmc.model = data.Model;
32 bmc.name = data.Name;
33 bmc.partNumber = data.PartNumber;
34 bmc.powerState = data.PowerState;
35 bmc.serialNumber = data.SerialNumber;
36 bmc.serviceEntryPointUuid = data.ServiceEntryPointUUID;
37 bmc.sparePartNumber = data.SparePartNumber;
38 bmc.statusState = data.Status.State;
39 bmc.uuid = data.UUID;
40 bmc.uri = data['@odata.id'];
41 state.bmc = bmc;