├── .gitignore ├── Dockerfile ├── FLAGS ├── LICENSE ├── Mockup-Datasets ├── EX.log ├── Server-PowerEdge-C6320 │ ├── README │ └── redfish │ │ ├── index.json │ │ └── v1 │ │ ├── $metadata │ │ └── index.xml │ │ ├── Chassis │ │ ├── System.Embedded.1 │ │ │ ├── Power │ │ │ │ └── index.json │ │ │ ├── Thermal │ │ │ │ └── index.json │ │ │ └── index.json │ │ └── index.json │ │ ├── EventService │ │ ├── Subscriptions │ │ │ └── index.json │ │ └── index.json │ │ ├── JSONSchemas │ │ ├── AccountService.v1_0_0 │ │ │ └── index.json │ │ ├── AccountService.v1_0_2 │ │ │ └── index.json │ │ ├── AccountService │ │ │ └── index.json │ │ ├── Chassis.v1_0_0 │ │ │ └── index.json │ │ ├── Chassis.v1_0_1 │ │ │ └── index.json │ │ ├── Chassis.v1_0_2 │ │ │ └── index.json │ │ ├── Chassis │ │ │ └── index.json │ │ ├── ChassisCollection │ │ │ └── index.json │ │ ├── ComputerSystem.v1_0_0 │ │ │ └── index.json │ │ ├── ComputerSystem.v1_0_1 │ │ │ └── index.json │ │ ├── ComputerSystem.v1_0_2 │ │ │ └── index.json │ │ ├── ComputerSystem │ │ │ └── index.json │ │ ├── ComputerSystemCollection │ │ │ └── index.json │ │ ├── EthernetInterface.v1_0_0 │ │ │ └── index.json │ │ ├── EthernetInterface.v1_0_2 │ │ │ └── index.json │ │ ├── EthernetInterface │ │ │ └── index.json │ │ ├── EthernetInterfaceCollection │ │ │ └── index.json │ │ ├── Event.v1_0_0 │ │ │ └── index.json │ │ ├── Event.v1_0_2 │ │ │ └── index.json │ │ ├── Event │ │ │ └── index.json │ │ ├── EventDestination.v1_0_0 │ │ │ └── index.json │ │ ├── EventDestination.v1_0_2 │ │ │ └── index.json │ │ ├── EventDestination │ │ │ └── index.json │ │ ├── EventDestinationCollection │ │ │ └── index.json │ │ ├── EventService.v1_0_0 │ │ │ └── index.json │ │ ├── EventService.v1_0_2 │ │ │ └── index.json │ │ ├── EventService │ │ │ └── index.json │ │ ├── IPAddresses.v1_0_0 │ │ │ └── index.json │ │ ├── IPAddresses.v1_0_2 │ │ │ └── index.json │ │ ├── JsonSchemaFile.v1_0_0 │ │ │ └── index.json │ │ ├── JsonSchemaFile.v1_0_2 │ │ │ └── index.json │ │ ├── JsonSchemaFile │ │ │ └── index.json │ │ ├── JsonSchemaFileCollection │ │ │ └── index.json │ │ ├── LogEntry.v1_0_0 │ │ │ └── index.json │ │ ├── LogEntry.v1_0_2 │ │ │ └── index.json │ │ ├── LogEntry │ │ │ └── index.json │ │ ├── LogEntryCollection │ │ │ └── index.json │ │ ├── LogService.v1_0_0 │ │ │ └── index.json │ │ ├── LogService.v1_0_2 │ │ │ └── index.json │ │ ├── LogService │ │ │ └── index.json │ │ ├── LogServiceCollection │ │ │ └── index.json │ │ ├── Manager.v1_0_0 │ │ │ └── index.json │ │ ├── Manager.v1_0_1 │ │ │ └── index.json │ │ ├── Manager.v1_0_2 │ │ │ └── index.json │ │ ├── Manager │ │ │ └── index.json │ │ ├── ManagerAccount.v1_0_0 │ │ │ └── index.json │ │ ├── ManagerAccount.v1_0_2 │ │ │ └── index.json │ │ ├── ManagerAccount │ │ │ └── index.json │ │ ├── ManagerAccountCollection │ │ │ └── index.json │ │ ├── ManagerCollection │ │ │ └── index.json │ │ ├── ManagerNetworkProtocol.v1_0_0 │ │ │ └── index.json │ │ ├── ManagerNetworkProtocol.v1_0_2 │ │ │ └── index.json │ │ ├── ManagerNetworkProtocol │ │ │ └── index.json │ │ ├── Message.v1_0_0 │ │ │ └── index.json │ │ ├── Message.v1_0_2 │ │ │ └── index.json │ │ ├── Message │ │ │ └── index.json │ │ ├── MessageRegistry.v1_0_0 │ │ │ └── index.json │ │ ├── MessageRegistry.v1_0_2 │ │ │ └── index.json │ │ ├── MessageRegistry │ │ │ └── index.json │ │ ├── MessageRegistryCollection │ │ │ └── index.json │ │ ├── MessageRegistryFile.v1_0_0 │ │ │ └── index.json │ │ ├── MessageRegistryFile.v1_0_2 │ │ │ └── index.json │ │ ├── MessageRegistryFile │ │ │ └── index.json │ │ ├── MessageRegistryFileCollection │ │ │ └── index.json │ │ ├── OemManager.v1_0_0 │ │ │ └── index.json │ │ ├── OemManager │ │ │ └── index.json │ │ ├── PhysicalContext.v1_0_0 │ │ │ └── index.json │ │ ├── PhysicalContext.v1_0_2 │ │ │ └── index.json │ │ ├── Power.v1_0_0 │ │ │ └── index.json │ │ ├── Power.v1_0_1 │ │ │ └── index.json │ │ ├── Power.v1_0_2 │ │ │ └── index.json │ │ ├── Power │ │ │ └── index.json │ │ ├── Privileges.v1_0_0 │ │ │ └── index.json │ │ ├── Privileges.v1_0_2 │ │ │ └── index.json │ │ ├── Processor.v1_0_0 │ │ │ └── index.json │ │ ├── Processor.v1_0_2 │ │ │ └── index.json │ │ ├── Processor │ │ │ └── index.json │ │ ├── ProcessorCollection │ │ │ └── index.json │ │ ├── RedfishExtensions.v1_0_0 │ │ │ └── index.json │ │ ├── Redundancy.v1_0_0 │ │ │ └── index.json │ │ ├── Redundancy.v1_0_1 │ │ │ └── index.json │ │ ├── Redundancy.v1_0_2 │ │ │ └── index.json │ │ ├── Redundancy │ │ │ └── index.json │ │ ├── Resource.v1_0_0 │ │ │ └── index.json │ │ ├── Resource.v1_0_2 │ │ │ └── index.json │ │ ├── Resource │ │ │ └── index.json │ │ ├── Role.v1_0_0 │ │ │ └── index.json │ │ ├── Role.v1_0_2 │ │ │ └── index.json │ │ ├── Role │ │ │ └── index.json │ │ ├── RoleCollection │ │ │ └── index.json │ │ ├── SerialInterface.v1_0_0 │ │ │ └── index.json │ │ ├── SerialInterface.v1_0_2 │ │ │ └── index.json │ │ ├── SerialInterface │ │ │ └── index.json │ │ ├── SerialInterfaceCollection │ │ │ └── index.json │ │ ├── ServiceRoot.v1_0_0 │ │ │ └── index.json │ │ ├── ServiceRoot.v1_0_2 │ │ │ └── index.json │ │ ├── ServiceRoot │ │ │ └── index.json │ │ ├── Session.v1_0_0 │ │ │ └── index.json │ │ ├── Session.v1_0_2 │ │ │ └── index.json │ │ ├── Session │ │ │ └── index.json │ │ ├── SessionCollection │ │ │ └── index.json │ │ ├── SessionService.v1_0_0 │ │ │ └── index.json │ │ ├── SessionService.v1_0_2 │ │ │ └── index.json │ │ ├── SessionService │ │ │ └── index.json │ │ ├── Settings.v1_0_0 │ │ │ └── index.json │ │ ├── Settings.v1_0_2 │ │ │ └── index.json │ │ ├── Settings │ │ │ └── index.json │ │ ├── SimpleStorage.v1_0_0 │ │ │ └── index.json │ │ ├── SimpleStorage.v1_0_2 │ │ │ └── index.json │ │ ├── SimpleStorage │ │ │ └── index.json │ │ ├── SimpleStorageCollection │ │ │ └── index.json │ │ ├── Task.v1_0_0 │ │ │ └── index.json │ │ ├── Task.v1_0_2 │ │ │ └── index.json │ │ ├── Task │ │ │ └── index.json │ │ ├── TaskCollection │ │ │ └── index.json │ │ ├── TaskService.v1_0_0 │ │ │ └── index.json │ │ ├── TaskService.v1_0_2 │ │ │ └── index.json │ │ ├── TaskService │ │ │ └── index.json │ │ ├── Thermal.v1_0_0 │ │ │ └── index.json │ │ ├── Thermal.v1_0_1 │ │ │ └── index.json │ │ ├── Thermal.v1_0_2 │ │ │ └── index.json │ │ ├── Thermal │ │ │ └── index.json │ │ ├── VLanNetworkInterface.v1_0_0 │ │ │ └── index.json │ │ ├── VLanNetworkInterface.v1_0_1 │ │ │ └── index.json │ │ ├── VLanNetworkInterface.v1_0_2 │ │ │ └── index.json │ │ ├── VLanNetworkInterface │ │ │ └── index.json │ │ ├── VLanNetworkInterfaceCollection │ │ │ └── index.json │ │ ├── VirtualMedia.v1_0_0 │ │ │ └── index.json │ │ ├── VirtualMedia.v1_0_2 │ │ │ └── index.json │ │ ├── VirtualMedia │ │ │ └── index.json │ │ ├── VirtualMediaCollection │ │ │ └── index.json │ │ ├── index.json │ │ └── odata.4.0.0 │ │ │ └── index.json │ │ ├── Managers │ │ ├── iDRAC.Embedded.1 │ │ │ ├── AccountService │ │ │ │ └── index.json │ │ │ ├── Accounts │ │ │ │ ├── 1 │ │ │ │ │ └── index.json │ │ │ │ ├── 2 │ │ │ │ │ └── index.json │ │ │ │ ├── 3 │ │ │ │ │ └── index.json │ │ │ │ ├── 4 │ │ │ │ │ └── index.json │ │ │ │ ├── 5 │ │ │ │ │ └── index.json │ │ │ │ ├── 6 │ │ │ │ │ └── index.json │ │ │ │ ├── 7 │ │ │ │ │ └── index.json │ │ │ │ ├── 8 │ │ │ │ │ └── index.json │ │ │ │ ├── 9 │ │ │ │ │ └── index.json │ │ │ │ ├── 10 │ │ │ │ │ └── index.json │ │ │ │ ├── 11 │ │ │ │ │ └── index.json │ │ │ │ ├── 12 │ │ │ │ │ └── index.json │ │ │ │ ├── 13 │ │ │ │ │ └── index.json │ │ │ │ ├── 14 │ │ │ │ │ └── index.json │ │ │ │ ├── 15 │ │ │ │ │ └── index.json │ │ │ │ ├── 16 │ │ │ │ │ └── index.json │ │ │ │ └── index.json │ │ │ ├── EthernetInterfaces │ │ │ │ ├── iDRAC.Embedded.1%23NIC.1 │ │ │ │ │ └── index.json │ │ │ │ └── index.json │ │ │ ├── LogServices │ │ │ │ ├── Lclog │ │ │ │ │ └── index.json │ │ │ │ ├── Sel │ │ │ │ │ └── index.json │ │ │ │ └── index.json │ │ │ ├── Logs │ │ │ │ ├── Lclog │ │ │ │ │ ├── 28272 │ │ │ │ │ │ └── index.json │ │ │ │ │ ├── 28273 │ │ │ │ │ │ └── index.json │ │ │ │ │ ├── 28274 │ │ │ │ │ │ └── index.json │ │ │ │ │ ├── 28275 │ │ │ │ │ │ └── index.json │ │ │ │ │ ├── 28276 │ │ │ │ │ │ └── index.json │ │ │ │ │ ├── 28277 │ │ │ │ │ │ └── index.json │ │ │ │ │ ├── 28278 │ │ │ │ │ │ └── index.json │ │ │ │ │ ├── 28279 │ │ │ │ │ │ └── index.json │ │ │ │ │ ├── 28280 │ │ │ │ │ │ └── index.json │ │ │ │ │ ├── 28281 │ │ │ │ │ │ └── index.json │ │ │ │ │ ├── 28282 │ │ │ │ │ │ └── index.json │ │ │ │ │ ├── 28283 │ │ │ │ │ │ └── index.json │ │ │ │ │ ├── 28284 │ │ │ │ │ │ └── index.json │ │ │ │ │ ├── 28285 │ │ │ │ │ │ └── index.json │ │ │ │ │ ├── 28286 │ │ │ │ │ │ └── index.json │ │ │ │ │ ├── 28287 │ │ │ │ │ │ └── index.json │ │ │ │ │ ├── 28288 │ │ │ │ │ │ └── index.json │ │ │ │ │ ├── 28289 │ │ │ │ │ │ └── index.json │ │ │ │ │ ├── 28290 │ │ │ │ │ │ └── index.json │ │ │ │ │ ├── 28291 │ │ │ │ │ │ └── index.json │ │ │ │ │ ├── 28292 │ │ │ │ │ │ └── index.json │ │ │ │ │ ├── 28293 │ │ │ │ │ │ └── index.json │ │ │ │ │ ├── 28294 │ │ │ │ │ │ └── index.json │ │ │ │ │ ├── 28295 │ │ │ │ │ │ └── index.json │ │ │ │ │ ├── 28296 │ │ │ │ │ │ └── index.json │ │ │ │ │ ├── 28297 │ │ │ │ │ │ └── index.json │ │ │ │ │ ├── 28298 │ │ │ │ │ │ └── index.json │ │ │ │ │ ├── 28299 │ │ │ │ │ │ └── index.json │ │ │ │ │ ├── 28300 │ │ │ │ │ │ └── index.json │ │ │ │ │ ├── 28301 │ │ │ │ │ │ └── index.json │ │ │ │ │ ├── 28302 │ │ │ │ │ │ └── index.json │ │ │ │ │ ├── 28303 │ │ │ │ │ │ └── index.json │ │ │ │ │ ├── 28304 │ │ │ │ │ │ └── index.json │ │ │ │ │ ├── 28305 │ │ │ │ │ │ └── index.json │ │ │ │ │ ├── 28306 │ │ │ │ │ │ └── index.json │ │ │ │ │ ├── 28307 │ │ │ │ │ │ └── index.json │ │ │ │ │ ├── 28308 │ │ │ │ │ │ └── index.json │ │ │ │ │ ├── 28309 │ │ │ │ │ │ └── index.json │ │ │ │ │ ├── 28310 │ │ │ │ │ │ └── index.json │ │ │ │ │ ├── 28311 │ │ │ │ │ │ └── index.json │ │ │ │ │ ├── 28312 │ │ │ │ │ │ └── index.json │ │ │ │ │ ├── 28313 │ │ │ │ │ │ └── index.json │ │ │ │ │ ├── 28314 │ │ │ │ │ │ └── index.json │ │ │ │ │ ├── 28315 │ │ │ │ │ │ └── index.json │ │ │ │ │ ├── 28316 │ │ │ │ │ │ └── index.json │ │ │ │ │ ├── 28317 │ │ │ │ │ │ └── index.json │ │ │ │ │ ├── 28318 │ │ │ │ │ │ └── index.json │ │ │ │ │ ├── 28319 │ │ │ │ │ │ └── index.json │ │ │ │ │ ├── 28320 │ │ │ │ │ │ └── index.json │ │ │ │ │ ├── 28321 │ │ │ │ │ │ └── index.json │ │ │ │ │ └── index.json │ │ │ │ └── Sel │ │ │ │ │ ├── 1 │ │ │ │ │ └── index.json │ │ │ │ │ ├── 2 │ │ │ │ │ └── index.json │ │ │ │ │ ├── 3 │ │ │ │ │ └── index.json │ │ │ │ │ ├── 4 │ │ │ │ │ └── index.json │ │ │ │ │ ├── 5 │ │ │ │ │ └── index.json │ │ │ │ │ ├── 6 │ │ │ │ │ └── index.json │ │ │ │ │ └── index.json │ │ │ ├── NetworkProtocol │ │ │ │ └── index.json │ │ │ ├── Roles │ │ │ │ ├── Administrator │ │ │ │ │ └── index.json │ │ │ │ ├── None │ │ │ │ │ └── index.json │ │ │ │ ├── Operator │ │ │ │ │ └── index.json │ │ │ │ ├── ReadOnly │ │ │ │ │ └── index.json │ │ │ │ └── index.json │ │ │ ├── SerialInterfaces │ │ │ │ ├── iDRAC.Embedded.1%23Serial.1 │ │ │ │ │ └── index.json │ │ │ │ └── index.json │ │ │ └── index.json │ │ └── index.json │ │ ├── Registries │ │ ├── BaseMessages │ │ │ └── index.json │ │ ├── Messages │ │ │ └── index.json │ │ └── index.json │ │ ├── SessionService │ │ └── index.json │ │ ├── Sessions │ │ └── index.json │ │ ├── Systems │ │ ├── System.Embedded.1 │ │ │ ├── EthernetInterfaces │ │ │ │ ├── NIC.Embedded.1-1-1 │ │ │ │ │ └── index.json │ │ │ │ ├── NIC.Embedded.2-1-1 │ │ │ │ │ └── index.json │ │ │ │ └── index.json │ │ │ ├── Processors │ │ │ │ ├── CPU.Socket.1 │ │ │ │ │ └── index.json │ │ │ │ ├── CPU.Socket.2 │ │ │ │ │ └── index.json │ │ │ │ └── index.json │ │ │ ├── Storage │ │ │ │ └── Controllers │ │ │ │ │ ├── AHCI.Embedded.2-1 │ │ │ │ │ └── index.json │ │ │ │ │ └── index.json │ │ │ └── index.json │ │ └── index.json │ │ ├── TaskService │ │ ├── Tasks │ │ │ └── index.json │ │ └── index.json │ │ ├── TelemetryService │ │ ├── MetricReportDefinitions │ │ │ ├── PlatformPowerUsage │ │ │ │ └── index.json │ │ │ └── index.json │ │ └── index.json │ │ ├── index.json │ │ └── odata │ │ └── index.json ├── Server-PowerEdge-FC630-TimeInfo │ ├── README │ └── redfish │ │ ├── index.json │ │ ├── time.json │ │ └── v1 │ │ ├── $metadata │ │ └── index.xml │ │ ├── Chassis │ │ ├── Chassis.Embedded.1 │ │ │ ├── Power │ │ │ │ ├── PowerSupplies │ │ │ │ │ ├── PSU.Slot.1 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ └── PSU.Slot.2 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ ├── index.json │ │ │ │ └── time.json │ │ │ ├── Sensors │ │ │ │ └── Fans │ │ │ │ │ ├── 0x17||Fan.Embedded.1A │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ │ ├── 0x17||Fan.Embedded.1B │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ │ ├── 0x17||Fan.Embedded.2 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ │ ├── 0x17||Fan.Embedded.3 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ │ ├── 0x17||Fan.Embedded.4 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ │ ├── 0x17||Fan.Embedded.5A │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ │ ├── 0x17||Fan.Embedded.5B │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ │ ├── 0x17||Fan.Embedded.6 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ │ ├── 0x17||Fan.Embedded.7 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ │ └── 0x17||Fan.Embedded.8 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ ├── Thermal │ │ │ │ ├── index.json │ │ │ │ └── time.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── System.Embedded.1 │ │ │ ├── Power │ │ │ │ ├── PowerSupplies │ │ │ │ │ ├── PSU.Slot.1 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ └── PSU.Slot.2 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ ├── index.json │ │ │ │ └── time.json │ │ │ ├── Sensors │ │ │ │ └── Fans │ │ │ │ │ ├── 0x17||Fan.Embedded.1A │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ │ ├── 0x17||Fan.Embedded.1B │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ │ ├── 0x17||Fan.Embedded.2 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ │ ├── 0x17||Fan.Embedded.3 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ │ ├── 0x17||Fan.Embedded.4 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ │ ├── 0x17||Fan.Embedded.5A │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ │ ├── 0x17||Fan.Embedded.5B │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ │ ├── 0x17||Fan.Embedded.6 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ │ ├── 0x17||Fan.Embedded.7 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ │ └── 0x17||Fan.Embedded.8 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ ├── Thermal │ │ │ │ ├── index.json │ │ │ │ └── time.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── index.json │ │ └── time.json │ │ ├── EventService │ │ ├── Subscriptions │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── index.json │ │ └── time.json │ │ ├── JSONSchemas │ │ ├── AccountService.v1_0_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── AccountService.v1_0_2 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── AccountService │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Chassis.v1_0_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Chassis.v1_0_1 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Chassis.v1_0_2 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Chassis │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── ChassisCollection │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── ComputerSystem.v1_0_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── ComputerSystem.v1_0_1 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── ComputerSystem.v1_0_2 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── ComputerSystem │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── ComputerSystemCollection │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── EthernetInterface.v1_0_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── EthernetInterface.v1_0_2 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── EthernetInterface │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── EthernetInterfaceCollection │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Event.v1_0_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Event.v1_0_2 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Event │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── EventDestination.v1_0_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── EventDestination.v1_0_2 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── EventDestination │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── EventDestinationCollection │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── EventService.v1_0_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── EventService.v1_0_2 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── EventService │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── IPAddresses.v1_0_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── IPAddresses.v1_0_2 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── JsonSchemaFile.v1_0_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── JsonSchemaFile.v1_0_2 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── JsonSchemaFile │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── JsonSchemaFileCollection │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── LogEntry.v1_0_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── LogEntry.v1_0_2 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── LogEntry │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── LogEntryCollection │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── LogService.v1_0_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── LogService.v1_0_2 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── LogService │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── LogServiceCollection │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Manager.v1_0_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Manager.v1_0_1 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Manager.v1_0_2 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Manager │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── ManagerAccount.v1_0_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── ManagerAccount.v1_0_2 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── ManagerAccount │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── ManagerAccountCollection │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── ManagerCollection │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── ManagerNetworkProtocol.v1_0_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── ManagerNetworkProtocol.v1_0_2 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── ManagerNetworkProtocol │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Message.v1_0_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Message.v1_0_2 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Message │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── MessageRegistry.v1_0_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── MessageRegistry.v1_0_2 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── MessageRegistry │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── MessageRegistryCollection │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── MessageRegistryFile.v1_0_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── MessageRegistryFile.v1_0_2 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── MessageRegistryFile │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── MessageRegistryFileCollection │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── OemManager.v1_0_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── OemManager │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── PhysicalContext.v1_0_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── PhysicalContext.v1_0_2 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Power.v1_0_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Power.v1_0_1 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Power.v1_0_2 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Power │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Privileges.v1_0_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Privileges.v1_0_2 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Processor.v1_0_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Processor.v1_0_2 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Processor │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── ProcessorCollection │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── RedfishExtensions.v1_0_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Redundancy.v1_0_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Redundancy.v1_0_1 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Redundancy.v1_0_2 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Redundancy │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Resource.v1_0_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Resource.v1_0_2 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Resource │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Role.v1_0_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Role.v1_0_2 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Role │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── RoleCollection │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── SerialInterface.v1_0_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── SerialInterface.v1_0_2 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── SerialInterface │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── SerialInterfaceCollection │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── ServiceRoot.v1_0_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── ServiceRoot.v1_0_2 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── ServiceRoot │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Session.v1_0_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Session.v1_0_2 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Session │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── SessionCollection │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── SessionService.v1_0_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── SessionService.v1_0_2 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── SessionService │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Settings.v1_0_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Settings.v1_0_2 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Settings │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── SimpleStorage.v1_0_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── SimpleStorage.v1_0_2 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── SimpleStorage │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── SimpleStorageCollection │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Task.v1_0_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Task.v1_0_2 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Task │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── TaskCollection │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── TaskService.v1_0_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── TaskService.v1_0_2 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── TaskService │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Thermal.v1_0_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Thermal.v1_0_1 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Thermal.v1_0_2 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Thermal │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── VLanNetworkInterface.v1_0_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── VLanNetworkInterface.v1_0_1 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── VLanNetworkInterface.v1_0_2 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── VLanNetworkInterface │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── VLanNetworkInterfaceCollection │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── VirtualMedia.v1_0_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── VirtualMedia.v1_0_2 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── VirtualMedia │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── VirtualMediaCollection │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── index.json │ │ ├── odata.4.0.0 │ │ │ ├── index.json │ │ │ └── time.json │ │ └── time.json │ │ ├── Managers │ │ ├── iDRAC.Embedded.1 │ │ │ ├── AccountService │ │ │ │ ├── index.json │ │ │ │ └── time.json │ │ │ ├── Accounts │ │ │ │ ├── 1 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ ├── 2 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ ├── 3 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ ├── 4 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ ├── 5 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ ├── 6 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ ├── 7 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ ├── 8 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ ├── 9 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ ├── 10 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ ├── 11 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ ├── 12 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ ├── 13 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ ├── 14 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ ├── 15 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ ├── 16 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ ├── index.json │ │ │ │ └── time.json │ │ │ ├── EthernetInterfaces │ │ │ │ ├── iDRAC.Embedded.1%23NIC.1 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ ├── index.json │ │ │ │ └── time.json │ │ │ ├── LogServices │ │ │ │ ├── Lclog │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ ├── Sel │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ ├── index.json │ │ │ │ └── time.json │ │ │ ├── Logs │ │ │ │ ├── Lclog │ │ │ │ │ ├── 1537 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 1538 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 1539 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 1540 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 1541 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 1542 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 1543 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 1544 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 1545 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 1546 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 1547 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 1548 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 1549 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 1550 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 1551 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 1552 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 1553 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 1554 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 1555 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 1556 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 1557 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 1558 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 1559 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 1560 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 1561 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 1562 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 1563 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 1564 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 1565 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 1566 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 1567 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 1568 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 1569 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 1570 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 1571 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 1572 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 1573 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 1574 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 1575 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 1576 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 1577 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 1578 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 1579 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 1580 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 1581 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 1582 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 1583 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 1584 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 1585 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 1586 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ └── Sel │ │ │ │ │ ├── 1 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ │ ├── 2 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ │ ├── 3 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ ├── NetworkProtocol │ │ │ │ ├── index.json │ │ │ │ └── time.json │ │ │ ├── Roles │ │ │ │ ├── Administrator │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ ├── None │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ ├── Operator │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ ├── ReadOnly │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ ├── index.json │ │ │ │ └── time.json │ │ │ ├── SerialInterfaces │ │ │ │ ├── iDRAC.Embedded.1%23Serial.1 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ ├── index.json │ │ │ │ └── time.json │ │ │ ├── VirtualMedia │ │ │ │ ├── CD │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ ├── RemovableDisk │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ ├── index.json │ │ │ │ └── time.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── index.json │ │ └── time.json │ │ ├── Registries │ │ ├── BaseMessages │ │ │ ├── BaseRegistry.v1_0_0.json │ │ │ │ ├── index.json │ │ │ │ └── time.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Messages │ │ │ ├── EEMIRegistry.v1_5_0.json │ │ │ │ ├── index.json │ │ │ │ └── time.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── index.json │ │ └── time.json │ │ ├── Schemas │ │ ├── AccountService.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── AccountService.v1_0_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── AccountService.v1_0_2.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Chassis.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Chassis.v1_0_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Chassis.v1_0_1.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Chassis.v1_0_2.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── ChassisCollection.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── ComputerSystem.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── ComputerSystem.v1_0_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── ComputerSystem.v1_0_1.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── ComputerSystem.v1_0_2.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── ComputerSystemCollection.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── EthernetInterface.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── EthernetInterface.v1_0_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── EthernetInterface.v1_0_2.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── EthernetInterfaceCollection.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Event.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Event.v1_0_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Event.v1_0_2.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── EventDestination.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── EventDestination.v1_0_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── EventDestination.v1_0_2.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── EventDestinationCollection.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── EventService.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── EventService.v1_0_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── EventService.v1_0_2.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── IPAddresses.v1_0_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── IPAddresses.v1_0_2.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── JsonSchemaFile.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── JsonSchemaFile.v1_0_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── JsonSchemaFile.v1_0_2.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── JsonSchemaFileCollection.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── LogEntry.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── LogEntry.v1_0_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── LogEntry.v1_0_2.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── LogEntryCollection.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── LogService.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── LogService.v1_0_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── LogService.v1_0_2.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── LogServiceCollection.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Manager.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Manager.v1_0_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Manager.v1_0_1.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Manager.v1_0_2.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── ManagerAccount.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── ManagerAccount.v1_0_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── ManagerAccount.v1_0_2.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── ManagerAccountCollection.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── ManagerCollection.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── ManagerNetworkProtocol.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── ManagerNetworkProtocol.v1_0_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── ManagerNetworkProtocol.v1_0_2.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Message.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Message.v1_0_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Message.v1_0_2.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── MessageRegistry.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── MessageRegistry.v1_0_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── MessageRegistry.v1_0_2.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── MessageRegistryCollection.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── MessageRegistryFile.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── MessageRegistryFile.v1_0_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── MessageRegistryFile.v1_0_2.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── MessageRegistryFileCollection.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── OemManager.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── OemManager.v1_0_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── PhysicalContext.v1_0_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── PhysicalContext.v1_0_2.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Power.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Power.v1_0_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Power.v1_0_1.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Power.v1_0_2.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Privileges.v1_0_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Privileges.v1_0_2.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Processor.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Processor.v1_0_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Processor.v1_0_2.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── ProcessorCollection.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── RedfishExtensions.v1_0_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Redundancy.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Redundancy.v1_0_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Redundancy.v1_0_1.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Redundancy.v1_0_2.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Resource.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Resource.v1_0_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Resource.v1_0_2.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Role.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Role.v1_0_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Role.v1_0_2.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── RoleCollection.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── SerialInterface.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── SerialInterface.v1_0_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── SerialInterface.v1_0_2.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── SerialInterfaceCollection.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── ServiceRoot.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── ServiceRoot.v1_0_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── ServiceRoot.v1_0_2.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Session.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Session.v1_0_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Session.v1_0_2.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── SessionCollection.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── SessionService.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── SessionService.v1_0_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── SessionService.v1_0_2.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Settings.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Settings.v1_0_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Settings.v1_0_2.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── SimpleStorage.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── SimpleStorage.v1_0_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── SimpleStorage.v1_0_2.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── SimpleStorageCollection.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Task.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Task.v1_0_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Task.v1_0_2.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── TaskCollection.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── TaskService.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── TaskService.v1_0_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── TaskService.v1_0_2.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Thermal.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Thermal.v1_0_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Thermal.v1_0_1.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Thermal.v1_0_2.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── VLanNetworkInterface.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── VLanNetworkInterface.v1_0_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── VLanNetworkInterface.v1_0_1.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── VLanNetworkInterface.v1_0_2.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── VLanNetworkInterfaceCollection.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── VirtualMedia.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── VirtualMedia.v1_0_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── VirtualMedia.v1_0_2.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── VirtualMediaCollection.json │ │ │ ├── index.json │ │ │ └── time.json │ │ └── odata.4.0.0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── SessionService │ │ ├── index.json │ │ └── time.json │ │ ├── Sessions │ │ ├── index.json │ │ └── time.json │ │ ├── Systems │ │ ├── System.Embedded.1 │ │ │ ├── EthernetInterfaces │ │ │ │ ├── NIC.Integrated.1-1-1 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ ├── NIC.Integrated.1-1-2 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ ├── NIC.Integrated.1-1-3 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ ├── NIC.Integrated.1-1-4 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ ├── NIC.Integrated.1-2-1 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ ├── NIC.Integrated.1-2-2 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ ├── NIC.Integrated.1-2-3 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ ├── NIC.Integrated.1-2-4 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ ├── index.json │ │ │ │ └── time.json │ │ │ ├── Processors │ │ │ │ ├── CPU.Socket.1 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ ├── CPU.Socket.2 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ ├── index.json │ │ │ │ └── time.json │ │ │ ├── Storage │ │ │ │ └── Controllers │ │ │ │ │ ├── AHCI.Embedded.1-1 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ │ ├── AHCI.Embedded.2-1 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ │ ├── RAID.Integrated.1-1 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── index.json │ │ └── time.json │ │ ├── TaskService │ │ ├── Tasks │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── index.json │ │ └── time.json │ │ ├── index.json │ │ ├── odata │ │ ├── index.json │ │ └── time.json │ │ └── time.json ├── Server-PowerEdge-R720-TimeInfo │ ├── README │ └── redfish │ │ ├── index.json │ │ ├── time.json │ │ └── v1 │ │ ├── $metadata │ │ └── index.xml │ │ ├── Chassis │ │ ├── System.Embedded.1 │ │ │ ├── Power │ │ │ │ ├── PowerSupplies │ │ │ │ │ └── PSU.Slot.2 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ ├── index.json │ │ │ │ └── time.json │ │ │ ├── Sensors │ │ │ │ └── Fans │ │ │ │ │ ├── 0x17||Fan.Embedded.1 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ │ ├── 0x17||Fan.Embedded.2 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ │ ├── 0x17||Fan.Embedded.3 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ │ ├── 0x17||Fan.Embedded.4 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ │ ├── 0x17||Fan.Embedded.5 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ │ └── 0x17||Fan.Embedded.6 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ ├── Thermal │ │ │ │ ├── index.json │ │ │ │ └── time.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── index.json │ │ └── time.json │ │ ├── EventService │ │ ├── Subscriptions │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── index.json │ │ └── time.json │ │ ├── JSONSchemas │ │ ├── AccountService.v1_0_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── AccountService.v1_0_2 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── AccountService │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── AttributeRegistry.v1_0_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── AttributeRegistry │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Bios.v1_0_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Bios │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Chassis.v1_0_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Chassis.v1_0_1 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Chassis.v1_0_2 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Chassis │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── ChassisCollection │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── ComputerSystem.v1_0_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── ComputerSystem.v1_0_1 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── ComputerSystem.v1_0_2 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── ComputerSystem.v1_1_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── ComputerSystem │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── ComputerSystemCollection │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── DellBootSources.v1_0_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── DellBootSources │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── DellBootSourcesRegistry.v1_0_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── DellBootSourcesRegistry │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── DellComputerSystem.v1_0_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── DellComputerSystem │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── DellJob.v1_0_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── DellJob │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── DellJobCollection │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── DellManager.v1_0_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── DellManager │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── EthernetInterface.v1_0_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── EthernetInterface.v1_0_2 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── EthernetInterface │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── EthernetInterfaceCollection │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Event.v1_0_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Event.v1_0_2 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Event │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── EventDestination.v1_0_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── EventDestination.v1_0_2 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── EventDestination │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── EventDestinationCollection │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── EventService.v1_0_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── EventService.v1_0_2 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── EventService │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── IPAddresses.v1_0_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── IPAddresses.v1_0_2 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── JsonSchemaFile.v1_0_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── JsonSchemaFile.v1_0_2 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── JsonSchemaFile │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── JsonSchemaFileCollection │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── LogEntry.v1_0_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── LogEntry.v1_0_2 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── LogEntry │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── LogEntryCollection │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── LogService.v1_0_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── LogService.v1_0_2 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── LogService │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── LogServiceCollection │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Manager.v1_0_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Manager.v1_0_1 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Manager.v1_0_2 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Manager │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── ManagerAccount.v1_0_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── ManagerAccount.v1_0_2 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── ManagerAccount │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── ManagerAccountCollection │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── ManagerCollection │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── ManagerNetworkProtocol.v1_0_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── ManagerNetworkProtocol.v1_0_2 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── ManagerNetworkProtocol │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Message.v1_0_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Message.v1_0_2 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Message │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── MessageRegistry.v1_0_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── MessageRegistry.v1_0_2 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── MessageRegistry │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── MessageRegistryCollection │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── MessageRegistryFile.v1_0_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── MessageRegistryFile.v1_0_2 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── MessageRegistryFile │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── MessageRegistryFileCollection │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── OemManager.v1_0_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── OemManager.v1_1_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── OemManager │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── PhysicalContext.v1_0_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── PhysicalContext.v1_0_2 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Power.v1_0_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Power.v1_0_1 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Power.v1_0_2 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Power │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Privileges.v1_0_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Privileges.v1_0_2 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Processor.v1_0_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Processor.v1_0_2 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Processor │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── ProcessorCollection │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── RedfishExtensions.v1_0_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Redundancy.v1_0_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Redundancy.v1_0_1 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Redundancy.v1_0_2 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Redundancy │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Resource.v1_0_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Resource.v1_0_2 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Resource │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Role.v1_0_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Role.v1_0_2 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Role │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── RoleCollection │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── SecureBoot.v1_0_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── SecureBoot │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── SerialInterface.v1_0_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── SerialInterface.v1_0_2 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── SerialInterface │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── SerialInterfaceCollection │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── ServiceRoot.v1_0_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── ServiceRoot.v1_0_2 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── ServiceRoot │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Session.v1_0_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Session.v1_0_2 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Session │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── SessionCollection │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── SessionService.v1_0_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── SessionService.v1_0_2 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── SessionService │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Settings.v1_0_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Settings.v1_0_2 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Settings │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── SimpleStorage.v1_0_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── SimpleStorage.v1_0_2 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── SimpleStorage │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── SimpleStorageCollection │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Task.v1_0_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Task.v1_0_2 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Task │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── TaskCollection │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── TaskService.v1_0_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── TaskService.v1_0_2 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── TaskService │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Thermal.v1_0_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Thermal.v1_0_1 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Thermal.v1_0_2 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Thermal │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── VLanNetworkInterface.v1_0_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── VLanNetworkInterface.v1_0_1 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── VLanNetworkInterface.v1_0_2 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── VLanNetworkInterface │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── VLanNetworkInterfaceCollection │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── VirtualMedia.v1_0_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── VirtualMedia.v1_0_2 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── VirtualMedia │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── VirtualMediaCollection │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── index.json │ │ ├── odata.4.0.0 │ │ │ ├── index.json │ │ │ └── time.json │ │ └── time.json │ │ ├── Managers │ │ ├── iDRAC.Embedded.1 │ │ │ ├── AccountService │ │ │ │ ├── index.json │ │ │ │ └── time.json │ │ │ ├── Accounts │ │ │ │ ├── 1 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ ├── 2 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ ├── 3 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ ├── 4 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ ├── 5 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ ├── 6 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ ├── 7 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ ├── 8 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ ├── 9 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ ├── 10 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ ├── 11 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ ├── 12 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ ├── 13 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ ├── 14 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ ├── 15 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ ├── 16 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ ├── index.json │ │ │ │ └── time.json │ │ │ ├── EthernetInterfaces │ │ │ │ ├── iDRAC.Embedded.1%23NIC.1 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ ├── index.json │ │ │ │ └── time.json │ │ │ ├── Jobs │ │ │ │ ├── JID_101163901687 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ ├── JID_101179052303 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ ├── JID_101205159811 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ ├── JID_721157106323 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ ├── JID_724625122666 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ ├── JID_752389413170 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ ├── RID_101169428147 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ ├── RID_101205414871 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ ├── index.json │ │ │ │ └── time.json │ │ │ ├── LogServices │ │ │ │ ├── Lclog │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ ├── Sel │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ ├── index.json │ │ │ │ └── time.json │ │ │ ├── Logs │ │ │ │ ├── Lclog │ │ │ │ │ ├── 59354 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 59355 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 59356 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 59357 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 59358 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 59359 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 59360 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 59361 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 59362 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 59363 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 59364 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 59365 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 59366 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 59367 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 59368 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 59369 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 59370 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 59371 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 59372 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 59373 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 59374 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 59375 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 59376 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 59377 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 59378 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 59379 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 59380 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 59381 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 59382 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 59383 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 59384 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 59385 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 59386 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 59387 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 59388 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 59389 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 59390 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 59391 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 59392 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 59393 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 59394 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 59395 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 59396 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 59397 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 59398 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 59399 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 59400 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 59401 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 59402 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 59403 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ └── Sel │ │ │ │ │ ├── 153 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ │ ├── 154 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ │ ├── 155 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ │ ├── 156 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ │ ├── 157 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ │ ├── 158 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ │ ├── 159 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ │ ├── 160 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ │ ├── 161 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ │ ├── 162 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ │ ├── 163 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ │ ├── 164 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ │ ├── 165 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ │ ├── 166 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ │ ├── 167 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ │ ├── 168 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ │ ├── 169 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ │ ├── 170 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ │ ├── 171 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ │ ├── 172 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ │ ├── 173 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ │ ├── 174 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ │ ├── 175 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ │ ├── 176 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ │ ├── 177 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ │ ├── 178 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ │ ├── 179 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ │ ├── 180 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ │ ├── 181 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ │ ├── 182 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ │ ├── 183 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ │ ├── 184 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ │ ├── 185 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ │ ├── 186 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ │ ├── 187 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ │ ├── 188 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ │ ├── 189 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ │ ├── 190 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ │ ├── 191 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ │ ├── 192 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ │ ├── 193 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ │ ├── 194 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ │ ├── 195 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ │ ├── 196 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ │ ├── 197 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ │ ├── 198 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ │ ├── 199 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ │ ├── 200 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ │ ├── 201 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ │ ├── 202 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ ├── NetworkProtocol │ │ │ │ ├── index.json │ │ │ │ └── time.json │ │ │ ├── Roles │ │ │ │ ├── Administrator │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ ├── None │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ ├── Operator │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ ├── ReadOnly │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ ├── index.json │ │ │ │ └── time.json │ │ │ ├── SerialInterfaces │ │ │ │ ├── iDRAC.Embedded.1%23Serial.1 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ ├── index.json │ │ │ │ └── time.json │ │ │ ├── VirtualMedia │ │ │ │ ├── CD │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ ├── RemovableDisk │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ ├── index.json │ │ │ │ └── time.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── index.json │ │ └── time.json │ │ ├── Registries │ │ ├── BaseMessages │ │ │ ├── BaseRegistry.v1_0_0.json │ │ │ │ ├── index.json │ │ │ │ └── time.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── BiosAttributeRegistry.v1_0_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── BootSourcesRegistry.v1_0_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Messages │ │ │ ├── EEMIRegistry.v1_5_1.json │ │ │ │ ├── index.json │ │ │ │ └── time.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── index.json │ │ └── time.json │ │ ├── Schemas │ │ ├── AccountService.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── AccountService.v1_0_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── AccountService.v1_0_2.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── AttributeRegistry.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── AttributeRegistry.v1_0_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Bios.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Bios.v1_0_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Chassis.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Chassis.v1_0_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Chassis.v1_0_1.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Chassis.v1_0_2.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── ChassisCollection.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── ComputerSystem.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── ComputerSystem.v1_0_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── ComputerSystem.v1_0_1.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── ComputerSystem.v1_0_2.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── ComputerSystem.v1_1_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── ComputerSystemCollection.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── DellBootSources.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── DellBootSources.v1_0_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── DellBootSourcesRegistry.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── DellBootSourcesRegistry.v1_0_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── DellComputerSystem.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── DellComputerSystem.v1_0_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── DellJob.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── DellJob.v1_0_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── DellJobCollection.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── DellManager.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── DellManager.v1_0_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── EthernetInterface.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── EthernetInterface.v1_0_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── EthernetInterface.v1_0_2.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── EthernetInterfaceCollection.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Event.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Event.v1_0_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Event.v1_0_2.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── EventDestination.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── EventDestination.v1_0_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── EventDestination.v1_0_2.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── EventDestinationCollection.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── EventService.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── EventService.v1_0_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── EventService.v1_0_2.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── IPAddresses.v1_0_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── IPAddresses.v1_0_2.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── JsonSchemaFile.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── JsonSchemaFile.v1_0_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── JsonSchemaFile.v1_0_2.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── JsonSchemaFileCollection.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── LogEntry.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── LogEntry.v1_0_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── LogEntry.v1_0_2.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── LogEntryCollection.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── LogService.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── LogService.v1_0_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── LogService.v1_0_2.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── LogServiceCollection.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Manager.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Manager.v1_0_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Manager.v1_0_1.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Manager.v1_0_2.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── ManagerAccount.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── ManagerAccount.v1_0_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── ManagerAccount.v1_0_2.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── ManagerAccountCollection.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── ManagerCollection.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── ManagerNetworkProtocol.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── ManagerNetworkProtocol.v1_0_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── ManagerNetworkProtocol.v1_0_2.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Message.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Message.v1_0_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Message.v1_0_2.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── MessageRegistry.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── MessageRegistry.v1_0_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── MessageRegistry.v1_0_2.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── MessageRegistryCollection.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── MessageRegistryFile.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── MessageRegistryFile.v1_0_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── MessageRegistryFile.v1_0_2.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── MessageRegistryFileCollection.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── OemManager.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── OemManager.v1_0_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── OemManager.v1_1_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── PhysicalContext.v1_0_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── PhysicalContext.v1_0_2.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Power.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Power.v1_0_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Power.v1_0_1.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Power.v1_0_2.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Privileges.v1_0_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Privileges.v1_0_2.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Processor.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Processor.v1_0_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Processor.v1_0_2.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── ProcessorCollection.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── RedfishExtensions.v1_0_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Redundancy.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Redundancy.v1_0_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Redundancy.v1_0_1.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Redundancy.v1_0_2.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Resource.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Resource.v1_0_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Resource.v1_0_2.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Role.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Role.v1_0_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Role.v1_0_2.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── RoleCollection.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── SecureBoot.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── SecureBoot.v1_0_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── SerialInterface.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── SerialInterface.v1_0_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── SerialInterface.v1_0_2.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── SerialInterfaceCollection.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── ServiceRoot.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── ServiceRoot.v1_0_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── ServiceRoot.v1_0_2.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Session.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Session.v1_0_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Session.v1_0_2.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── SessionCollection.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── SessionService.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── SessionService.v1_0_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── SessionService.v1_0_2.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Settings.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Settings.v1_0_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Settings.v1_0_2.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── SimpleStorage.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── SimpleStorage.v1_0_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── SimpleStorage.v1_0_2.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── SimpleStorageCollection.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Task.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Task.v1_0_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Task.v1_0_2.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── TaskCollection.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── TaskService.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── TaskService.v1_0_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── TaskService.v1_0_2.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Thermal.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Thermal.v1_0_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Thermal.v1_0_1.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Thermal.v1_0_2.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── VLanNetworkInterface.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── VLanNetworkInterface.v1_0_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── VLanNetworkInterface.v1_0_1.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── VLanNetworkInterface.v1_0_2.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── VLanNetworkInterfaceCollection.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── VirtualMedia.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── VirtualMedia.v1_0_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── VirtualMedia.v1_0_2.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── VirtualMediaCollection.json │ │ │ ├── index.json │ │ │ └── time.json │ │ └── odata.4.0.0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── SessionService │ │ ├── index.json │ │ └── time.json │ │ ├── Sessions │ │ ├── index.json │ │ └── time.json │ │ ├── Systems │ │ ├── System.Embedded.1 │ │ │ ├── Bios │ │ │ │ ├── BiosRegistry │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ ├── Settings │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ ├── index.json │ │ │ │ └── time.json │ │ │ ├── BootSources │ │ │ │ ├── BootSourcesRegistry │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ ├── Settings │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ ├── index.json │ │ │ │ └── time.json │ │ │ ├── EthernetInterfaces │ │ │ │ ├── NIC.Integrated.1-1-1 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ ├── NIC.Integrated.1-1-2 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ ├── NIC.Integrated.1-1-3 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ ├── NIC.Integrated.1-1-4 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ ├── NIC.Integrated.1-2-1 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ ├── NIC.Integrated.1-2-2 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ ├── NIC.Integrated.1-2-3 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ ├── NIC.Integrated.1-2-4 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ ├── NIC.Integrated.1-3-1 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ ├── NIC.Integrated.1-4-1 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ ├── index.json │ │ │ │ └── time.json │ │ │ ├── Processors │ │ │ │ ├── CPU.Socket.1 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ ├── index.json │ │ │ │ └── time.json │ │ │ ├── Storage │ │ │ │ └── Controllers │ │ │ │ │ ├── RAID.Integrated.1-1 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── index.json │ │ └── time.json │ │ ├── TaskService │ │ ├── Tasks │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── index.json │ │ └── time.json │ │ ├── index.json │ │ ├── odata │ │ ├── index.json │ │ └── time.json │ │ └── time.json ├── Server-PowerEdge-R740-TimeInfo │ ├── README │ └── redfish │ │ ├── index.json │ │ ├── time.json │ │ └── v1 │ │ ├── $metadata │ │ └── index.xml │ │ ├── Chassis │ │ ├── System.Embedded.1 │ │ │ ├── Power │ │ │ │ ├── PowerSupplies │ │ │ │ │ └── PSU.Slot.1 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ ├── index.json │ │ │ │ └── time.json │ │ │ ├── Sensors │ │ │ │ └── Fans │ │ │ │ │ ├── 0x17||Fan.Embedded.1 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ │ ├── 0x17||Fan.Embedded.2 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ │ ├── 0x17||Fan.Embedded.3 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ │ ├── 0x17||Fan.Embedded.4 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ │ ├── 0x17||Fan.Embedded.5 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ │ └── 0x17||Fan.Embedded.6 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ ├── Thermal │ │ │ │ ├── index.json │ │ │ │ └── time.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── index.json │ │ └── time.json │ │ ├── EventService │ │ ├── Subscriptions │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── index.json │ │ └── time.json │ │ ├── JSONSchemas │ │ ├── AccountService.v1_0_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── AccountService.v1_0_2 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── AccountService │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── AttributeRegistry.v1_0_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── AttributeRegistry │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Bios.v1_0_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Bios │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Chassis.v1_0_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Chassis.v1_0_1 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Chassis.v1_0_2 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Chassis.v1_1_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Chassis.v1_1_2 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Chassis.v1_2_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Chassis │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── ChassisCollection │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── ComputerSystem.v1_0_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── ComputerSystem.v1_0_1 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── ComputerSystem.v1_0_2 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── ComputerSystem.v1_1_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── ComputerSystem │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── ComputerSystemCollection │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── DellAttributes.v1_0_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── DellAttributes │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── DellBootSources.v1_0_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── DellBootSources │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── DellBootSourcesRegistry.v1_0_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── DellBootSourcesRegistry │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── DellCertificate.v1_0_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── DellCertificate │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── DellCertificateCollection │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── DellCertificateStoreCollection │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── DellComputerSystem.v1_0_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── DellComputerSystem │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── DellJob.v1_0_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── DellJob │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── DellJobCollection │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── DellManager.v1_0_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── DellManager │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── DellSecureBoot.v1_0_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── DellSecureBoot │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── DellServiceRoot.v1_0_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── DellServiceRoot │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── DellUpdateService.v1_0_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── DellUpdateService │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── EthernetInterface.v1_0_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── EthernetInterface.v1_0_2 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── EthernetInterface │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── EthernetInterfaceCollection │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Event.v1_0_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Event.v1_0_2 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Event │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── EventDestination.v1_0_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── EventDestination.v1_0_2 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── EventDestination │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── EventDestinationCollection │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── EventService.v1_0_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── EventService.v1_0_2 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── EventService │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── IPAddresses.v1_0_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── IPAddresses.v1_0_2 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── JsonSchemaFile.v1_0_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── JsonSchemaFile.v1_0_2 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── JsonSchemaFile │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── JsonSchemaFileCollection │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── LogEntry.v1_0_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── LogEntry.v1_0_2 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── LogEntry │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── LogEntryCollection │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── LogService.v1_0_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── LogService.v1_0_2 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── LogService │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── LogServiceCollection │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Manager.v1_0_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Manager.v1_0_1 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Manager.v1_0_2 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Manager │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── ManagerAccount.v1_0_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── ManagerAccount.v1_0_2 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── ManagerAccount │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── ManagerAccountCollection │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── ManagerCollection │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── ManagerNetworkProtocol.v1_0_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── ManagerNetworkProtocol.v1_0_2 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── ManagerNetworkProtocol │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Message.v1_0_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Message.v1_0_2 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Message │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── MessageRegistry.v1_0_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── MessageRegistry.v1_0_2 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── MessageRegistry │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── MessageRegistryCollection │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── MessageRegistryFile.v1_0_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── MessageRegistryFile.v1_0_2 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── MessageRegistryFile │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── MessageRegistryFileCollection │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── OemManager.v1_0_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── OemManager.v1_1_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── OemManager │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── PhysicalContext.v1_0_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── PhysicalContext.v1_0_2 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Power.v1_0_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Power.v1_0_1 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Power.v1_0_2 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Power.v1_1_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Power │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Privileges.v1_0_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Privileges.v1_0_2 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Processor.v1_0_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Processor.v1_0_2 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Processor │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── ProcessorCollection │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── RedfishExtensions.v1_0_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Redundancy.v1_0_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Redundancy.v1_0_1 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Redundancy.v1_0_2 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Redundancy │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Resource.v1_0_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Resource.v1_0_2 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Resource │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Role.v1_0_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Role.v1_0_2 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Role │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── RoleCollection │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── SecureBoot.v1_0_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── SecureBoot │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── SerialInterface.v1_0_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── SerialInterface.v1_0_2 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── SerialInterface │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── SerialInterfaceCollection │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── ServiceRoot.v1_0_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── ServiceRoot.v1_0_2 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── ServiceRoot.v1_1_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── ServiceRoot │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Session.v1_0_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Session.v1_0_2 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Session │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── SessionCollection │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── SessionService.v1_0_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── SessionService.v1_0_2 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── SessionService │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Settings.v1_0_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Settings.v1_0_2 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Settings │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── SimpleStorage.v1_0_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── SimpleStorage.v1_0_2 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── SimpleStorage │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── SimpleStorageCollection │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── SoftwareInventory.v1_0_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── SoftwareInventory │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── SoftwareInventoryCollection │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Task.v1_0_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Task.v1_0_2 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Task │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── TaskCollection │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── TaskService.v1_0_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── TaskService.v1_0_2 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── TaskService │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Thermal.v1_0_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Thermal.v1_0_1 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Thermal.v1_0_2 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Thermal │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── UpdateService.v1_0_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── UpdateService │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── VLanNetworkInterface.v1_0_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── VLanNetworkInterface.v1_0_1 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── VLanNetworkInterface.v1_0_2 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── VLanNetworkInterface │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── VLanNetworkInterfaceCollection │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── VirtualMedia.v1_0_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── VirtualMedia.v1_0_2 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── VirtualMedia │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── VirtualMediaCollection │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── index.json │ │ ├── odata.4.0.0 │ │ │ ├── index.json │ │ │ └── time.json │ │ └── time.json │ │ ├── Managers │ │ ├── LifecycleController.Embedded.1 │ │ │ └── Attributes │ │ │ │ ├── Settings │ │ │ │ ├── index.json │ │ │ │ └── time.json │ │ │ │ ├── index.json │ │ │ │ └── time.json │ │ ├── System.Embedded.1 │ │ │ └── Attributes │ │ │ │ ├── Settings │ │ │ │ ├── index.json │ │ │ │ └── time.json │ │ │ │ ├── index.json │ │ │ │ └── time.json │ │ ├── iDRAC.Embedded.1 │ │ │ ├── AccountService │ │ │ │ ├── index.json │ │ │ │ └── time.json │ │ │ ├── Accounts │ │ │ │ ├── 1 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ ├── 2 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ ├── 3 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ ├── 4 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ ├── 5 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ ├── 6 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ ├── 7 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ ├── 8 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ ├── 9 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ ├── 10 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ ├── 11 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ ├── 12 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ ├── 13 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ ├── 14 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ ├── 15 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ ├── 16 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ ├── index.json │ │ │ │ └── time.json │ │ │ ├── Attributes │ │ │ │ ├── Settings │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ ├── index.json │ │ │ │ └── time.json │ │ │ ├── EthernetInterfaces │ │ │ │ ├── iDRAC.Embedded.1%23NIC.1 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ ├── index.json │ │ │ │ └── time.json │ │ │ ├── Jobs │ │ │ │ ├── JID_089112791532 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ ├── index.json │ │ │ │ └── time.json │ │ │ ├── LogServices │ │ │ │ ├── Lclog │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ ├── Sel │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ ├── index.json │ │ │ │ └── time.json │ │ │ ├── Logs │ │ │ │ ├── Lclog │ │ │ │ │ ├── 1592 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 1593 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 1594 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 1595 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 1596 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 1597 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 1598 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 1599 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 1600 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 1601 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 1602 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 1603 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 1604 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 1605 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 1606 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 1607 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 1608 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 1609 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 1610 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 1611 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 1612 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 1613 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 1614 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 1615 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 1616 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 1617 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 1618 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 1619 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 1620 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 1621 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 1622 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 1623 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 1624 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 1625 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 1626 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 1627 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 1628 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 1629 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 1630 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 1631 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 1632 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 1633 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 1634 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 1635 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 1636 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 1637 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 1638 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 1639 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 1640 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── 1641 │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ └── Sel │ │ │ │ │ ├── 41 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ │ ├── 42 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ │ ├── 43 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ │ ├── 44 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ │ ├── 45 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ │ ├── 46 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ │ ├── 47 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ │ ├── 48 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ │ ├── 49 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ │ ├── 50 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ │ ├── 51 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ │ ├── 52 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ │ ├── 53 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ │ ├── 54 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ │ ├── 55 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ │ ├── 56 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ │ ├── 57 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ │ ├── 58 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ │ ├── 59 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ │ ├── 60 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ │ ├── 61 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ │ ├── 62 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ │ ├── 63 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ │ ├── 64 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ │ ├── 65 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ │ ├── 66 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ │ ├── 67 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ │ ├── 68 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ │ ├── 69 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ │ ├── 70 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ │ ├── 71 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ │ ├── 72 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ │ ├── 73 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ │ ├── 74 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ │ ├── 75 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ │ ├── 76 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ │ ├── 77 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ │ ├── 78 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ │ ├── 79 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ │ ├── 80 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ │ ├── 81 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ │ ├── 82 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ │ ├── 83 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ │ ├── 84 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ │ ├── 85 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ │ ├── 86 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ │ ├── 87 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ │ ├── 88 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ │ ├── 89 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ │ ├── 90 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ ├── NetworkProtocol │ │ │ │ ├── index.json │ │ │ │ └── time.json │ │ │ ├── Roles │ │ │ │ ├── Administrator │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ ├── None │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ ├── Operator │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ ├── ReadOnly │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ ├── index.json │ │ │ │ └── time.json │ │ │ ├── SerialInterfaces │ │ │ │ ├── iDRAC.Embedded.1%23Serial.1 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ ├── index.json │ │ │ │ └── time.json │ │ │ ├── VirtualMedia │ │ │ │ ├── CD │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ ├── RemovableDisk │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ ├── index.json │ │ │ │ └── time.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── index.json │ │ └── time.json │ │ ├── Registries │ │ ├── BaseMessages │ │ │ ├── BaseRegistry.v1_0_0.json │ │ │ │ ├── index.json │ │ │ │ └── time.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── BiosAttributeRegistry.v1_0_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── BootSourcesRegistry.v1_0_0 │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── ManagerAttributeRegistry │ │ │ ├── ManagerAttributeRegistry.v1_0_0.json │ │ │ │ ├── index.json │ │ │ │ └── time.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Messages │ │ │ ├── EEMIRegistry.v1_5_0.json │ │ │ │ ├── index.json │ │ │ │ └── time.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── index.json │ │ └── time.json │ │ ├── Schemas │ │ ├── AccountService.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── AccountService.v1_0_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── AccountService.v1_0_2.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── AttributeRegistry.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── AttributeRegistry.v1_0_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Bios.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Bios.v1_0_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Chassis.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Chassis.v1_0_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Chassis.v1_0_1.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Chassis.v1_0_2.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Chassis.v1_1_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Chassis.v1_1_2.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Chassis.v1_2_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── ChassisCollection.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── ComputerSystem.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── ComputerSystem.v1_0_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── ComputerSystem.v1_0_1.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── ComputerSystem.v1_0_2.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── ComputerSystem.v1_1_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── ComputerSystemCollection.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── DellAttributes.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── DellAttributes.v1_0_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── DellBootSources.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── DellBootSources.v1_0_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── DellBootSourcesRegistry.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── DellBootSourcesRegistry.v1_0_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── DellCertificate.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── DellCertificate.v1_0_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── DellCertificateCollection.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── DellCertificateStoreCollection.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── DellComputerSystem.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── DellComputerSystem.v1_0_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── DellJob.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── DellJob.v1_0_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── DellJobCollection.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── DellManager.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── DellManager.v1_0_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── DellSecureBoot.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── DellSecureBoot.v1_0_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── DellServiceRoot.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── DellServiceRoot.v1_0_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── DellUpdateService.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── DellUpdateService.v1_0_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── EthernetInterface.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── EthernetInterface.v1_0_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── EthernetInterface.v1_0_2.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── EthernetInterfaceCollection.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Event.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Event.v1_0_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Event.v1_0_2.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── EventDestination.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── EventDestination.v1_0_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── EventDestination.v1_0_2.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── EventDestinationCollection.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── EventService.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── EventService.v1_0_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── EventService.v1_0_2.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── IPAddresses.v1_0_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── IPAddresses.v1_0_2.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── JsonSchemaFile.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── JsonSchemaFile.v1_0_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── JsonSchemaFile.v1_0_2.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── JsonSchemaFileCollection.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── LogEntry.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── LogEntry.v1_0_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── LogEntry.v1_0_2.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── LogEntryCollection.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── LogService.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── LogService.v1_0_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── LogService.v1_0_2.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── LogServiceCollection.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Manager.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Manager.v1_0_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Manager.v1_0_1.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Manager.v1_0_2.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── ManagerAccount.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── ManagerAccount.v1_0_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── ManagerAccount.v1_0_2.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── ManagerAccountCollection.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── ManagerCollection.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── ManagerNetworkProtocol.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── ManagerNetworkProtocol.v1_0_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── ManagerNetworkProtocol.v1_0_2.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Message.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Message.v1_0_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Message.v1_0_2.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── MessageRegistry.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── MessageRegistry.v1_0_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── MessageRegistry.v1_0_2.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── MessageRegistryCollection.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── MessageRegistryFile.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── MessageRegistryFile.v1_0_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── MessageRegistryFile.v1_0_2.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── MessageRegistryFileCollection.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── OemManager.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── OemManager.v1_0_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── OemManager.v1_1_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── PhysicalContext.v1_0_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── PhysicalContext.v1_0_2.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Power.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Power.v1_0_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Power.v1_0_1.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Power.v1_0_2.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Power.v1_1_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Privileges.v1_0_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Privileges.v1_0_2.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Processor.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Processor.v1_0_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Processor.v1_0_2.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── ProcessorCollection.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── RedfishExtensions.v1_0_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Redundancy.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Redundancy.v1_0_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Redundancy.v1_0_1.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Redundancy.v1_0_2.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Resource.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Resource.v1_0_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Resource.v1_0_2.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Role.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Role.v1_0_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Role.v1_0_2.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── RoleCollection.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── SecureBoot.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── SecureBoot.v1_0_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── SerialInterface.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── SerialInterface.v1_0_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── SerialInterface.v1_0_2.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── SerialInterfaceCollection.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── ServiceRoot.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── ServiceRoot.v1_0_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── ServiceRoot.v1_0_2.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── ServiceRoot.v1_1_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Session.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Session.v1_0_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Session.v1_0_2.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── SessionCollection.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── SessionService.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── SessionService.v1_0_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── SessionService.v1_0_2.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Settings.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Settings.v1_0_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Settings.v1_0_2.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── SimpleStorage.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── SimpleStorage.v1_0_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── SimpleStorage.v1_0_2.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── SimpleStorageCollection.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── SoftwareInventory.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── SoftwareInventory.v1_0_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── SoftwareInventoryCollection.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Task.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Task.v1_0_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Task.v1_0_2.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── TaskCollection.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── TaskService.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── TaskService.v1_0_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── TaskService.v1_0_2.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Thermal.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Thermal.v1_0_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Thermal.v1_0_1.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── Thermal.v1_0_2.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── UpdateService.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── UpdateService.v1_0_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── VLanNetworkInterface.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── VLanNetworkInterface.v1_0_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── VLanNetworkInterface.v1_0_1.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── VLanNetworkInterface.v1_0_2.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── VLanNetworkInterfaceCollection.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── VirtualMedia.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── VirtualMedia.v1_0_0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── VirtualMedia.v1_0_2.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── VirtualMediaCollection.json │ │ │ ├── index.json │ │ │ └── time.json │ │ └── odata.4.0.0.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── SessionService │ │ ├── index.json │ │ └── time.json │ │ ├── Sessions │ │ ├── index.json │ │ └── time.json │ │ ├── Systems │ │ ├── System.Embedded.1 │ │ │ ├── Bios │ │ │ │ ├── BiosRegistry │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ ├── Settings │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ ├── index.json │ │ │ │ └── time.json │ │ │ ├── BootSources │ │ │ │ ├── BootSourcesRegistry │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ ├── Settings │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ ├── index.json │ │ │ │ └── time.json │ │ │ ├── EthernetInterfaces │ │ │ │ ├── NIC.Integrated.1-1-1 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ ├── NIC.Integrated.1-2-1 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ ├── NIC.Integrated.1-3-1 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ ├── NIC.Integrated.1-4-1 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ ├── index.json │ │ │ │ └── time.json │ │ │ ├── Processors │ │ │ │ ├── CPU.Socket.1 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ ├── index.json │ │ │ │ └── time.json │ │ │ ├── SecureBoot │ │ │ │ ├── Certificates │ │ │ │ │ ├── DB │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── DBX │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── KEK │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── PK │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ └── time.json │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ ├── index.json │ │ │ │ └── time.json │ │ │ ├── Storage │ │ │ │ └── Controllers │ │ │ │ │ ├── AHCI.Embedded.1-1 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ │ ├── AHCI.Embedded.2-1 │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ │ │ ├── index.json │ │ │ │ │ └── time.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── index.json │ │ └── time.json │ │ ├── TaskService │ │ ├── Tasks │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── index.json │ │ └── time.json │ │ ├── UpdateService │ │ ├── FirmwareInventory │ │ │ ├── Installed-101097-00.14.4B │ │ │ │ ├── index.json │ │ │ │ └── time.json │ │ │ ├── Installed-101734-0 │ │ │ │ ├── index.json │ │ │ │ └── time.json │ │ │ ├── Installed-103999-3.26 │ │ │ │ ├── index.json │ │ │ │ └── time.json │ │ │ ├── Installed-104684-0 │ │ │ │ ├── index.json │ │ │ │ └── time.json │ │ │ ├── Installed-104714-DA02 │ │ │ │ ├── index.json │ │ │ │ └── time.json │ │ │ ├── Installed-159-0.4.1 │ │ │ │ ├── index.json │ │ │ │ └── time.json │ │ │ ├── Installed-18981-0 │ │ │ │ ├── index.json │ │ │ │ └── time.json │ │ │ ├── Installed-25227-3.15.15.15 │ │ │ │ ├── index.json │ │ │ │ └── time.json │ │ │ ├── Installed-25806-0 │ │ │ │ ├── index.json │ │ │ │ └── time.json │ │ │ ├── Installed-27481-7.10.0 │ │ │ │ ├── index.json │ │ │ │ └── time.json │ │ │ ├── Installed-27763-0.4.0 │ │ │ │ ├── index.json │ │ │ │ └── time.json │ │ │ ├── Installed-28897-3.15.15.15 │ │ │ │ ├── index.json │ │ │ │ └── time.json │ │ │ ├── Previous-25227-3.15.15.15 │ │ │ │ ├── index.json │ │ │ │ └── time.json │ │ │ ├── index.json │ │ │ └── time.json │ │ ├── index.json │ │ └── time.json │ │ ├── index.json │ │ ├── odata │ │ ├── index.json │ │ └── time.json │ │ └── time.json └── Server-PowerEdge-T630 │ ├── README │ └── redfish │ ├── index.json │ └── v1 │ ├── $metadata │ └── index.xml │ ├── Chassis │ ├── System.Embedded.1 │ │ ├── Power │ │ │ └── index.json │ │ ├── Thermal │ │ │ └── index.json │ │ └── index.json │ └── index.json │ ├── EventService │ ├── Subscriptions │ │ └── index.json │ └── index.json │ ├── JSONSchemas │ ├── AccountService.v1_0_0 │ │ └── index.json │ ├── AccountService.v1_0_2 │ │ └── index.json │ ├── AccountService │ │ └── index.json │ ├── AttributeRegistry.v1_0_0 │ │ └── index.json │ ├── AttributeRegistry │ │ └── index.json │ ├── Bios.v1_0_0 │ │ └── index.json │ ├── Bios │ │ └── index.json │ ├── BootSources.v1_0_0 │ │ └── index.json │ ├── BootSourcesRegistry.v1_0_0 │ │ └── index.json │ ├── Chassis.v1_0_0 │ │ └── index.json │ ├── Chassis.v1_0_1 │ │ └── index.json │ ├── Chassis.v1_0_2 │ │ └── index.json │ ├── Chassis │ │ └── index.json │ ├── ChassisCollection │ │ └── index.json │ ├── ComputerSystem.v1_0_0 │ │ └── index.json │ ├── ComputerSystem.v1_0_1 │ │ └── index.json │ ├── ComputerSystem.v1_0_2 │ │ └── index.json │ ├── ComputerSystem.v1_1_0 │ │ └── index.json │ ├── ComputerSystem │ │ └── index.json │ ├── ComputerSystemCollection │ │ └── index.json │ ├── EthernetInterface.v1_0_0 │ │ └── index.json │ ├── EthernetInterface.v1_0_2 │ │ └── index.json │ ├── EthernetInterface │ │ └── index.json │ ├── EthernetInterfaceCollection │ │ └── index.json │ ├── Event.v1_0_0 │ │ └── index.json │ ├── Event.v1_0_2 │ │ └── index.json │ ├── Event │ │ └── index.json │ ├── EventDestination.v1_0_0 │ │ └── index.json │ ├── EventDestination.v1_0_2 │ │ └── index.json │ ├── EventDestination │ │ └── index.json │ ├── EventDestinationCollection │ │ └── index.json │ ├── EventService.v1_0_0 │ │ └── index.json │ ├── EventService.v1_0_2 │ │ └── index.json │ ├── EventService │ │ └── index.json │ ├── IPAddresses.v1_0_0 │ │ └── index.json │ ├── IPAddresses.v1_0_2 │ │ └── index.json │ ├── JsonSchemaFile.v1_0_0 │ │ └── index.json │ ├── JsonSchemaFile.v1_0_2 │ │ └── index.json │ ├── JsonSchemaFile │ │ └── index.json │ ├── JsonSchemaFileCollection │ │ └── index.json │ ├── LogEntry.v1_0_0 │ │ └── index.json │ ├── LogEntry.v1_0_2 │ │ └── index.json │ ├── LogEntry │ │ └── index.json │ ├── LogEntryCollection │ │ └── index.json │ ├── LogService.v1_0_0 │ │ └── index.json │ ├── LogService.v1_0_2 │ │ └── index.json │ ├── LogService │ │ └── index.json │ ├── LogServiceCollection │ │ └── index.json │ ├── Manager.v1_0_0 │ │ └── index.json │ ├── Manager.v1_0_1 │ │ └── index.json │ ├── Manager.v1_0_2 │ │ └── index.json │ ├── Manager │ │ └── index.json │ ├── ManagerAccount.v1_0_0 │ │ └── index.json │ ├── ManagerAccount.v1_0_2 │ │ └── index.json │ ├── ManagerAccount │ │ └── index.json │ ├── ManagerAccountCollection │ │ └── index.json │ ├── ManagerCollection │ │ └── index.json │ ├── ManagerNetworkProtocol.v1_0_0 │ │ └── index.json │ ├── ManagerNetworkProtocol.v1_0_2 │ │ └── index.json │ ├── ManagerNetworkProtocol │ │ └── index.json │ ├── Message.v1_0_0 │ │ └── index.json │ ├── Message.v1_0_2 │ │ └── index.json │ ├── Message │ │ └── index.json │ ├── MessageRegistry.v1_0_0 │ │ └── index.json │ ├── MessageRegistry.v1_0_2 │ │ └── index.json │ ├── MessageRegistry │ │ └── index.json │ ├── MessageRegistryCollection │ │ └── index.json │ ├── MessageRegistryFile.v1_0_0 │ │ └── index.json │ ├── MessageRegistryFile.v1_0_2 │ │ └── index.json │ ├── MessageRegistryFile │ │ └── index.json │ ├── MessageRegistryFileCollection │ │ └── index.json │ ├── OemManager.v1_0_0 │ │ └── index.json │ ├── OemManager.v1_1_0 │ │ └── index.json │ ├── OemManager │ │ └── index.json │ ├── PhysicalContext.v1_0_0 │ │ └── index.json │ ├── PhysicalContext.v1_0_2 │ │ └── index.json │ ├── Power.v1_0_0 │ │ └── index.json │ ├── Power.v1_0_1 │ │ └── index.json │ ├── Power.v1_0_2 │ │ └── index.json │ ├── Power │ │ └── index.json │ ├── Privileges.v1_0_0 │ │ └── index.json │ ├── Privileges.v1_0_2 │ │ └── index.json │ ├── Processor.v1_0_0 │ │ └── index.json │ ├── Processor.v1_0_2 │ │ └── index.json │ ├── Processor │ │ └── index.json │ ├── ProcessorCollection │ │ └── index.json │ ├── RedfishExtensions.v1_0_0 │ │ └── index.json │ ├── Redundancy.v1_0_0 │ │ └── index.json │ ├── Redundancy.v1_0_1 │ │ └── index.json │ ├── Redundancy.v1_0_2 │ │ └── index.json │ ├── Redundancy │ │ └── index.json │ ├── Resource.v1_0_0 │ │ └── index.json │ ├── Resource.v1_0_2 │ │ └── index.json │ ├── Resource │ │ └── index.json │ ├── Role.v1_0_0 │ │ └── index.json │ ├── Role.v1_0_2 │ │ └── index.json │ ├── Role │ │ └── index.json │ ├── RoleCollection │ │ └── index.json │ ├── SecureBoot.v1_0_0 │ │ └── index.json │ ├── SecureBoot │ │ └── index.json │ ├── SerialInterface.v1_0_0 │ │ └── index.json │ ├── SerialInterface.v1_0_2 │ │ └── index.json │ ├── SerialInterface │ │ └── index.json │ ├── SerialInterfaceCollection │ │ └── index.json │ ├── ServiceRoot.v1_0_0 │ │ └── index.json │ ├── ServiceRoot.v1_0_2 │ │ └── index.json │ ├── ServiceRoot │ │ └── index.json │ ├── Session.v1_0_0 │ │ └── index.json │ ├── Session.v1_0_2 │ │ └── index.json │ ├── Session │ │ └── index.json │ ├── SessionCollection │ │ └── index.json │ ├── SessionService.v1_0_0 │ │ └── index.json │ ├── SessionService.v1_0_2 │ │ └── index.json │ ├── SessionService │ │ └── index.json │ ├── Settings.v1_0_0 │ │ └── index.json │ ├── Settings.v1_0_2 │ │ └── index.json │ ├── Settings │ │ └── index.json │ ├── SimpleStorage.v1_0_0 │ │ └── index.json │ ├── SimpleStorage.v1_0_2 │ │ └── index.json │ ├── SimpleStorage │ │ └── index.json │ ├── SimpleStorageCollection │ │ └── index.json │ ├── Task.v1_0_0 │ │ └── index.json │ ├── Task.v1_0_2 │ │ └── index.json │ ├── Task │ │ └── index.json │ ├── TaskCollection │ │ └── index.json │ ├── TaskService.v1_0_0 │ │ └── index.json │ ├── TaskService.v1_0_2 │ │ └── index.json │ ├── TaskService │ │ └── index.json │ ├── Thermal.v1_0_0 │ │ └── index.json │ ├── Thermal.v1_0_1 │ │ └── index.json │ ├── Thermal.v1_0_2 │ │ └── index.json │ ├── Thermal │ │ └── index.json │ ├── VLanNetworkInterface.v1_0_0 │ │ └── index.json │ ├── VLanNetworkInterface.v1_0_1 │ │ └── index.json │ ├── VLanNetworkInterface.v1_0_2 │ │ └── index.json │ ├── VLanNetworkInterface │ │ └── index.json │ ├── VLanNetworkInterfaceCollection │ │ └── index.json │ ├── VirtualMedia.v1_0_0 │ │ └── index.json │ ├── VirtualMedia.v1_0_2 │ │ └── index.json │ ├── VirtualMedia │ │ └── index.json │ ├── VirtualMediaCollection │ │ └── index.json │ ├── index.json │ └── odata.4.0.0 │ │ └── index.json │ ├── Managers │ ├── iDRAC.Embedded.1 │ │ ├── AccountService │ │ │ └── index.json │ │ ├── Accounts │ │ │ ├── 1 │ │ │ │ └── index.json │ │ │ ├── 2 │ │ │ │ └── index.json │ │ │ ├── 3 │ │ │ │ └── index.json │ │ │ ├── 4 │ │ │ │ └── index.json │ │ │ ├── 5 │ │ │ │ └── index.json │ │ │ ├── 6 │ │ │ │ └── index.json │ │ │ ├── 7 │ │ │ │ └── index.json │ │ │ ├── 8 │ │ │ │ └── index.json │ │ │ ├── 9 │ │ │ │ └── index.json │ │ │ ├── 10 │ │ │ │ └── index.json │ │ │ ├── 11 │ │ │ │ └── index.json │ │ │ ├── 12 │ │ │ │ └── index.json │ │ │ ├── 13 │ │ │ │ └── index.json │ │ │ ├── 14 │ │ │ │ └── index.json │ │ │ ├── 15 │ │ │ │ └── index.json │ │ │ ├── 16 │ │ │ │ └── index.json │ │ │ └── index.json │ │ ├── EthernetInterfaces │ │ │ ├── iDRAC.Embedded.1%23NIC.1 │ │ │ │ └── index.json │ │ │ └── index.json │ │ ├── LogServices │ │ │ ├── Lclog │ │ │ │ └── index.json │ │ │ ├── Sel │ │ │ │ └── index.json │ │ │ └── index.json │ │ ├── Logs │ │ │ ├── Lclog │ │ │ │ ├── 22887 │ │ │ │ │ └── index.json │ │ │ │ ├── 22888 │ │ │ │ │ └── index.json │ │ │ │ ├── 22889 │ │ │ │ │ └── index.json │ │ │ │ ├── 22890 │ │ │ │ │ └── index.json │ │ │ │ ├── 22891 │ │ │ │ │ └── index.json │ │ │ │ ├── 22892 │ │ │ │ │ └── index.json │ │ │ │ ├── 22893 │ │ │ │ │ └── index.json │ │ │ │ ├── 22894 │ │ │ │ │ └── index.json │ │ │ │ ├── 22895 │ │ │ │ │ └── index.json │ │ │ │ ├── 22896 │ │ │ │ │ └── index.json │ │ │ │ ├── 22897 │ │ │ │ │ └── index.json │ │ │ │ ├── 22898 │ │ │ │ │ └── index.json │ │ │ │ ├── 22899 │ │ │ │ │ └── index.json │ │ │ │ ├── 22900 │ │ │ │ │ └── index.json │ │ │ │ ├── 22901 │ │ │ │ │ └── index.json │ │ │ │ ├── 22902 │ │ │ │ │ └── index.json │ │ │ │ ├── 22903 │ │ │ │ │ └── index.json │ │ │ │ ├── 22904 │ │ │ │ │ └── index.json │ │ │ │ ├── 22905 │ │ │ │ │ └── index.json │ │ │ │ ├── 22906 │ │ │ │ │ └── index.json │ │ │ │ ├── 22907 │ │ │ │ │ └── index.json │ │ │ │ ├── 22908 │ │ │ │ │ └── index.json │ │ │ │ ├── 22909 │ │ │ │ │ └── index.json │ │ │ │ ├── 22910 │ │ │ │ │ └── index.json │ │ │ │ ├── 22911 │ │ │ │ │ └── index.json │ │ │ │ ├── 22912 │ │ │ │ │ └── index.json │ │ │ │ ├── 22913 │ │ │ │ │ └── index.json │ │ │ │ ├── 22914 │ │ │ │ │ └── index.json │ │ │ │ ├── 22915 │ │ │ │ │ └── index.json │ │ │ │ ├── 22916 │ │ │ │ │ └── index.json │ │ │ │ ├── 22917 │ │ │ │ │ └── index.json │ │ │ │ ├── 22918 │ │ │ │ │ └── index.json │ │ │ │ ├── 22919 │ │ │ │ │ └── index.json │ │ │ │ ├── 22920 │ │ │ │ │ └── index.json │ │ │ │ ├── 22921 │ │ │ │ │ └── index.json │ │ │ │ ├── 22922 │ │ │ │ │ └── index.json │ │ │ │ ├── 22923 │ │ │ │ │ └── index.json │ │ │ │ ├── 22924 │ │ │ │ │ └── index.json │ │ │ │ ├── 22925 │ │ │ │ │ └── index.json │ │ │ │ ├── 22926 │ │ │ │ │ └── index.json │ │ │ │ ├── 22927 │ │ │ │ │ └── index.json │ │ │ │ ├── 22928 │ │ │ │ │ └── index.json │ │ │ │ ├── 22929 │ │ │ │ │ └── index.json │ │ │ │ ├── 22930 │ │ │ │ │ └── index.json │ │ │ │ ├── 22931 │ │ │ │ │ └── index.json │ │ │ │ ├── 22932 │ │ │ │ │ └── index.json │ │ │ │ ├── 22933 │ │ │ │ │ └── index.json │ │ │ │ ├── 22934 │ │ │ │ │ └── index.json │ │ │ │ ├── 22935 │ │ │ │ │ └── index.json │ │ │ │ ├── 22936 │ │ │ │ │ └── index.json │ │ │ │ └── index.json │ │ │ └── Sel │ │ │ │ ├── 689 │ │ │ │ └── index.json │ │ │ │ ├── 690 │ │ │ │ └── index.json │ │ │ │ ├── 691 │ │ │ │ └── index.json │ │ │ │ ├── 692 │ │ │ │ └── index.json │ │ │ │ ├── 693 │ │ │ │ └── index.json │ │ │ │ ├── 694 │ │ │ │ └── index.json │ │ │ │ ├── 695 │ │ │ │ └── index.json │ │ │ │ ├── 696 │ │ │ │ └── index.json │ │ │ │ ├── 697 │ │ │ │ └── index.json │ │ │ │ ├── 698 │ │ │ │ └── index.json │ │ │ │ ├── 699 │ │ │ │ └── index.json │ │ │ │ ├── 700 │ │ │ │ └── index.json │ │ │ │ ├── 701 │ │ │ │ └── index.json │ │ │ │ ├── 702 │ │ │ │ └── index.json │ │ │ │ ├── 703 │ │ │ │ └── index.json │ │ │ │ ├── 704 │ │ │ │ └── index.json │ │ │ │ ├── 705 │ │ │ │ └── index.json │ │ │ │ ├── 706 │ │ │ │ └── index.json │ │ │ │ ├── 707 │ │ │ │ └── index.json │ │ │ │ ├── 708 │ │ │ │ └── index.json │ │ │ │ ├── 709 │ │ │ │ └── index.json │ │ │ │ ├── 710 │ │ │ │ └── index.json │ │ │ │ ├── 711 │ │ │ │ └── index.json │ │ │ │ ├── 712 │ │ │ │ └── index.json │ │ │ │ ├── 713 │ │ │ │ └── index.json │ │ │ │ ├── 714 │ │ │ │ └── index.json │ │ │ │ ├── 715 │ │ │ │ └── index.json │ │ │ │ ├── 716 │ │ │ │ └── index.json │ │ │ │ ├── 717 │ │ │ │ └── index.json │ │ │ │ ├── 718 │ │ │ │ └── index.json │ │ │ │ ├── 719 │ │ │ │ └── index.json │ │ │ │ ├── 720 │ │ │ │ └── index.json │ │ │ │ ├── 721 │ │ │ │ └── index.json │ │ │ │ ├── 722 │ │ │ │ └── index.json │ │ │ │ ├── 723 │ │ │ │ └── index.json │ │ │ │ ├── 724 │ │ │ │ └── index.json │ │ │ │ ├── 725 │ │ │ │ └── index.json │ │ │ │ ├── 726 │ │ │ │ └── index.json │ │ │ │ ├── 727 │ │ │ │ └── index.json │ │ │ │ ├── 728 │ │ │ │ └── index.json │ │ │ │ ├── 729 │ │ │ │ └── index.json │ │ │ │ ├── 730 │ │ │ │ └── index.json │ │ │ │ ├── 731 │ │ │ │ └── index.json │ │ │ │ ├── 732 │ │ │ │ └── index.json │ │ │ │ ├── 733 │ │ │ │ └── index.json │ │ │ │ ├── 734 │ │ │ │ └── index.json │ │ │ │ ├── 735 │ │ │ │ └── index.json │ │ │ │ ├── 736 │ │ │ │ └── index.json │ │ │ │ ├── 737 │ │ │ │ └── index.json │ │ │ │ ├── 738 │ │ │ │ └── index.json │ │ │ │ └── index.json │ │ ├── NetworkProtocol │ │ │ └── index.json │ │ ├── Roles │ │ │ ├── Administrator │ │ │ │ └── index.json │ │ │ ├── None │ │ │ │ └── index.json │ │ │ ├── Operator │ │ │ │ └── index.json │ │ │ ├── ReadOnly │ │ │ │ └── index.json │ │ │ └── index.json │ │ ├── SerialInterfaces │ │ │ ├── iDRAC.Embedded.1%23Serial.1 │ │ │ │ └── index.json │ │ │ └── index.json │ │ ├── VirtualMedia │ │ │ ├── CD │ │ │ │ └── index.json │ │ │ ├── RemovableDisk │ │ │ │ └── index.json │ │ │ └── index.json │ │ └── index.json │ └── index.json │ ├── Registries │ ├── BaseMessages │ │ └── index.json │ ├── BiosAttributeRegistry.v1_0_0 │ │ └── index.json │ ├── BootSourcesRegistry.v1_0_0 │ │ └── index.json │ ├── Messages │ │ └── index.json │ └── index.json │ ├── SessionService │ └── index.json │ ├── Sessions │ └── index.json │ ├── Systems │ ├── System.Embedded.1 │ │ ├── Bios │ │ │ └── index.json │ │ ├── EthernetInterfaces │ │ │ ├── NIC.Embedded.1-1-1 │ │ │ │ └── index.json │ │ │ ├── NIC.Embedded.2-1-1 │ │ │ │ └── index.json │ │ │ └── index.json │ │ ├── Processors │ │ │ ├── CPU.Socket.1 │ │ │ │ └── index.json │ │ │ ├── CPU.Socket.2 │ │ │ │ └── index.json │ │ │ └── index.json │ │ ├── SecureBoot │ │ │ └── index.json │ │ ├── Storage │ │ │ └── Controllers │ │ │ │ ├── AHCI.Embedded.1-1 │ │ │ │ └── index.json │ │ │ │ ├── AHCI.Embedded.2-1 │ │ │ │ └── index.json │ │ │ │ ├── PCIeExtender.Slot.1 │ │ │ │ └── index.json │ │ │ │ ├── RAID.Slot.2-1 │ │ │ │ └── index.json │ │ │ │ ├── RAID.Slot.8-1 │ │ │ │ └── index.json │ │ │ │ └── index.json │ │ └── index.json │ └── index.json │ ├── TaskService │ ├── Tasks │ │ └── index.json │ └── index.json │ ├── index.json │ └── odata │ └── index.json ├── README.md ├── TODO.txt ├── cmd └── sailfish │ ├── logging.go │ ├── main.go │ ├── sdnotify.go │ ├── with-ec.go │ ├── with-mockup.go │ ├── with-spacemonkey.go │ └── without-spacemonkey.go ├── doc ├── DSP0266_1.5.0.pdf ├── DSP0272_1.0.1.pdf ├── DSP2046_2018.1_0.pdf ├── DSP2052_1.0.0.pdf ├── Redfish_Tech_Note–Simple_Secure_Management_for_Converged_Hybrid_IT.pdf ├── design.txt └── hld.txt ├── go.mod ├── go.sum ├── godefs ├── build.sh ├── dm-decode.go ├── dm-object-defs.go ├── fan-binary.json ├── generated-dm-object-defs.go ├── hacked_compile_script └── hello.json ├── hooks ├── README.txt ├── commit-msg ├── commit-msg.d │ └── gerrit-change-id ├── pre-auto-gc └── pre-commit ├── perm └── README.txt ├── redfish-ec.yaml ├── redfish-logging.yaml ├── redfish-mockup-logging.yaml ├── redfish-mockup.yaml ├── sample-events ├── 3000log.log ├── add_2_faults.txt ├── clear_faults.txt ├── deletelog.log ├── ec_clear_logs.txt ├── ec_event_log.txt ├── ec_lcld_logs.txt ├── ec_lcld_logs2.txt ├── ec_lcld_logs3.txt ├── ec_lcld_logs_flood.txt ├── ec_lcld_logs_flood_10.txt ├── ec_lcld_logs_more_flood.txt ├── ec_lcld_logs_out_of_order.txt ├── go_event_with_iom.log ├── go_event_with_master_seq.log ├── go_event_with_seq.txt ├── idrac-create-initial-components.txt ├── idrac_event_log.txt ├── lclog_event.log ├── long_log.log ├── remove_1_fault.txt ├── senna_bootupsky25.log ├── sky32.log ├── storage_event_log.txt └── unittest │ ├── .task_completed.log.swp │ ├── csr.log │ ├── factory_id.log │ ├── inst_pow.log │ ├── inst_pow_0.1.log │ ├── inst_pow_0.log │ ├── inst_pow_2.log │ ├── inst_pow_3.log │ ├── power_bad.log │ ├── power_bad_type.log │ ├── power_on.log │ ├── slot_6_columns.log │ ├── slot_6_rows.log │ ├── task_bad_state.log │ └── task_completed.log ├── scripts ├── Redfish-Service-Validator.ini ├── add-EC-slot-configs.sh ├── benchmark-EC.sh ├── benchmark-IDRAC-odatalite.sh ├── benchmark-IDRAC-sailfish-apache.sh ├── benchmark-IDRAC-sailfish-https.sh ├── benchmark-IDRAC.sh ├── benchmark-reports.sh ├── build-arm-obmc.sh ├── build-ec.sh ├── build-simulation.sh ├── chassis.sh ├── common-vars.sh ├── ec-fast-workflow ├── fmt ├── get-tree.sh ├── login.sh ├── makesubscription.sh ├── plot │ ├── ab-lats.plot │ ├── ab-rps.plot │ ├── compare-ab-cpu.plot │ ├── compare-ab-lats.plot │ ├── compare-ab-rps.plot │ ├── compare-vegeta-cpu-x0-x10.plot │ ├── compare-vegeta-cpu-x0-x20.plot │ ├── compare-vegeta-cpu-x0-x30.plot │ ├── compare-vegeta-cpu-x0-x40.plot │ ├── compare-vegeta-cpu.plot │ ├── compare-vegeta-lats-x0-x10.plot │ ├── compare-vegeta-lats-x0-x15.plot │ ├── compare-vegeta-lats-x0-x20.plot │ ├── compare-vegeta-lats-x0-x30.plot │ ├── compare-vegeta-lats-x0-x40.plot │ ├── compare-vegeta-lats.plot │ ├── compare-vegeta-rps.plot │ ├── cpu.plot │ ├── vegeta-lats.plot │ └── vegeta-rps.plot ├── replay-events.sh ├── runab.sh ├── runhey.sh ├── runsiege.sh ├── runvegeta.sh ├── save-events.sh ├── siege.conf ├── stress-inject.sh ├── submit-test-event.sh ├── test-inject.sh ├── test-pump-action.sh ├── test-submit-event.sh ├── test-submit-metric-report.sh ├── test.sh ├── update.sh ├── walk.sh └── yocto │ ├── go-redfish │ ├── go-redfish.inc │ └── go-redfish_0.1.bb │ └── go │ ├── go-1.9.inc │ ├── go-1.9 │ ├── 0001-make.bash-quote-CC_FOR_TARGET.patch │ ├── 0002-cmd-go-fix-CC-and-CXX-environment-variable-construct.patch │ ├── 0003-make.bash-better-separate-host-and-target-builds.patch │ ├── 0004-cmd-go-allow-GOTOOLDIR-to-be-overridden-in-the-envir.patch │ ├── 0005-cmd-go-make-GOROOT-precious-by-default.patch │ ├── 0006-make.bash-add-GOTOOLDIR_BOOTSTRAP-environment-variab.patch │ ├── 0007-ld-add-soname-to-shareable-objects.patch │ ├── 0008-make.bash-add-GOHOSTxx-indirection-for-cross-canadia.patch │ └── 0009-cmd-go-buildmode-pie-forces-external-linking-mode-on.patch │ ├── go-common.inc │ ├── go-cross-canadian.inc │ ├── go-cross-canadian_1.9.bb │ ├── go-cross.inc │ ├── go-cross_1.9.bb │ ├── go-crosssdk.inc │ ├── go-crosssdk_1.9.bb │ ├── go-dep_0.3.0.bb │ ├── go-native.inc │ ├── go-native_1.9.bb │ ├── go-runtime.inc │ ├── go-runtime_1.9.bb │ ├── go-target.inc │ └── go_1.9.bb ├── src ├── actionhandler │ └── handler.go ├── dell-ec │ ├── am3-functions.go │ ├── certificate_aggregates.go │ ├── cmc_aggregate.go │ ├── ec.go │ ├── event.go │ ├── eventactions.go │ ├── instantiate-helpers.go │ ├── iom_aggregates.go │ ├── lcl.go │ ├── mgractions.go │ ├── power_aggregates.go │ ├── sled_aggregate.go │ ├── slots │ │ └── aggregate.go │ ├── syschasactions.go │ ├── thermal_aggregate.go │ └── updateactions.go ├── dell-resources │ ├── ar_mapper2 │ │ ├── controller.go │ │ └── instantiate-addon.go │ ├── attributedef │ │ └── attributedef.go │ ├── attributes │ │ ├── aggregate.go │ │ ├── controller-new.go │ │ ├── instantiate-addon.go │ │ └── model_withattribute.go │ ├── chassis │ │ ├── helpers.go │ │ └── system.chassis │ │ │ └── thermal │ │ │ └── fans │ │ │ └── aggregate.go │ ├── dellauth │ │ └── dellauth.go │ ├── dm_event │ │ └── event.go │ ├── logservices │ │ └── aggregate.go │ ├── registries │ │ └── aggregate.go │ ├── task_service │ │ └── aggregate.go │ └── update_service │ │ └── aggregate.go ├── http_redfish_sse │ └── rfsse_handler.go ├── http_sse │ └── sse_handler.go ├── log │ └── logging.go ├── log15adapter │ └── logging.go ├── looplab │ ├── aggregatestore │ │ ├── aggregatestore.go │ │ └── eventpublisher.go │ ├── bbolt │ │ └── repo.go │ ├── event │ │ └── event.go │ ├── eventbus │ │ └── eventbus.go │ └── eventwaiter │ │ ├── eventwaiter.go │ │ └── eventwaiter_test.go ├── mockup │ └── mockup.go ├── ocp │ ├── am3 │ │ └── controller.go │ ├── awesome_mapper2 │ │ ├── controller.go │ │ ├── functions-am3-process.go │ │ ├── functions-am3-select.go │ │ └── functions.go │ ├── basicauth │ │ └── basic.go │ ├── event │ │ └── eventstreamfn.go │ ├── eventservice │ │ ├── action.go │ │ ├── aggregate.go │ │ ├── commands.go │ │ ├── controller.go │ │ ├── entrypoint.go │ │ ├── event.go │ │ └── work.go │ ├── health │ │ └── aggregate.go │ ├── model │ │ ├── model-options.go │ │ └── model.go │ ├── session │ │ ├── commands.go │ │ ├── events.go │ │ ├── registeraggregate.go │ │ └── sessions.go │ ├── stdcollections │ │ └── aggregates.go │ ├── telemetryservice │ │ ├── action.go │ │ ├── aggregate.go │ │ ├── commands.go │ │ ├── entrypoint.go │ │ └── event.go │ ├── testaggregate │ │ ├── functions.go │ │ ├── instantiate.go │ │ └── registry.go │ └── view │ │ ├── view-meta.go │ │ ├── view-misc.go │ │ ├── view-options.go │ │ ├── view.go │ │ └── view_test.go ├── redfishresource │ ├── aggregate.go │ ├── events.go │ ├── extmessages.go │ ├── handler.go │ ├── http_commands.go │ ├── http_get.go │ ├── http_reqs.go │ ├── internal_commands.go │ ├── logging.go │ ├── newmeta_test.go │ ├── plugin.go │ ├── redfish_filter.go │ ├── redfish_handler.go │ ├── redfishresourceproperty.go │ ├── register-types.go │ ├── runmeta.go │ └── sdnotify.go ├── stdmeta │ ├── certinfo.go │ ├── datetime.go │ ├── datetimezone.go │ ├── expand.go │ ├── generic.go │ ├── hostname.go │ ├── runcmd.go │ ├── sledprofile.go │ ├── sledvirtualreseat.go │ └── ssoinfo.go ├── tlscert │ └── certs.go └── uploadhandler │ └── handler.go ├── v1 ├── metadata.xml ├── odata.json └── schemas │ ├── AccountService_v1.xml │ ├── ActionInfo_v1.xml │ ├── Assembly_v1.xml │ ├── AttributeRegistry_v1.xml │ ├── Bios_v1.xml │ ├── BootOptionCollection_v1.xml │ ├── BootOption_v1.xml │ ├── ChassisCollection_v1.xml │ ├── Chassis_v1.xml │ ├── CollectionCapabilities_v1.xml │ ├── CompositionService_v1.xml │ ├── ComputerSystemCollection_v1.xml │ ├── ComputerSystem_v1.xml │ ├── Drive_v1.xml │ ├── EndpointCollection_v1.xml │ ├── Endpoint_v1.xml │ ├── EthernetInterfaceCollection_v1.xml │ ├── EthernetInterface_v1.xml │ ├── EventDestinationCollection_v1.xml │ ├── EventDestination_v1.xml │ ├── EventService_v1.xml │ ├── Event_v1.xml │ ├── FabricCollection_v1.xml │ ├── Fabric_v1.xml │ ├── HostInterfaceCollection_v1.xml │ ├── HostInterface_v1.xml │ ├── IPAddresses_v1.xml │ ├── JsonSchemaFileCollection_v1.xml │ ├── JsonSchemaFile_v1.xml │ ├── LogEntryCollection_v1.xml │ ├── LogEntry_v1.xml │ ├── LogServiceCollection_v1.xml │ ├── LogService_v1.xml │ ├── ManagerAccountCollection_v1.xml │ ├── ManagerAccount_v1.xml │ ├── ManagerCollection_v1.xml │ ├── ManagerNetworkProtocol_v1.xml │ ├── Manager_v1.xml │ ├── MemoryChunksCollection_v1.xml │ ├── MemoryChunks_v1.xml │ ├── MemoryCollection_v1.xml │ ├── MemoryDomainCollection_v1.xml │ ├── MemoryDomain_v1.xml │ ├── MemoryMetrics_v1.xml │ ├── Memory_v1.xml │ ├── MessageRegistryCollection_v1.xml │ ├── MessageRegistryFileCollection_v1.xml │ ├── MessageRegistryFile_v1.xml │ ├── MessageRegistry_v1.xml │ ├── Message_v1.xml │ ├── NetworkAdapterCollection_v1.xml │ ├── NetworkAdapter_v1.xml │ ├── NetworkDeviceFunctionCollection_v1.xml │ ├── NetworkDeviceFunction_v1.xml │ ├── NetworkInterfaceCollection_v1.xml │ ├── NetworkInterface_v1.xml │ ├── NetworkPortCollection_v1.xml │ ├── NetworkPort_v1.xml │ ├── PCIeDevice_v1.xml │ ├── PCIeFunction_v1.xml │ ├── PhysicalContext_v1.xml │ ├── PortCollection_v1.xml │ ├── Port_v1.xml │ ├── Power_v1.xml │ ├── PrivilegeRegistry_v1.xml │ ├── Privileges_v1.xml │ ├── ProcessorCollection_v1.xml │ ├── Processor_v1.xml │ ├── Protocol_v1.xml │ ├── RedfishExtensions_v1.xml │ ├── Redundancy_v1.xml │ ├── ResourceBlockCollection_v1.xml │ ├── ResourceBlock_v1.xml │ ├── Resource_v1.xml │ ├── RoleCollection_v1.xml │ ├── Role_v1.xml │ ├── SecureBoot_v1.xml │ ├── SerialInterfaceCollection_v1.xml │ ├── SerialInterface_v1.xml │ ├── ServiceRoot_v1.xml │ ├── SessionCollection_v1.xml │ ├── SessionService_v1.xml │ ├── Session_v1.xml │ ├── Settings_v1.xml │ ├── SimpleStorageCollection_v1.xml │ ├── SimpleStorage_v1.xml │ ├── SoftwareInventoryCollection_v1.xml │ ├── SoftwareInventory_v1.xml │ ├── StorageCollection_v1.xml │ ├── Storage_v1.xml │ ├── SwitchCollection_v1.xml │ ├── Switch_v1.xml │ ├── TaskCollection_v1.xml │ ├── TaskService_v1.xml │ ├── Task_v1.xml │ ├── Thermal_v1.xml │ ├── UpdateService_v1.xml │ ├── VLanNetworkInterfaceCollection_v1.xml │ ├── VLanNetworkInterface_v1.xml │ ├── VirtualMediaCollection_v1.xml │ ├── VirtualMedia_v1.xml │ ├── VolumeCollection_v1.xml │ ├── Volume_v1.xml │ ├── ZoneCollection_v1.xml │ └── Zone_v1.xml └── vendor ├── github.com ├── Knetic │ └── govaluate │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTORS │ │ ├── EvaluableExpression.go │ │ ├── EvaluableExpression_sql.go │ │ ├── ExpressionToken.go │ │ ├── LICENSE │ │ ├── MANUAL.md │ │ ├── OperatorSymbol.go │ │ ├── README.md │ │ ├── TokenKind.go │ │ ├── evaluationStage.go │ │ ├── expressionFunctions.go │ │ ├── expressionOutputStream.go │ │ ├── lexerState.go │ │ ├── lexerStream.go │ │ ├── parameters.go │ │ ├── parsing.go │ │ ├── sanitizedParameters.go │ │ ├── stagePlanner.go │ │ ├── test.sh │ │ └── tokenStream.go ├── davecgh │ └── go-spew │ │ ├── LICENSE │ │ └── spew │ │ ├── bypass.go │ │ ├── bypasssafe.go │ │ ├── common.go │ │ ├── config.go │ │ ├── doc.go │ │ ├── dump.go │ │ ├── format.go │ │ └── spew.go ├── dgrijalva │ └── jwt-go │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── MIGRATION_GUIDE.md │ │ ├── README.md │ │ ├── VERSION_HISTORY.md │ │ ├── claims.go │ │ ├── doc.go │ │ ├── ecdsa.go │ │ ├── ecdsa_utils.go │ │ ├── errors.go │ │ ├── hmac.go │ │ ├── map_claims.go │ │ ├── none.go │ │ ├── parser.go │ │ ├── rsa.go │ │ ├── rsa_pss.go │ │ ├── rsa_utils.go │ │ ├── signing_method.go │ │ └── token.go ├── etcd-io │ └── bbolt │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── bolt_386.go │ │ ├── bolt_amd64.go │ │ ├── bolt_arm.go │ │ ├── bolt_arm64.go │ │ ├── bolt_linux.go │ │ ├── bolt_mips64x.go │ │ ├── bolt_mipsx.go │ │ ├── bolt_openbsd.go │ │ ├── bolt_ppc.go │ │ ├── bolt_ppc64.go │ │ ├── bolt_ppc64le.go │ │ ├── bolt_s390x.go │ │ ├── bolt_unix.go │ │ ├── bolt_unix_solaris.go │ │ ├── bolt_windows.go │ │ ├── boltsync_unix.go │ │ ├── bucket.go │ │ ├── cursor.go │ │ ├── db.go │ │ ├── doc.go │ │ ├── errors.go │ │ ├── freelist.go │ │ ├── freelist_hmap.go │ │ ├── node.go │ │ ├── page.go │ │ └── tx.go ├── fsnotify │ └── fsnotify │ │ ├── .editorconfig │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── AUTHORS │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── fen.go │ │ ├── fsnotify.go │ │ ├── inotify.go │ │ ├── inotify_poller.go │ │ ├── kqueue.go │ │ ├── open_mode_bsd.go │ │ ├── open_mode_darwin.go │ │ └── windows.go ├── go-stack │ └── stack │ │ ├── .travis.yml │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── go.mod │ │ └── stack.go ├── gorilla │ ├── context │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── context.go │ │ └── doc.go │ └── mux │ │ ├── .travis.yml │ │ ├── ISSUE_TEMPLATE.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── context_gorilla.go │ │ ├── context_native.go │ │ ├── doc.go │ │ ├── middleware.go │ │ ├── mux.go │ │ ├── regexp.go │ │ ├── route.go │ │ └── test_helpers.go ├── hashicorp │ └── hcl │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── appveyor.yml │ │ ├── decoder.go │ │ ├── go.mod │ │ ├── go.sum │ │ ├── hcl.go │ │ ├── hcl │ │ ├── ast │ │ │ ├── ast.go │ │ │ └── walk.go │ │ ├── parser │ │ │ ├── error.go │ │ │ └── parser.go │ │ ├── printer │ │ │ ├── nodes.go │ │ │ └── printer.go │ │ ├── scanner │ │ │ └── scanner.go │ │ ├── strconv │ │ │ └── quote.go │ │ └── token │ │ │ ├── position.go │ │ │ └── token.go │ │ ├── json │ │ ├── parser │ │ │ ├── flatten.go │ │ │ └── parser.go │ │ ├── scanner │ │ │ └── scanner.go │ │ └── token │ │ │ ├── position.go │ │ │ └── token.go │ │ ├── lex.go │ │ └── parse.go ├── inconshreveable │ └── log15 │ │ ├── .mailmap │ │ ├── .travis.yml │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── README.md │ │ ├── doc.go │ │ ├── format.go │ │ ├── handler.go │ │ ├── handler_go13.go │ │ ├── handler_go14.go │ │ ├── logger.go │ │ ├── root.go │ │ └── syslog.go ├── json-iterator │ └── go │ │ ├── .codecov.yml │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── Gopkg.lock │ │ ├── Gopkg.toml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── adapter.go │ │ ├── any.go │ │ ├── any_array.go │ │ ├── any_bool.go │ │ ├── any_float.go │ │ ├── any_int32.go │ │ ├── any_int64.go │ │ ├── any_invalid.go │ │ ├── any_nil.go │ │ ├── any_number.go │ │ ├── any_object.go │ │ ├── any_str.go │ │ ├── any_uint32.go │ │ ├── any_uint64.go │ │ ├── build.sh │ │ ├── config.go │ │ ├── fuzzy_mode_convert_table.md │ │ ├── go.mod │ │ ├── go.sum │ │ ├── iter.go │ │ ├── iter_array.go │ │ ├── iter_float.go │ │ ├── iter_int.go │ │ ├── iter_object.go │ │ ├── iter_skip.go │ │ ├── iter_skip_sloppy.go │ │ ├── iter_skip_strict.go │ │ ├── iter_str.go │ │ ├── jsoniter.go │ │ ├── pool.go │ │ ├── reflect.go │ │ ├── reflect_array.go │ │ ├── reflect_dynamic.go │ │ ├── reflect_extension.go │ │ ├── reflect_json_number.go │ │ ├── reflect_json_raw_message.go │ │ ├── reflect_map.go │ │ ├── reflect_marshaler.go │ │ ├── reflect_native.go │ │ ├── reflect_optional.go │ │ ├── reflect_slice.go │ │ ├── reflect_struct_decoder.go │ │ ├── reflect_struct_encoder.go │ │ ├── stream.go │ │ ├── stream_float.go │ │ ├── stream_int.go │ │ ├── stream_str.go │ │ └── test.sh ├── looplab │ └── eventhorizon │ │ ├── .gitignore │ │ ├── AUTHORS │ │ ├── CHANGES.md │ │ ├── CODE_OF_CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── Gopkg.lock │ │ ├── Gopkg.toml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── PULL_REQUEST_TEMPLATE.md │ │ ├── README.md │ │ ├── aggregate.go │ │ ├── command.go │ │ ├── commandhandler.go │ │ ├── context.go │ │ ├── entity.go │ │ ├── event.go │ │ ├── eventbus.go │ │ ├── eventhandler.go │ │ ├── eventstore.go │ │ ├── matcher.go │ │ ├── mocks │ │ ├── mocks.go │ │ └── testutils.go │ │ ├── publisher.go │ │ ├── publisher │ │ └── local │ │ │ └── publisher.go │ │ ├── repo.go │ │ ├── uuid.go │ │ └── wercker.yml ├── magiconair │ └── properties │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── decode.go │ │ ├── doc.go │ │ ├── integrate.go │ │ ├── lex.go │ │ ├── load.go │ │ ├── parser.go │ │ ├── properties.go │ │ └── rangecheck.go ├── mattn │ ├── go-colorable │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── colorable_appengine.go │ │ ├── colorable_others.go │ │ ├── colorable_windows.go │ │ └── noncolorable.go │ ├── go-isatty │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── doc.go │ │ ├── isatty_appengine.go │ │ ├── isatty_bsd.go │ │ ├── isatty_linux.go │ │ ├── isatty_linux_ppc64x.go │ │ ├── isatty_others.go │ │ ├── isatty_solaris.go │ │ └── isatty_windows.go │ └── go-sqlite3 │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── backup.go │ │ ├── callback.go │ │ ├── doc.go │ │ ├── error.go │ │ ├── sqlite3-binding.c │ │ ├── sqlite3-binding.h │ │ ├── sqlite3.go │ │ ├── sqlite3_context.go │ │ ├── sqlite3_func_crypt.go │ │ ├── sqlite3_go18.go │ │ ├── sqlite3_libsqlite3.go │ │ ├── sqlite3_load_extension.go │ │ ├── sqlite3_load_extension_omit.go │ │ ├── sqlite3_opt_allow_uri_authority.go │ │ ├── sqlite3_opt_app_armor.go │ │ ├── sqlite3_opt_foreign_keys.go │ │ ├── sqlite3_opt_fts5.go │ │ ├── sqlite3_opt_icu.go │ │ ├── sqlite3_opt_introspect.go │ │ ├── sqlite3_opt_json1.go │ │ ├── sqlite3_opt_secure_delete.go │ │ ├── sqlite3_opt_secure_delete_fast.go │ │ ├── sqlite3_opt_stat4.go │ │ ├── sqlite3_opt_unlock_notify.c │ │ ├── sqlite3_opt_unlock_notify.go │ │ ├── sqlite3_opt_userauth.go │ │ ├── sqlite3_opt_userauth_omit.go │ │ ├── sqlite3_opt_vacuum_full.go │ │ ├── sqlite3_opt_vacuum_incr.go │ │ ├── sqlite3_opt_vtable.go │ │ ├── sqlite3_other.go │ │ ├── sqlite3_solaris.go │ │ ├── sqlite3_trace.go │ │ ├── sqlite3_type.go │ │ ├── sqlite3_usleep_windows.go │ │ ├── sqlite3_windows.go │ │ ├── sqlite3ext.h │ │ └── static_mock.go ├── mitchellh │ └── mapstructure │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── decode_hooks.go │ │ ├── error.go │ │ ├── go.mod │ │ └── mapstructure.go ├── modern-go │ ├── concurrent │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── executor.go │ │ ├── go_above_19.go │ │ ├── go_below_19.go │ │ ├── log.go │ │ ├── test.sh │ │ └── unbounded_executor.go │ └── reflect2 │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── Gopkg.lock │ │ ├── Gopkg.toml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── go_above_17.go │ │ ├── go_above_19.go │ │ ├── go_below_17.go │ │ ├── go_below_19.go │ │ ├── reflect2.go │ │ ├── reflect2_amd64.s │ │ ├── reflect2_kind.go │ │ ├── relfect2_386.s │ │ ├── relfect2_amd64p32.s │ │ ├── relfect2_arm.s │ │ ├── relfect2_arm64.s │ │ ├── relfect2_mips64x.s │ │ ├── relfect2_mipsx.s │ │ ├── relfect2_ppc64x.s │ │ ├── relfect2_s390x.s │ │ ├── safe_field.go │ │ ├── safe_map.go │ │ ├── safe_slice.go │ │ ├── safe_struct.go │ │ ├── safe_type.go │ │ ├── test.sh │ │ ├── type_map.go │ │ ├── unsafe_array.go │ │ ├── unsafe_eface.go │ │ ├── unsafe_field.go │ │ ├── unsafe_iface.go │ │ ├── unsafe_link.go │ │ ├── unsafe_map.go │ │ ├── unsafe_ptr.go │ │ ├── unsafe_slice.go │ │ ├── unsafe_struct.go │ │ └── unsafe_type.go ├── pelletier │ └── go-toml │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── benchmark.json │ │ ├── benchmark.sh │ │ ├── benchmark.toml │ │ ├── benchmark.yml │ │ ├── doc.go │ │ ├── example-crlf.toml │ │ ├── example.toml │ │ ├── fuzz.go │ │ ├── fuzz.sh │ │ ├── keysparsing.go │ │ ├── lexer.go │ │ ├── marshal.go │ │ ├── marshal_test.toml │ │ ├── parser.go │ │ ├── position.go │ │ ├── test.sh │ │ ├── token.go │ │ ├── toml.go │ │ ├── tomltree_create.go │ │ └── tomltree_write.go ├── pmezard │ └── go-difflib │ │ ├── LICENSE │ │ └── difflib │ │ └── difflib.go ├── spacemonkeygo │ ├── openssl │ │ ├── .gitignore │ │ ├── AUTHORS │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bio.go │ │ ├── build.go │ │ ├── build_static.go │ │ ├── cert.go │ │ ├── ciphers.go │ │ ├── ciphers_gcm.go │ │ ├── conn.go │ │ ├── ctx.go │ │ ├── dh.go │ │ ├── dhparam.go │ │ ├── digest.go │ │ ├── engine.go │ │ ├── fips.go │ │ ├── go.mod │ │ ├── go.sum │ │ ├── hmac.go │ │ ├── hostname.c │ │ ├── hostname.go │ │ ├── http.go │ │ ├── init.go │ │ ├── init_posix.go │ │ ├── init_windows.go │ │ ├── key.go │ │ ├── mapping.go │ │ ├── md4.go │ │ ├── md5.go │ │ ├── net.go │ │ ├── nid.go │ │ ├── pem.go │ │ ├── sha1.go │ │ ├── sha256.go │ │ ├── shim.c │ │ ├── shim.h │ │ ├── sni.c │ │ ├── ssl.go │ │ ├── tickets.go │ │ └── utils │ │ │ ├── errors.go │ │ │ └── future.go │ └── spacelog │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── capture.go │ │ ├── capture_ae.go │ │ ├── capture_linux.go │ │ ├── capture_other.go │ │ ├── capture_solaris.go │ │ ├── capture_windows.go │ │ ├── collection.go │ │ ├── convenience.go │ │ ├── doc.go │ │ ├── event.go │ │ ├── handler.go │ │ ├── level.go │ │ ├── logger.go │ │ ├── output.go │ │ ├── output_other.go │ │ ├── output_windows.go │ │ ├── setup.go │ │ ├── sighup_appengine.go │ │ ├── sighup_other.go │ │ ├── syslog.go │ │ ├── syslog_windows.go │ │ ├── templates.go │ │ ├── templates_others.go │ │ ├── templates_windows.go │ │ └── text.go ├── spf13 │ ├── afero │ │ ├── .travis.yml │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── afero.go │ │ ├── appveyor.yml │ │ ├── basepath.go │ │ ├── cacheOnReadFs.go │ │ ├── const_bsds.go │ │ ├── const_win_unix.go │ │ ├── copyOnWriteFs.go │ │ ├── go.mod │ │ ├── httpFs.go │ │ ├── ioutil.go │ │ ├── lstater.go │ │ ├── match.go │ │ ├── mem │ │ │ ├── dir.go │ │ │ ├── dirmap.go │ │ │ └── file.go │ │ ├── memmap.go │ │ ├── os.go │ │ ├── path.go │ │ ├── readonlyfs.go │ │ ├── regexpfs.go │ │ ├── unionFile.go │ │ └── util.go │ ├── cast │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── cast.go │ │ └── caste.go │ ├── jwalterweatherman │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── default_notepad.go │ │ ├── go.mod │ │ ├── log_counter.go │ │ └── notepad.go │ ├── pflag │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bool.go │ │ ├── bool_slice.go │ │ ├── bytes.go │ │ ├── count.go │ │ ├── duration.go │ │ ├── duration_slice.go │ │ ├── flag.go │ │ ├── float32.go │ │ ├── float64.go │ │ ├── golangflag.go │ │ ├── int.go │ │ ├── int16.go │ │ ├── int32.go │ │ ├── int64.go │ │ ├── int8.go │ │ ├── int_slice.go │ │ ├── ip.go │ │ ├── ip_slice.go │ │ ├── ipmask.go │ │ ├── ipnet.go │ │ ├── string.go │ │ ├── string_array.go │ │ ├── string_slice.go │ │ ├── uint.go │ │ ├── uint16.go │ │ ├── uint32.go │ │ ├── uint64.go │ │ ├── uint8.go │ │ └── uint_slice.go │ └── viper │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── flags.go │ │ ├── go.mod │ │ ├── go.sum │ │ ├── util.go │ │ └── viper.go └── stretchr │ └── testify │ ├── LICENSE │ └── assert │ ├── assertion_format.go │ ├── assertion_format.go.tmpl │ ├── assertion_forward.go │ ├── assertion_forward.go.tmpl │ ├── assertions.go │ ├── doc.go │ ├── errors.go │ ├── forward_assertions.go │ └── http_assertions.go ├── golang.org └── x │ ├── sys │ ├── AUTHORS │ ├── CONTRIBUTORS │ ├── LICENSE │ ├── PATENTS │ └── unix │ │ ├── .gitignore │ │ ├── README.md │ │ ├── affinity_linux.go │ │ ├── aliases.go │ │ ├── asm_aix_ppc64.s │ │ ├── asm_darwin_386.s │ │ ├── asm_darwin_amd64.s │ │ ├── asm_darwin_arm.s │ │ ├── asm_darwin_arm64.s │ │ ├── asm_dragonfly_amd64.s │ │ ├── asm_freebsd_386.s │ │ ├── asm_freebsd_amd64.s │ │ ├── asm_freebsd_arm.s │ │ ├── asm_freebsd_arm64.s │ │ ├── asm_linux_386.s │ │ ├── asm_linux_amd64.s │ │ ├── asm_linux_arm.s │ │ ├── asm_linux_arm64.s │ │ ├── asm_linux_mips64x.s │ │ ├── asm_linux_mipsx.s │ │ ├── asm_linux_ppc64x.s │ │ ├── asm_linux_riscv64.s │ │ ├── asm_linux_s390x.s │ │ ├── asm_netbsd_386.s │ │ ├── asm_netbsd_amd64.s │ │ ├── asm_netbsd_arm.s │ │ ├── asm_netbsd_arm64.s │ │ ├── asm_openbsd_386.s │ │ ├── asm_openbsd_amd64.s │ │ ├── asm_openbsd_arm.s │ │ ├── asm_openbsd_arm64.s │ │ ├── asm_solaris_amd64.s │ │ ├── bluetooth_linux.go │ │ ├── cap_freebsd.go │ │ ├── constants.go │ │ ├── dev_aix_ppc.go │ │ ├── dev_aix_ppc64.go │ │ ├── dev_darwin.go │ │ ├── dev_dragonfly.go │ │ ├── dev_freebsd.go │ │ ├── dev_linux.go │ │ ├── dev_netbsd.go │ │ ├── dev_openbsd.go │ │ ├── dirent.go │ │ ├── endian_big.go │ │ ├── endian_little.go │ │ ├── env_unix.go │ │ ├── errors_freebsd_386.go │ │ ├── errors_freebsd_amd64.go │ │ ├── errors_freebsd_arm.go │ │ ├── fcntl.go │ │ ├── fcntl_darwin.go │ │ ├── fcntl_linux_32bit.go │ │ ├── gccgo.go │ │ ├── gccgo_c.c │ │ ├── gccgo_linux_amd64.go │ │ ├── ioctl.go │ │ ├── mkall.sh │ │ ├── mkerrors.sh │ │ ├── pagesize_unix.go │ │ ├── pledge_openbsd.go │ │ ├── race.go │ │ ├── race0.go │ │ ├── readdirent_getdents.go │ │ ├── readdirent_getdirentries.go │ │ ├── sockcmsg_linux.go │ │ ├── sockcmsg_unix.go │ │ ├── str.go │ │ ├── syscall.go │ │ ├── syscall_aix.go │ │ ├── syscall_aix_ppc.go │ │ ├── syscall_aix_ppc64.go │ │ ├── syscall_bsd.go │ │ ├── syscall_darwin.go │ │ ├── syscall_darwin_386.go │ │ ├── syscall_darwin_amd64.go │ │ ├── syscall_darwin_arm.go │ │ ├── syscall_darwin_arm64.go │ │ ├── syscall_darwin_libSystem.go │ │ ├── syscall_dragonfly.go │ │ ├── syscall_dragonfly_amd64.go │ │ ├── syscall_freebsd.go │ │ ├── syscall_freebsd_386.go │ │ ├── syscall_freebsd_amd64.go │ │ ├── syscall_freebsd_arm.go │ │ ├── syscall_freebsd_arm64.go │ │ ├── syscall_linux.go │ │ ├── syscall_linux_386.go │ │ ├── syscall_linux_amd64.go │ │ ├── syscall_linux_amd64_gc.go │ │ ├── syscall_linux_arm.go │ │ ├── syscall_linux_arm64.go │ │ ├── syscall_linux_gc.go │ │ ├── syscall_linux_gc_386.go │ │ ├── syscall_linux_gccgo_386.go │ │ ├── syscall_linux_gccgo_arm.go │ │ ├── syscall_linux_mips64x.go │ │ ├── syscall_linux_mipsx.go │ │ ├── syscall_linux_ppc64x.go │ │ ├── syscall_linux_riscv64.go │ │ ├── syscall_linux_s390x.go │ │ ├── syscall_linux_sparc64.go │ │ ├── syscall_netbsd.go │ │ ├── syscall_netbsd_386.go │ │ ├── syscall_netbsd_amd64.go │ │ ├── syscall_netbsd_arm.go │ │ ├── syscall_netbsd_arm64.go │ │ ├── syscall_openbsd.go │ │ ├── syscall_openbsd_386.go │ │ ├── syscall_openbsd_amd64.go │ │ ├── syscall_openbsd_arm.go │ │ ├── syscall_openbsd_arm64.go │ │ ├── syscall_solaris.go │ │ ├── syscall_solaris_amd64.go │ │ ├── syscall_unix.go │ │ ├── syscall_unix_gc.go │ │ ├── syscall_unix_gc_ppc64x.go │ │ ├── timestruct.go │ │ ├── unveil_openbsd.go │ │ ├── xattr_bsd.go │ │ ├── zerrors_aix_ppc.go │ │ ├── zerrors_aix_ppc64.go │ │ ├── zerrors_darwin_386.go │ │ ├── zerrors_darwin_amd64.go │ │ ├── zerrors_darwin_arm.go │ │ ├── zerrors_darwin_arm64.go │ │ ├── zerrors_dragonfly_amd64.go │ │ ├── zerrors_freebsd_386.go │ │ ├── zerrors_freebsd_amd64.go │ │ ├── zerrors_freebsd_arm.go │ │ ├── zerrors_freebsd_arm64.go │ │ ├── zerrors_linux_386.go │ │ ├── zerrors_linux_amd64.go │ │ ├── zerrors_linux_arm.go │ │ ├── zerrors_linux_arm64.go │ │ ├── zerrors_linux_mips.go │ │ ├── zerrors_linux_mips64.go │ │ ├── zerrors_linux_mips64le.go │ │ ├── zerrors_linux_mipsle.go │ │ ├── zerrors_linux_ppc64.go │ │ ├── zerrors_linux_ppc64le.go │ │ ├── zerrors_linux_riscv64.go │ │ ├── zerrors_linux_s390x.go │ │ ├── zerrors_linux_sparc64.go │ │ ├── zerrors_netbsd_386.go │ │ ├── zerrors_netbsd_amd64.go │ │ ├── zerrors_netbsd_arm.go │ │ ├── zerrors_netbsd_arm64.go │ │ ├── zerrors_openbsd_386.go │ │ ├── zerrors_openbsd_amd64.go │ │ ├── zerrors_openbsd_arm.go │ │ ├── zerrors_openbsd_arm64.go │ │ ├── zerrors_solaris_amd64.go │ │ ├── zptrace386_linux.go │ │ ├── zptracearm_linux.go │ │ ├── zptracemips_linux.go │ │ ├── zptracemipsle_linux.go │ │ ├── zsyscall_aix_ppc.go │ │ ├── zsyscall_aix_ppc64.go │ │ ├── zsyscall_aix_ppc64_gc.go │ │ ├── zsyscall_aix_ppc64_gccgo.go │ │ ├── zsyscall_darwin_386.1_11.go │ │ ├── zsyscall_darwin_386.go │ │ ├── zsyscall_darwin_386.s │ │ ├── zsyscall_darwin_amd64.1_11.go │ │ ├── zsyscall_darwin_amd64.go │ │ ├── zsyscall_darwin_amd64.s │ │ ├── zsyscall_darwin_arm.1_11.go │ │ ├── zsyscall_darwin_arm.go │ │ ├── zsyscall_darwin_arm.s │ │ ├── zsyscall_darwin_arm64.1_11.go │ │ ├── zsyscall_darwin_arm64.go │ │ ├── zsyscall_darwin_arm64.s │ │ ├── zsyscall_dragonfly_amd64.go │ │ ├── zsyscall_freebsd_386.go │ │ ├── zsyscall_freebsd_amd64.go │ │ ├── zsyscall_freebsd_arm.go │ │ ├── zsyscall_freebsd_arm64.go │ │ ├── zsyscall_linux_386.go │ │ ├── zsyscall_linux_amd64.go │ │ ├── zsyscall_linux_arm.go │ │ ├── zsyscall_linux_arm64.go │ │ ├── zsyscall_linux_mips.go │ │ ├── zsyscall_linux_mips64.go │ │ ├── zsyscall_linux_mips64le.go │ │ ├── zsyscall_linux_mipsle.go │ │ ├── zsyscall_linux_ppc64.go │ │ ├── zsyscall_linux_ppc64le.go │ │ ├── zsyscall_linux_riscv64.go │ │ ├── zsyscall_linux_s390x.go │ │ ├── zsyscall_linux_sparc64.go │ │ ├── zsyscall_netbsd_386.go │ │ ├── zsyscall_netbsd_amd64.go │ │ ├── zsyscall_netbsd_arm.go │ │ ├── zsyscall_netbsd_arm64.go │ │ ├── zsyscall_openbsd_386.go │ │ ├── zsyscall_openbsd_amd64.go │ │ ├── zsyscall_openbsd_arm.go │ │ ├── zsyscall_openbsd_arm64.go │ │ ├── zsyscall_solaris_amd64.go │ │ ├── zsysctl_openbsd_386.go │ │ ├── zsysctl_openbsd_amd64.go │ │ ├── zsysctl_openbsd_arm.go │ │ ├── zsysctl_openbsd_arm64.go │ │ ├── zsysnum_darwin_386.go │ │ ├── zsysnum_darwin_amd64.go │ │ ├── zsysnum_darwin_arm.go │ │ ├── zsysnum_darwin_arm64.go │ │ ├── zsysnum_dragonfly_amd64.go │ │ ├── zsysnum_freebsd_386.go │ │ ├── zsysnum_freebsd_amd64.go │ │ ├── zsysnum_freebsd_arm.go │ │ ├── zsysnum_freebsd_arm64.go │ │ ├── zsysnum_linux_386.go │ │ ├── zsysnum_linux_amd64.go │ │ ├── zsysnum_linux_arm.go │ │ ├── zsysnum_linux_arm64.go │ │ ├── zsysnum_linux_mips.go │ │ ├── zsysnum_linux_mips64.go │ │ ├── zsysnum_linux_mips64le.go │ │ ├── zsysnum_linux_mipsle.go │ │ ├── zsysnum_linux_ppc64.go │ │ ├── zsysnum_linux_ppc64le.go │ │ ├── zsysnum_linux_riscv64.go │ │ ├── zsysnum_linux_s390x.go │ │ ├── zsysnum_linux_sparc64.go │ │ ├── zsysnum_netbsd_386.go │ │ ├── zsysnum_netbsd_amd64.go │ │ ├── zsysnum_netbsd_arm.go │ │ ├── zsysnum_netbsd_arm64.go │ │ ├── zsysnum_openbsd_386.go │ │ ├── zsysnum_openbsd_amd64.go │ │ ├── zsysnum_openbsd_arm.go │ │ ├── zsysnum_openbsd_arm64.go │ │ ├── ztypes_aix_ppc.go │ │ ├── ztypes_aix_ppc64.go │ │ ├── ztypes_darwin_386.go │ │ ├── ztypes_darwin_amd64.go │ │ ├── ztypes_darwin_arm.go │ │ ├── ztypes_darwin_arm64.go │ │ ├── ztypes_dragonfly_amd64.go │ │ ├── ztypes_freebsd_386.go │ │ ├── ztypes_freebsd_amd64.go │ │ ├── ztypes_freebsd_arm.go │ │ ├── ztypes_freebsd_arm64.go │ │ ├── ztypes_linux_386.go │ │ ├── ztypes_linux_amd64.go │ │ ├── ztypes_linux_arm.go │ │ ├── ztypes_linux_arm64.go │ │ ├── ztypes_linux_mips.go │ │ ├── ztypes_linux_mips64.go │ │ ├── ztypes_linux_mips64le.go │ │ ├── ztypes_linux_mipsle.go │ │ ├── ztypes_linux_ppc64.go │ │ ├── ztypes_linux_ppc64le.go │ │ ├── ztypes_linux_riscv64.go │ │ ├── ztypes_linux_s390x.go │ │ ├── ztypes_linux_sparc64.go │ │ ├── ztypes_netbsd_386.go │ │ ├── ztypes_netbsd_amd64.go │ │ ├── ztypes_netbsd_arm.go │ │ ├── ztypes_netbsd_arm64.go │ │ ├── ztypes_openbsd_386.go │ │ ├── ztypes_openbsd_amd64.go │ │ ├── ztypes_openbsd_arm.go │ │ ├── ztypes_openbsd_arm64.go │ │ └── ztypes_solaris_amd64.go │ └── text │ ├── AUTHORS │ ├── CONTRIBUTORS │ ├── LICENSE │ ├── PATENTS │ ├── transform │ └── transform.go │ └── unicode │ └── norm │ ├── composition.go │ ├── forminfo.go │ ├── input.go │ ├── iter.go │ ├── normalize.go │ ├── readwriter.go │ ├── tables10.0.0.go │ ├── tables9.0.0.go │ ├── transform.go │ └── trie.go ├── gopkg.in └── yaml.v2 │ ├── .travis.yml │ ├── LICENSE │ ├── LICENSE.libyaml │ ├── NOTICE │ ├── README.md │ ├── apic.go │ ├── decode.go │ ├── emitterc.go │ ├── encode.go │ ├── go.mod │ ├── parserc.go │ ├── readerc.go │ ├── resolve.go │ ├── scannerc.go │ ├── sorter.go │ ├── writerc.go │ ├── yaml.go │ ├── yamlh.go │ └── yamlprivateh.go └── modules.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/Dockerfile -------------------------------------------------------------------------------- /FLAGS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/FLAGS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/LICENSE -------------------------------------------------------------------------------- /Mockup-Datasets/EX.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/Mockup-Datasets/EX.log -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.56" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/Chassis/Chassis.Embedded.1/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "1.61" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/Chassis/System.Embedded.1/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "1.63" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/Chassis/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.77" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/EventService/Subscriptions/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.90" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/EventService/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.70" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/JSONSchemas/AccountService/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.75" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/JSONSchemas/Chassis.v1_0_0/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "1.52" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/JSONSchemas/Chassis.v1_0_1/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.73" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/JSONSchemas/Chassis.v1_0_2/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.74" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/JSONSchemas/Chassis/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.88" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/JSONSchemas/ChassisCollection/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.80" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/JSONSchemas/ComputerSystem/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.75" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/JSONSchemas/EthernetInterface/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.72" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/JSONSchemas/Event.v1_0_0/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "1.01" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/JSONSchemas/Event.v1_0_2/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.74" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/JSONSchemas/Event/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.74" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/JSONSchemas/EventDestination/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "1.55" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/JSONSchemas/EventService/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.81" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/JSONSchemas/IPAddresses.v1_0_0/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.81" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/JSONSchemas/IPAddresses.v1_0_2/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.85" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/JSONSchemas/JsonSchemaFile/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.73" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/JSONSchemas/LogEntry.v1_0_0/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.73" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/JSONSchemas/LogEntry.v1_0_2/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.84" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/JSONSchemas/LogEntry/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.74" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/JSONSchemas/LogEntryCollection/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.74" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/JSONSchemas/LogService.v1_0_0/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.87" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/JSONSchemas/LogService.v1_0_2/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.71" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/JSONSchemas/LogService/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.76" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/JSONSchemas/Manager.v1_0_0/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.74" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/JSONSchemas/Manager.v1_0_1/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.72" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/JSONSchemas/Manager.v1_0_2/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.92" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/JSONSchemas/Manager/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "1.66" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/JSONSchemas/ManagerAccount/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.74" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/JSONSchemas/ManagerCollection/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.71" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/JSONSchemas/Message.v1_0_0/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.78" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/JSONSchemas/Message.v1_0_2/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.70" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/JSONSchemas/Message/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.81" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/JSONSchemas/MessageRegistry/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.83" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/JSONSchemas/OemManager.v1_0_0/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.73" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/JSONSchemas/OemManager/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.74" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/JSONSchemas/Power.v1_0_0/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.73" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/JSONSchemas/Power.v1_0_1/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.73" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/JSONSchemas/Power.v1_0_2/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.81" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/JSONSchemas/Power/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.73" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/JSONSchemas/Privileges.v1_0_0/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.73" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/JSONSchemas/Privileges.v1_0_2/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.90" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/JSONSchemas/Processor.v1_0_0/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.93" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/JSONSchemas/Processor.v1_0_2/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.79" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/JSONSchemas/Processor/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.70" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/JSONSchemas/Redundancy.v1_0_0/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.70" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/JSONSchemas/Redundancy.v1_0_1/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.73" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/JSONSchemas/Redundancy.v1_0_2/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "1.89" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/JSONSchemas/Redundancy/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.80" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/JSONSchemas/Resource.v1_0_0/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.73" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/JSONSchemas/Resource.v1_0_2/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.87" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/JSONSchemas/Resource/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.74" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/JSONSchemas/Role.v1_0_0/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "1.52" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/JSONSchemas/Role.v1_0_2/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.80" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/JSONSchemas/Role/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "1.18" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/JSONSchemas/RoleCollection/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.81" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/JSONSchemas/SerialInterface/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.73" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/JSONSchemas/ServiceRoot.v1_0_0/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.70" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/JSONSchemas/ServiceRoot.v1_0_2/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.75" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/JSONSchemas/ServiceRoot/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.82" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/JSONSchemas/Session.v1_0_0/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.89" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/JSONSchemas/Session.v1_0_2/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.73" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/JSONSchemas/Session/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.76" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/JSONSchemas/SessionCollection/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "1.09" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/JSONSchemas/SessionService/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.74" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/JSONSchemas/Settings.v1_0_0/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.75" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/JSONSchemas/Settings.v1_0_2/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.85" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/JSONSchemas/Settings/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.73" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/JSONSchemas/SimpleStorage/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.74" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/JSONSchemas/Task.v1_0_0/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.71" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/JSONSchemas/Task.v1_0_2/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.81" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/JSONSchemas/Task/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.75" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/JSONSchemas/TaskCollection/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.73" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/JSONSchemas/TaskService.v1_0_0/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.73" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/JSONSchemas/TaskService.v1_0_2/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.74" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/JSONSchemas/TaskService/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.72" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/JSONSchemas/Thermal.v1_0_0/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.72" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/JSONSchemas/Thermal.v1_0_1/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.72" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/JSONSchemas/Thermal.v1_0_2/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "1.02" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/JSONSchemas/Thermal/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "1.17" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/JSONSchemas/VirtualMedia/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.73" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/JSONSchemas/odata.4.0.0/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.84" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/JSONSchemas/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.87" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/Managers/iDRAC.Embedded.1/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.68" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/Managers/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.71" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/Registries/BaseMessages/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.71" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/Registries/Messages/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.70" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/Registries/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.68" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/Schemas/AccountService.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.72" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/Schemas/Chassis.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.77" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/Schemas/Chassis.v1_0_0.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.74" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/Schemas/Chassis.v1_0_1.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.84" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/Schemas/Chassis.v1_0_2.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.98" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/Schemas/ChassisCollection.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.73" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/Schemas/ComputerSystem.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.69" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/Schemas/EthernetInterface.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.74" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/Schemas/Event.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.77" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/Schemas/Event.v1_0_0.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.72" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/Schemas/Event.v1_0_2.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.81" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/Schemas/EventDestination.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.80" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/Schemas/EventService.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.77" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/Schemas/JsonSchemaFile.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.73" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/Schemas/LogEntry.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.78" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/Schemas/LogEntry.v1_0_0.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.75" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/Schemas/LogEntry.v1_0_2.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "1.55" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/Schemas/LogService.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.79" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/Schemas/LogService.v1_0_0.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.83" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/Schemas/LogService.v1_0_2.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.87" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/Schemas/Manager.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.84" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/Schemas/Manager.v1_0_0.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.81" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/Schemas/Manager.v1_0_1.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.81" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/Schemas/Manager.v1_0_2.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.89" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/Schemas/ManagerAccount.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.76" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/Schemas/ManagerCollection.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.73" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/Schemas/Message.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.72" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/Schemas/Message.v1_0_0.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.74" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/Schemas/Message.v1_0_2.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.79" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/Schemas/MessageRegistry.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "1.54" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/Schemas/OemManager.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "1.10" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/Schemas/OemManager.v1_0_0.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.82" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/Schemas/Power.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.69" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/Schemas/Power.v1_0_0.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.80" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/Schemas/Power.v1_0_1.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.87" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/Schemas/Power.v1_0_2.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "1.66" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/Schemas/Privileges.v1_0_0.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.74" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/Schemas/Privileges.v1_0_2.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.81" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/Schemas/Processor.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.73" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/Schemas/Processor.v1_0_0.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.89" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/Schemas/Processor.v1_0_2.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "1.62" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/Schemas/Redundancy.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.84" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/Schemas/Redundancy.v1_0_0.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.74" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/Schemas/Redundancy.v1_0_1.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.83" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/Schemas/Redundancy.v1_0_2.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.72" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/Schemas/Resource.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.73" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/Schemas/Resource.v1_0_0.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.73" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/Schemas/Resource.v1_0_2.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.79" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/Schemas/Role.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.97" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/Schemas/Role.v1_0_0.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.77" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/Schemas/Role.v1_0_2.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.73" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/Schemas/RoleCollection.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.72" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/Schemas/SerialInterface.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.74" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/Schemas/ServiceRoot.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.73" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/Schemas/Session.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "1.69" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/Schemas/Session.v1_0_0.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.78" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/Schemas/Session.v1_0_2.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "1.00" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/Schemas/SessionCollection.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.73" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/Schemas/SessionService.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.71" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/Schemas/Settings.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.72" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/Schemas/Settings.v1_0_0.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.86" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/Schemas/Settings.v1_0_2.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.73" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/Schemas/SimpleStorage.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.76" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/Schemas/Task.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.70" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/Schemas/Task.v1_0_0.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.83" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/Schemas/Task.v1_0_2.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "1.50" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/Schemas/TaskCollection.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.74" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/Schemas/TaskService.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.84" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/Schemas/Thermal.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "1.57" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/Schemas/Thermal.v1_0_0.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.78" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/Schemas/Thermal.v1_0_1.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.76" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/Schemas/Thermal.v1_0_2.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.78" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/Schemas/VirtualMedia.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.72" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/Schemas/odata.4.0.0.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.86" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/SessionService/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "1.50" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/Sessions/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.64" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/Systems/System.Embedded.1/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "2.18" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/Systems/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.70" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/TaskService/Tasks/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.68" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/TaskService/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.67" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/odata/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.60" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-FC630-TimeInfo/redfish/v1/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.59" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "3.37" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/Chassis/System.Embedded.1/Power/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "9.45" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/Chassis/System.Embedded.1/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.76" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/Chassis/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.21" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/EventService/Subscriptions/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "6.67" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/EventService/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.87" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/JSONSchemas/AccountService/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.14" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/JSONSchemas/AttributeRegistry/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.03" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/JSONSchemas/Bios.v1_0_0/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.68" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/JSONSchemas/Bios/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.26" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/JSONSchemas/Chassis.v1_0_0/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "6.82" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/JSONSchemas/Chassis.v1_0_1/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "6.96" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/JSONSchemas/Chassis.v1_0_2/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.58" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/JSONSchemas/Chassis/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "6.82" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/JSONSchemas/ChassisCollection/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.39" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/JSONSchemas/ComputerSystem/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.31" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/JSONSchemas/DellBootSources/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.37" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/JSONSchemas/DellComputerSystem/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.62" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/JSONSchemas/DellJob.v1_0_0/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.16" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/JSONSchemas/DellJob/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.79" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/JSONSchemas/DellJobCollection/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.88" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/JSONSchemas/DellManager.v1_0_0/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.27" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/JSONSchemas/DellManager/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.40" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/JSONSchemas/EthernetInterface/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.06" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/JSONSchemas/Event.v1_0_0/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "6.56" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/JSONSchemas/Event.v1_0_2/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "6.54" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/JSONSchemas/Event/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.54" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/JSONSchemas/EventDestination/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "8.08" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/JSONSchemas/EventService.v1_0_0/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.66" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/JSONSchemas/EventService.v1_0_2/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "6.66" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/JSONSchemas/EventService/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.32" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/JSONSchemas/IPAddresses.v1_0_0/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.09" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/JSONSchemas/IPAddresses.v1_0_2/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.07" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/JSONSchemas/JsonSchemaFile/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.92" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/JSONSchemas/LogEntry.v1_0_0/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.14" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/JSONSchemas/LogEntry.v1_0_2/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "8.07" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/JSONSchemas/LogEntry/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.74" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/JSONSchemas/LogEntryCollection/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "8.20" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/JSONSchemas/LogService.v1_0_0/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.25" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/JSONSchemas/LogService.v1_0_2/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.59" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/JSONSchemas/LogService/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.46" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/JSONSchemas/Manager.v1_0_0/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "6.90" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/JSONSchemas/Manager.v1_0_1/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.41" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/JSONSchemas/Manager.v1_0_2/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.09" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/JSONSchemas/Manager/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.13" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/JSONSchemas/ManagerAccount/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "6.73" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/JSONSchemas/ManagerCollection/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.51" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/JSONSchemas/Message.v1_0_0/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.15" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/JSONSchemas/Message.v1_0_2/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.36" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/JSONSchemas/Message/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "6.92" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/JSONSchemas/MessageRegistry/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.07" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/JSONSchemas/MessageRegistryFile/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "8.58" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/JSONSchemas/OemManager.v1_0_0/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.91" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/JSONSchemas/OemManager.v1_1_0/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "8.06" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/JSONSchemas/OemManager/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.14" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/JSONSchemas/Power.v1_0_0/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.72" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/JSONSchemas/Power.v1_0_1/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.66" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/JSONSchemas/Power.v1_0_2/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.30" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/JSONSchemas/Power/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "8.46" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/JSONSchemas/Privileges.v1_0_0/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.26" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/JSONSchemas/Privileges.v1_0_2/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.60" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/JSONSchemas/Processor.v1_0_0/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.37" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/JSONSchemas/Processor.v1_0_2/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.78" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/JSONSchemas/Processor/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.81" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/JSONSchemas/ProcessorCollection/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.90" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/JSONSchemas/Redundancy.v1_0_0/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.29" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/JSONSchemas/Redundancy.v1_0_1/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "8.39" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/JSONSchemas/Redundancy.v1_0_2/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "6.94" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/JSONSchemas/Redundancy/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.34" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/JSONSchemas/Resource.v1_0_0/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.42" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/JSONSchemas/Resource.v1_0_2/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.62" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/JSONSchemas/Resource/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.24" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/JSONSchemas/Role.v1_0_0/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.03" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/JSONSchemas/Role.v1_0_2/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.30" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/JSONSchemas/Role/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.12" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/JSONSchemas/RoleCollection/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "8.02" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/JSONSchemas/SecureBoot.v1_0_0/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.07" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/JSONSchemas/SecureBoot/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.20" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/JSONSchemas/SerialInterface/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.29" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/JSONSchemas/ServiceRoot.v1_0_0/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.78" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/JSONSchemas/ServiceRoot.v1_0_2/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "6.71" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/JSONSchemas/ServiceRoot/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "6.66" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/JSONSchemas/Session.v1_0_0/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.43" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/JSONSchemas/Session.v1_0_2/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.21" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/JSONSchemas/Session/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.15" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/JSONSchemas/SessionCollection/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.28" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/JSONSchemas/SessionService/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "6.77" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/JSONSchemas/Settings.v1_0_0/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.17" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/JSONSchemas/Settings.v1_0_2/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "6.99" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/JSONSchemas/Settings/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.02" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/JSONSchemas/SimpleStorage/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "6.78" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/JSONSchemas/Task.v1_0_0/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.96" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/JSONSchemas/Task.v1_0_2/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "6.83" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/JSONSchemas/Task/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.01" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/JSONSchemas/TaskCollection/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "6.68" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/JSONSchemas/TaskService.v1_0_0/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.85" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/JSONSchemas/TaskService.v1_0_2/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "6.81" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/JSONSchemas/TaskService/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "6.71" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/JSONSchemas/Thermal.v1_0_0/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.26" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/JSONSchemas/Thermal.v1_0_1/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.41" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/JSONSchemas/Thermal.v1_0_2/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.71" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/JSONSchemas/Thermal/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "6.92" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/JSONSchemas/VirtualMedia.v1_0_0/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.33" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/JSONSchemas/VirtualMedia.v1_0_2/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "6.90" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/JSONSchemas/VirtualMedia/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "6.77" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/JSONSchemas/odata.4.0.0/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "8.00" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/JSONSchemas/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.42" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/Managers/iDRAC.Embedded.1/Jobs/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "6.85" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/Managers/iDRAC.Embedded.1/Roles/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "6.92" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/Managers/iDRAC.Embedded.1/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "6.74" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/Managers/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.03" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/Registries/BaseMessages/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.75" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/Registries/Messages/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.24" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/Registries/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "6.81" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/Schemas/AccountService.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "6.89" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/Schemas/AttributeRegistry.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "8.40" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/Schemas/Bios.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.64" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/Schemas/Bios.v1_0_0.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.41" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/Schemas/Chassis.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.49" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/Schemas/Chassis.v1_0_0.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.08" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/Schemas/Chassis.v1_0_1.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.57" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/Schemas/Chassis.v1_0_2.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "8.34" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/Schemas/ChassisCollection.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.51" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/Schemas/ComputerSystem.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.16" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/Schemas/DellBootSources.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "6.95" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/Schemas/DellComputerSystem.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.35" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/Schemas/DellJob.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "6.89" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/Schemas/DellJob.v1_0_0.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.71" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/Schemas/DellJobCollection.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.43" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/Schemas/DellManager.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.43" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/Schemas/DellManager.v1_0_0.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "6.95" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/Schemas/EthernetInterface.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.39" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/Schemas/Event.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.01" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/Schemas/Event.v1_0_0.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.62" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/Schemas/Event.v1_0_2.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "6.89" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/Schemas/EventDestination.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.22" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/Schemas/EventService.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.37" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/Schemas/IPAddresses.v1_0_0.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.15" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/Schemas/IPAddresses.v1_0_2.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "6.89" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/Schemas/JsonSchemaFile.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.76" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/Schemas/LogEntry.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.35" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/Schemas/LogEntry.v1_0_0.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.13" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/Schemas/LogEntry.v1_0_2.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.09" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/Schemas/LogEntryCollection.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.13" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/Schemas/LogService.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.28" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/Schemas/LogService.v1_0_0.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.05" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/Schemas/LogService.v1_0_2.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.31" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/Schemas/Manager.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "8.16" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/Schemas/Manager.v1_0_0.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "8.11" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/Schemas/Manager.v1_0_1.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "8.39" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/Schemas/Manager.v1_0_2.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.63" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/Schemas/ManagerAccount.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "8.21" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/Schemas/ManagerCollection.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "8.41" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/Schemas/Message.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.95" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/Schemas/Message.v1_0_0.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.37" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/Schemas/Message.v1_0_2.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.99" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/Schemas/MessageRegistry.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.79" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/Schemas/OemManager.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.21" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/Schemas/OemManager.v1_0_0.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.22" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/Schemas/OemManager.v1_1_0.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.62" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/Schemas/Power.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.23" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/Schemas/Power.v1_0_0.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.52" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/Schemas/Power.v1_0_1.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "8.61" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/Schemas/Power.v1_0_2.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.55" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/Schemas/Privileges.v1_0_0.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.12" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/Schemas/Privileges.v1_0_2.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "6.95" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/Schemas/Processor.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.26" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/Schemas/Processor.v1_0_0.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.43" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/Schemas/Processor.v1_0_2.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.46" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/Schemas/Redundancy.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.27" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/Schemas/Redundancy.v1_0_0.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.31" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/Schemas/Redundancy.v1_0_1.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.69" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/Schemas/Redundancy.v1_0_2.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.46" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/Schemas/Resource.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.63" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/Schemas/Resource.v1_0_0.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.70" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/Schemas/Resource.v1_0_2.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.15" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/Schemas/Role.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "8.33" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/Schemas/Role.v1_0_0.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.04" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/Schemas/Role.v1_0_2.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.99" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/Schemas/RoleCollection.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.14" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/Schemas/SecureBoot.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "8.04" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/Schemas/SecureBoot.v1_0_0.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.82" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/Schemas/SerialInterface.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "6.98" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/Schemas/ServiceRoot.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.31" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/Schemas/ServiceRoot.v1_0_0.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.36" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/Schemas/ServiceRoot.v1_0_2.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.10" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/Schemas/Session.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "6.65" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/Schemas/Session.v1_0_0.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "6.71" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/Schemas/Session.v1_0_2.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.70" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/Schemas/SessionCollection.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.67" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/Schemas/SessionService.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.33" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/Schemas/Settings.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.17" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/Schemas/Settings.v1_0_0.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.63" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/Schemas/Settings.v1_0_2.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "6.55" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/Schemas/SimpleStorage.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.79" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/Schemas/Task.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "6.69" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/Schemas/Task.v1_0_0.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.09" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/Schemas/Task.v1_0_2.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.18" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/Schemas/TaskCollection.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.90" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/Schemas/TaskService.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.31" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/Schemas/TaskService.v1_0_0.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.87" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/Schemas/TaskService.v1_0_2.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.28" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/Schemas/Thermal.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.07" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/Schemas/Thermal.v1_0_0.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.00" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/Schemas/Thermal.v1_0_1.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.69" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/Schemas/Thermal.v1_0_2.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "8.19" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/Schemas/VirtualMedia.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.35" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/Schemas/odata.4.0.0.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.31" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/SessionService/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.16" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/Sessions/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "6.96" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/Systems/System.Embedded.1/Bios/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.05" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/Systems/System.Embedded.1/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.95" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/Systems/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.29" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/TaskService/Tasks/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.09" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/TaskService/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "7.67" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/odata/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "4.29" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R720-TimeInfo/redfish/v1/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "4.00" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "1.08" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/Chassis/System.Embedded.1/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "4.92" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/Chassis/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.45" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/EventService/Subscriptions/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.43" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/EventService/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.50" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/JSONSchemas/AccountService/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.47" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/JSONSchemas/AttributeRegistry/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.52" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/JSONSchemas/Bios.v1_0_0/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.45" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/JSONSchemas/Bios/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.46" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/JSONSchemas/Chassis.v1_0_0/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.50" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/JSONSchemas/Chassis.v1_0_1/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.49" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/JSONSchemas/Chassis.v1_0_2/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.49" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/JSONSchemas/Chassis.v1_1_0/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.46" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/JSONSchemas/Chassis.v1_1_2/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.50" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/JSONSchemas/Chassis.v1_2_0/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.46" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/JSONSchemas/Chassis/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.59" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/JSONSchemas/ChassisCollection/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.46" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/JSONSchemas/ComputerSystem/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.56" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/JSONSchemas/DellAttributes/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.45" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/JSONSchemas/DellBootSources/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.50" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/JSONSchemas/DellCertificate/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.47" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/JSONSchemas/DellComputerSystem/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.51" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/JSONSchemas/DellJob.v1_0_0/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.45" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/JSONSchemas/DellJob/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.41" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/JSONSchemas/DellJobCollection/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.45" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/JSONSchemas/DellManager.v1_0_0/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.49" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/JSONSchemas/DellManager/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.50" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/JSONSchemas/DellSecureBoot/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.46" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/JSONSchemas/DellServiceRoot/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.45" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/JSONSchemas/DellUpdateService/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.43" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/JSONSchemas/EthernetInterface/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.52" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/JSONSchemas/Event.v1_0_0/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.46" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/JSONSchemas/Event.v1_0_2/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.44" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/JSONSchemas/Event/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.49" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/JSONSchemas/EventDestination/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.48" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/JSONSchemas/EventService.v1_0_0/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.43" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/JSONSchemas/EventService.v1_0_2/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.50" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/JSONSchemas/EventService/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.46" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/JSONSchemas/IPAddresses.v1_0_0/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.46" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/JSONSchemas/IPAddresses.v1_0_2/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.44" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/JSONSchemas/JsonSchemaFile/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.54" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/JSONSchemas/LogEntry.v1_0_0/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.43" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/JSONSchemas/LogEntry.v1_0_2/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.45" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/JSONSchemas/LogEntry/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.42" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/JSONSchemas/LogEntryCollection/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.44" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/JSONSchemas/LogService.v1_0_0/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.46" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/JSONSchemas/LogService.v1_0_2/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.42" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/JSONSchemas/LogService/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.51" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/JSONSchemas/Manager.v1_0_0/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.44" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/JSONSchemas/Manager.v1_0_1/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.44" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/JSONSchemas/Manager.v1_0_2/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.49" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/JSONSchemas/Manager/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.45" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/JSONSchemas/ManagerAccount/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.49" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/JSONSchemas/ManagerCollection/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.43" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/JSONSchemas/Message.v1_0_0/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.44" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/JSONSchemas/Message.v1_0_2/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.47" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/JSONSchemas/Message/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.43" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/JSONSchemas/MessageRegistry/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.46" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/JSONSchemas/MessageRegistryFile/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.43" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/JSONSchemas/OemManager.v1_0_0/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.45" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/JSONSchemas/OemManager.v1_1_0/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.45" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/JSONSchemas/OemManager/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.46" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/JSONSchemas/Power.v1_0_0/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.43" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/JSONSchemas/Power.v1_0_1/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.42" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/JSONSchemas/Power.v1_0_2/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.44" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/JSONSchemas/Power.v1_1_0/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.41" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/JSONSchemas/Power/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.44" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/JSONSchemas/Privileges.v1_0_0/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.43" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/JSONSchemas/Privileges.v1_0_2/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.46" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/JSONSchemas/Processor.v1_0_0/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.42" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/JSONSchemas/Processor.v1_0_2/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.44" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/JSONSchemas/Processor/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.41" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/JSONSchemas/ProcessorCollection/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.43" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/JSONSchemas/Redundancy.v1_0_0/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.45" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/JSONSchemas/Redundancy.v1_0_1/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.40" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/JSONSchemas/Redundancy/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.44" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/JSONSchemas/Resource/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.48" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/JSONSchemas/Role.v1_0_0/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.45" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/JSONSchemas/Role.v1_0_2/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.42" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/JSONSchemas/Role/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.42" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/JSONSchemas/RoleCollection/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.50" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/JSONSchemas/SecureBoot/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.46" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/JSONSchemas/ServiceRoot/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.45" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/JSONSchemas/Session.v1_0_0/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.50" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/JSONSchemas/Session.v1_0_2/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.46" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/JSONSchemas/Session/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.47" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/JSONSchemas/SessionService/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.51" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/JSONSchemas/Settings/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.49" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/JSONSchemas/SimpleStorage/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.51" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/JSONSchemas/Task.v1_0_0/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.45" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/JSONSchemas/Task.v1_0_2/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.65" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/JSONSchemas/Task/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.46" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/JSONSchemas/TaskCollection/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.45" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/JSONSchemas/TaskService/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.45" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/JSONSchemas/Thermal.v1_0_0/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.45" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/JSONSchemas/Thermal.v1_0_1/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.44" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/JSONSchemas/Thermal.v1_0_2/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.49" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/JSONSchemas/Thermal/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.46" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/JSONSchemas/UpdateService/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.47" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/JSONSchemas/VirtualMedia/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.46" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/JSONSchemas/odata.4.0.0/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.49" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/JSONSchemas/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.54" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/Managers/iDRAC.Embedded.1/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.46" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/Managers/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.42" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/Registries/BaseMessages/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.47" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/Registries/Messages/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.43" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/Registries/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.45" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/Schemas/Bios.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.14" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/Schemas/Bios.v1_0_0.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.15" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/Schemas/Chassis.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.13" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/Schemas/DellJob.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.13" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/Schemas/DellManager.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.13" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/Schemas/Event.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.13" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/Schemas/Event.v1_0_0.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.15" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/Schemas/Event.v1_0_2.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.15" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/Schemas/EventService.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.14" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/Schemas/LogEntry.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.14" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/Schemas/LogService.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.13" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/Schemas/Manager.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.13" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/Schemas/Message.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.13" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/Schemas/OemManager.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.14" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/Schemas/Power.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.13" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/Schemas/Power.v1_0_0.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.15" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/Schemas/Power.v1_0_1.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.16" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/Schemas/Power.v1_0_2.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.15" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/Schemas/Power.v1_1_0.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.17" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/Schemas/Processor.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.13" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/Schemas/Redundancy.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.16" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/Schemas/Resource.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.13" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/Schemas/Role.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.15" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/Schemas/Role.v1_0_0.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.15" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/Schemas/Role.v1_0_2.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.18" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/Schemas/SecureBoot.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.16" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/Schemas/ServiceRoot.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.18" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/Schemas/Session.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.15" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/Schemas/Settings.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.15" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/Schemas/SimpleStorage.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.14" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/Schemas/Task.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.14" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/Schemas/Task.v1_0_0.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.15" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/Schemas/Task.v1_0_2.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.13" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/Schemas/TaskService.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.15" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/Schemas/Thermal.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.30" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/Schemas/UpdateService.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.15" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/Schemas/VirtualMedia.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.13" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/Schemas/odata.4.0.0.json/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.16" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/SessionService/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.41" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/Sessions/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.47" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/Systems/System.Embedded.1/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.23" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/Systems/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.44" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/TaskService/Tasks/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.41" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/TaskService/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.46" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/UpdateService/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.42" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/odata/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.10" 3 | } -------------------------------------------------------------------------------- /Mockup-Datasets/Server-PowerEdge-R740-TimeInfo/redfish/v1/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "GET_Time": "0.15" 3 | } -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/README.md -------------------------------------------------------------------------------- /TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/TODO.txt -------------------------------------------------------------------------------- /cmd/sailfish/logging.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/cmd/sailfish/logging.go -------------------------------------------------------------------------------- /cmd/sailfish/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/cmd/sailfish/main.go -------------------------------------------------------------------------------- /cmd/sailfish/sdnotify.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/cmd/sailfish/sdnotify.go -------------------------------------------------------------------------------- /cmd/sailfish/with-ec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/cmd/sailfish/with-ec.go -------------------------------------------------------------------------------- /cmd/sailfish/with-mockup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/cmd/sailfish/with-mockup.go -------------------------------------------------------------------------------- /cmd/sailfish/with-spacemonkey.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/cmd/sailfish/with-spacemonkey.go -------------------------------------------------------------------------------- /cmd/sailfish/without-spacemonkey.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/cmd/sailfish/without-spacemonkey.go -------------------------------------------------------------------------------- /doc/DSP0266_1.5.0.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/doc/DSP0266_1.5.0.pdf -------------------------------------------------------------------------------- /doc/DSP0272_1.0.1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/doc/DSP0272_1.0.1.pdf -------------------------------------------------------------------------------- /doc/DSP2046_2018.1_0.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/doc/DSP2046_2018.1_0.pdf -------------------------------------------------------------------------------- /doc/DSP2052_1.0.0.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/doc/DSP2052_1.0.0.pdf -------------------------------------------------------------------------------- /doc/design.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/doc/design.txt -------------------------------------------------------------------------------- /doc/hld.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/doc/hld.txt -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/go.sum -------------------------------------------------------------------------------- /godefs/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/godefs/build.sh -------------------------------------------------------------------------------- /godefs/dm-decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/godefs/dm-decode.go -------------------------------------------------------------------------------- /godefs/dm-object-defs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/godefs/dm-object-defs.go -------------------------------------------------------------------------------- /godefs/fan-binary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/godefs/fan-binary.json -------------------------------------------------------------------------------- /godefs/generated-dm-object-defs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/godefs/generated-dm-object-defs.go -------------------------------------------------------------------------------- /godefs/hacked_compile_script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/godefs/hacked_compile_script -------------------------------------------------------------------------------- /godefs/hello.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/godefs/hello.json -------------------------------------------------------------------------------- /hooks/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/hooks/README.txt -------------------------------------------------------------------------------- /hooks/commit-msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/hooks/commit-msg -------------------------------------------------------------------------------- /hooks/commit-msg.d/gerrit-change-id: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/hooks/commit-msg.d/gerrit-change-id -------------------------------------------------------------------------------- /hooks/pre-auto-gc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/hooks/pre-auto-gc -------------------------------------------------------------------------------- /hooks/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/hooks/pre-commit -------------------------------------------------------------------------------- /perm/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/perm/README.txt -------------------------------------------------------------------------------- /redfish-ec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/redfish-ec.yaml -------------------------------------------------------------------------------- /redfish-logging.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/redfish-logging.yaml -------------------------------------------------------------------------------- /redfish-mockup-logging.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/redfish-mockup-logging.yaml -------------------------------------------------------------------------------- /redfish-mockup.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/redfish-mockup.yaml -------------------------------------------------------------------------------- /sample-events/3000log.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/sample-events/3000log.log -------------------------------------------------------------------------------- /sample-events/add_2_faults.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/sample-events/add_2_faults.txt -------------------------------------------------------------------------------- /sample-events/clear_faults.txt: -------------------------------------------------------------------------------- 1 | { "name": "FaultEntriesClear", "event_array": [{}]} 2 | -------------------------------------------------------------------------------- /sample-events/deletelog.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/sample-events/deletelog.log -------------------------------------------------------------------------------- /sample-events/ec_clear_logs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/sample-events/ec_clear_logs.txt -------------------------------------------------------------------------------- /sample-events/ec_event_log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/sample-events/ec_event_log.txt -------------------------------------------------------------------------------- /sample-events/ec_lcld_logs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/sample-events/ec_lcld_logs.txt -------------------------------------------------------------------------------- /sample-events/ec_lcld_logs2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/sample-events/ec_lcld_logs2.txt -------------------------------------------------------------------------------- /sample-events/ec_lcld_logs3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/sample-events/ec_lcld_logs3.txt -------------------------------------------------------------------------------- /sample-events/go_event_with_iom.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/sample-events/go_event_with_iom.log -------------------------------------------------------------------------------- /sample-events/go_event_with_seq.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/sample-events/go_event_with_seq.txt -------------------------------------------------------------------------------- /sample-events/idrac_event_log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/sample-events/idrac_event_log.txt -------------------------------------------------------------------------------- /sample-events/lclog_event.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/sample-events/lclog_event.log -------------------------------------------------------------------------------- /sample-events/long_log.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/sample-events/long_log.log -------------------------------------------------------------------------------- /sample-events/remove_1_fault.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/sample-events/remove_1_fault.txt -------------------------------------------------------------------------------- /sample-events/senna_bootupsky25.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/sample-events/senna_bootupsky25.log -------------------------------------------------------------------------------- /sample-events/sky32.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/sample-events/sky32.log -------------------------------------------------------------------------------- /sample-events/storage_event_log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/sample-events/storage_event_log.txt -------------------------------------------------------------------------------- /sample-events/unittest/csr.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/sample-events/unittest/csr.log -------------------------------------------------------------------------------- /sample-events/unittest/inst_pow.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/sample-events/unittest/inst_pow.log -------------------------------------------------------------------------------- /sample-events/unittest/power_on.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/sample-events/unittest/power_on.log -------------------------------------------------------------------------------- /scripts/add-EC-slot-configs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/scripts/add-EC-slot-configs.sh -------------------------------------------------------------------------------- /scripts/benchmark-EC.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/scripts/benchmark-EC.sh -------------------------------------------------------------------------------- /scripts/benchmark-IDRAC.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/scripts/benchmark-IDRAC.sh -------------------------------------------------------------------------------- /scripts/benchmark-reports.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/scripts/benchmark-reports.sh -------------------------------------------------------------------------------- /scripts/build-arm-obmc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/scripts/build-arm-obmc.sh -------------------------------------------------------------------------------- /scripts/build-ec.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/scripts/build-ec.sh -------------------------------------------------------------------------------- /scripts/build-simulation.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/scripts/build-simulation.sh -------------------------------------------------------------------------------- /scripts/chassis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/scripts/chassis.sh -------------------------------------------------------------------------------- /scripts/common-vars.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/scripts/common-vars.sh -------------------------------------------------------------------------------- /scripts/ec-fast-workflow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/scripts/ec-fast-workflow -------------------------------------------------------------------------------- /scripts/fmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/scripts/fmt -------------------------------------------------------------------------------- /scripts/get-tree.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/scripts/get-tree.sh -------------------------------------------------------------------------------- /scripts/login.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/scripts/login.sh -------------------------------------------------------------------------------- /scripts/makesubscription.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/scripts/makesubscription.sh -------------------------------------------------------------------------------- /scripts/plot/ab-lats.plot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/scripts/plot/ab-lats.plot -------------------------------------------------------------------------------- /scripts/plot/ab-rps.plot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/scripts/plot/ab-rps.plot -------------------------------------------------------------------------------- /scripts/plot/compare-ab-cpu.plot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/scripts/plot/compare-ab-cpu.plot -------------------------------------------------------------------------------- /scripts/plot/compare-ab-lats.plot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/scripts/plot/compare-ab-lats.plot -------------------------------------------------------------------------------- /scripts/plot/compare-ab-rps.plot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/scripts/plot/compare-ab-rps.plot -------------------------------------------------------------------------------- /scripts/plot/cpu.plot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/scripts/plot/cpu.plot -------------------------------------------------------------------------------- /scripts/plot/vegeta-lats.plot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/scripts/plot/vegeta-lats.plot -------------------------------------------------------------------------------- /scripts/plot/vegeta-rps.plot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/scripts/plot/vegeta-rps.plot -------------------------------------------------------------------------------- /scripts/replay-events.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/scripts/replay-events.sh -------------------------------------------------------------------------------- /scripts/runab.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/scripts/runab.sh -------------------------------------------------------------------------------- /scripts/runhey.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/scripts/runhey.sh -------------------------------------------------------------------------------- /scripts/runsiege.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/scripts/runsiege.sh -------------------------------------------------------------------------------- /scripts/runvegeta.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/scripts/runvegeta.sh -------------------------------------------------------------------------------- /scripts/save-events.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/scripts/save-events.sh -------------------------------------------------------------------------------- /scripts/siege.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/scripts/siege.conf -------------------------------------------------------------------------------- /scripts/stress-inject.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/scripts/stress-inject.sh -------------------------------------------------------------------------------- /scripts/submit-test-event.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/scripts/submit-test-event.sh -------------------------------------------------------------------------------- /scripts/test-inject.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/scripts/test-inject.sh -------------------------------------------------------------------------------- /scripts/test-pump-action.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/scripts/test-pump-action.sh -------------------------------------------------------------------------------- /scripts/test-submit-event.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/scripts/test-submit-event.sh -------------------------------------------------------------------------------- /scripts/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/scripts/test.sh -------------------------------------------------------------------------------- /scripts/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/scripts/update.sh -------------------------------------------------------------------------------- /scripts/walk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/scripts/walk.sh -------------------------------------------------------------------------------- /scripts/yocto/go/go-1.9.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/scripts/yocto/go/go-1.9.inc -------------------------------------------------------------------------------- /scripts/yocto/go/go-common.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/scripts/yocto/go/go-common.inc -------------------------------------------------------------------------------- /scripts/yocto/go/go-cross.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/scripts/yocto/go/go-cross.inc -------------------------------------------------------------------------------- /scripts/yocto/go/go-cross_1.9.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/scripts/yocto/go/go-cross_1.9.bb -------------------------------------------------------------------------------- /scripts/yocto/go/go-crosssdk.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/scripts/yocto/go/go-crosssdk.inc -------------------------------------------------------------------------------- /scripts/yocto/go/go-crosssdk_1.9.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/scripts/yocto/go/go-crosssdk_1.9.bb -------------------------------------------------------------------------------- /scripts/yocto/go/go-dep_0.3.0.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/scripts/yocto/go/go-dep_0.3.0.bb -------------------------------------------------------------------------------- /scripts/yocto/go/go-native.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/scripts/yocto/go/go-native.inc -------------------------------------------------------------------------------- /scripts/yocto/go/go-native_1.9.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/scripts/yocto/go/go-native_1.9.bb -------------------------------------------------------------------------------- /scripts/yocto/go/go-runtime.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/scripts/yocto/go/go-runtime.inc -------------------------------------------------------------------------------- /scripts/yocto/go/go-runtime_1.9.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/scripts/yocto/go/go-runtime_1.9.bb -------------------------------------------------------------------------------- /scripts/yocto/go/go-target.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/scripts/yocto/go/go-target.inc -------------------------------------------------------------------------------- /scripts/yocto/go/go_1.9.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/scripts/yocto/go/go_1.9.bb -------------------------------------------------------------------------------- /src/actionhandler/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/src/actionhandler/handler.go -------------------------------------------------------------------------------- /src/dell-ec/am3-functions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/src/dell-ec/am3-functions.go -------------------------------------------------------------------------------- /src/dell-ec/cmc_aggregate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/src/dell-ec/cmc_aggregate.go -------------------------------------------------------------------------------- /src/dell-ec/ec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/src/dell-ec/ec.go -------------------------------------------------------------------------------- /src/dell-ec/event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/src/dell-ec/event.go -------------------------------------------------------------------------------- /src/dell-ec/eventactions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/src/dell-ec/eventactions.go -------------------------------------------------------------------------------- /src/dell-ec/instantiate-helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/src/dell-ec/instantiate-helpers.go -------------------------------------------------------------------------------- /src/dell-ec/iom_aggregates.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/src/dell-ec/iom_aggregates.go -------------------------------------------------------------------------------- /src/dell-ec/lcl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/src/dell-ec/lcl.go -------------------------------------------------------------------------------- /src/dell-ec/mgractions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/src/dell-ec/mgractions.go -------------------------------------------------------------------------------- /src/dell-ec/power_aggregates.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/src/dell-ec/power_aggregates.go -------------------------------------------------------------------------------- /src/dell-ec/sled_aggregate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/src/dell-ec/sled_aggregate.go -------------------------------------------------------------------------------- /src/dell-ec/slots/aggregate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/src/dell-ec/slots/aggregate.go -------------------------------------------------------------------------------- /src/dell-ec/syschasactions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/src/dell-ec/syschasactions.go -------------------------------------------------------------------------------- /src/dell-ec/thermal_aggregate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/src/dell-ec/thermal_aggregate.go -------------------------------------------------------------------------------- /src/dell-ec/updateactions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/src/dell-ec/updateactions.go -------------------------------------------------------------------------------- /src/http_sse/sse_handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/src/http_sse/sse_handler.go -------------------------------------------------------------------------------- /src/log/logging.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/src/log/logging.go -------------------------------------------------------------------------------- /src/log15adapter/logging.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/src/log15adapter/logging.go -------------------------------------------------------------------------------- /src/looplab/bbolt/repo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/src/looplab/bbolt/repo.go -------------------------------------------------------------------------------- /src/looplab/event/event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/src/looplab/event/event.go -------------------------------------------------------------------------------- /src/looplab/eventbus/eventbus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/src/looplab/eventbus/eventbus.go -------------------------------------------------------------------------------- /src/mockup/mockup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/src/mockup/mockup.go -------------------------------------------------------------------------------- /src/ocp/am3/controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/src/ocp/am3/controller.go -------------------------------------------------------------------------------- /src/ocp/basicauth/basic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/src/ocp/basicauth/basic.go -------------------------------------------------------------------------------- /src/ocp/event/eventstreamfn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/src/ocp/event/eventstreamfn.go -------------------------------------------------------------------------------- /src/ocp/eventservice/action.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/src/ocp/eventservice/action.go -------------------------------------------------------------------------------- /src/ocp/eventservice/aggregate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/src/ocp/eventservice/aggregate.go -------------------------------------------------------------------------------- /src/ocp/eventservice/commands.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/src/ocp/eventservice/commands.go -------------------------------------------------------------------------------- /src/ocp/eventservice/controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/src/ocp/eventservice/controller.go -------------------------------------------------------------------------------- /src/ocp/eventservice/entrypoint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/src/ocp/eventservice/entrypoint.go -------------------------------------------------------------------------------- /src/ocp/eventservice/event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/src/ocp/eventservice/event.go -------------------------------------------------------------------------------- /src/ocp/eventservice/work.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/src/ocp/eventservice/work.go -------------------------------------------------------------------------------- /src/ocp/health/aggregate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/src/ocp/health/aggregate.go -------------------------------------------------------------------------------- /src/ocp/model/model-options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/src/ocp/model/model-options.go -------------------------------------------------------------------------------- /src/ocp/model/model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/src/ocp/model/model.go -------------------------------------------------------------------------------- /src/ocp/session/commands.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/src/ocp/session/commands.go -------------------------------------------------------------------------------- /src/ocp/session/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/src/ocp/session/events.go -------------------------------------------------------------------------------- /src/ocp/session/sessions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/src/ocp/session/sessions.go -------------------------------------------------------------------------------- /src/ocp/telemetryservice/action.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/src/ocp/telemetryservice/action.go -------------------------------------------------------------------------------- /src/ocp/telemetryservice/event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/src/ocp/telemetryservice/event.go -------------------------------------------------------------------------------- /src/ocp/testaggregate/functions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/src/ocp/testaggregate/functions.go -------------------------------------------------------------------------------- /src/ocp/testaggregate/registry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/src/ocp/testaggregate/registry.go -------------------------------------------------------------------------------- /src/ocp/view/view-meta.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/src/ocp/view/view-meta.go -------------------------------------------------------------------------------- /src/ocp/view/view-misc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/src/ocp/view/view-misc.go -------------------------------------------------------------------------------- /src/ocp/view/view-options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/src/ocp/view/view-options.go -------------------------------------------------------------------------------- /src/ocp/view/view.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/src/ocp/view/view.go -------------------------------------------------------------------------------- /src/ocp/view/view_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/src/ocp/view/view_test.go -------------------------------------------------------------------------------- /src/redfishresource/aggregate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/src/redfishresource/aggregate.go -------------------------------------------------------------------------------- /src/redfishresource/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/src/redfishresource/events.go -------------------------------------------------------------------------------- /src/redfishresource/extmessages.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/src/redfishresource/extmessages.go -------------------------------------------------------------------------------- /src/redfishresource/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/src/redfishresource/handler.go -------------------------------------------------------------------------------- /src/redfishresource/http_get.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/src/redfishresource/http_get.go -------------------------------------------------------------------------------- /src/redfishresource/http_reqs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/src/redfishresource/http_reqs.go -------------------------------------------------------------------------------- /src/redfishresource/logging.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/src/redfishresource/logging.go -------------------------------------------------------------------------------- /src/redfishresource/newmeta_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/src/redfishresource/newmeta_test.go -------------------------------------------------------------------------------- /src/redfishresource/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/src/redfishresource/plugin.go -------------------------------------------------------------------------------- /src/redfishresource/runmeta.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/src/redfishresource/runmeta.go -------------------------------------------------------------------------------- /src/redfishresource/sdnotify.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/src/redfishresource/sdnotify.go -------------------------------------------------------------------------------- /src/stdmeta/certinfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/src/stdmeta/certinfo.go -------------------------------------------------------------------------------- /src/stdmeta/datetime.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/src/stdmeta/datetime.go -------------------------------------------------------------------------------- /src/stdmeta/datetimezone.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/src/stdmeta/datetimezone.go -------------------------------------------------------------------------------- /src/stdmeta/expand.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/src/stdmeta/expand.go -------------------------------------------------------------------------------- /src/stdmeta/generic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/src/stdmeta/generic.go -------------------------------------------------------------------------------- /src/stdmeta/hostname.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/src/stdmeta/hostname.go -------------------------------------------------------------------------------- /src/stdmeta/runcmd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/src/stdmeta/runcmd.go -------------------------------------------------------------------------------- /src/stdmeta/sledprofile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/src/stdmeta/sledprofile.go -------------------------------------------------------------------------------- /src/stdmeta/sledvirtualreseat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/src/stdmeta/sledvirtualreseat.go -------------------------------------------------------------------------------- /src/stdmeta/ssoinfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/src/stdmeta/ssoinfo.go -------------------------------------------------------------------------------- /src/tlscert/certs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/src/tlscert/certs.go -------------------------------------------------------------------------------- /src/uploadhandler/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/src/uploadhandler/handler.go -------------------------------------------------------------------------------- /v1/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/v1/metadata.xml -------------------------------------------------------------------------------- /v1/odata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/v1/odata.json -------------------------------------------------------------------------------- /v1/schemas/AccountService_v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/v1/schemas/AccountService_v1.xml -------------------------------------------------------------------------------- /v1/schemas/ActionInfo_v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/v1/schemas/ActionInfo_v1.xml -------------------------------------------------------------------------------- /v1/schemas/Assembly_v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/v1/schemas/Assembly_v1.xml -------------------------------------------------------------------------------- /v1/schemas/AttributeRegistry_v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/v1/schemas/AttributeRegistry_v1.xml -------------------------------------------------------------------------------- /v1/schemas/Bios_v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/v1/schemas/Bios_v1.xml -------------------------------------------------------------------------------- /v1/schemas/BootOption_v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/v1/schemas/BootOption_v1.xml -------------------------------------------------------------------------------- /v1/schemas/ChassisCollection_v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/v1/schemas/ChassisCollection_v1.xml -------------------------------------------------------------------------------- /v1/schemas/Chassis_v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/v1/schemas/Chassis_v1.xml -------------------------------------------------------------------------------- /v1/schemas/ComputerSystem_v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/v1/schemas/ComputerSystem_v1.xml -------------------------------------------------------------------------------- /v1/schemas/Drive_v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/v1/schemas/Drive_v1.xml -------------------------------------------------------------------------------- /v1/schemas/Endpoint_v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/v1/schemas/Endpoint_v1.xml -------------------------------------------------------------------------------- /v1/schemas/EthernetInterface_v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/v1/schemas/EthernetInterface_v1.xml -------------------------------------------------------------------------------- /v1/schemas/EventDestination_v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/v1/schemas/EventDestination_v1.xml -------------------------------------------------------------------------------- /v1/schemas/EventService_v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/v1/schemas/EventService_v1.xml -------------------------------------------------------------------------------- /v1/schemas/Event_v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/v1/schemas/Event_v1.xml -------------------------------------------------------------------------------- /v1/schemas/FabricCollection_v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/v1/schemas/FabricCollection_v1.xml -------------------------------------------------------------------------------- /v1/schemas/Fabric_v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/v1/schemas/Fabric_v1.xml -------------------------------------------------------------------------------- /v1/schemas/HostInterface_v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/v1/schemas/HostInterface_v1.xml -------------------------------------------------------------------------------- /v1/schemas/IPAddresses_v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/v1/schemas/IPAddresses_v1.xml -------------------------------------------------------------------------------- /v1/schemas/JsonSchemaFile_v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/v1/schemas/JsonSchemaFile_v1.xml -------------------------------------------------------------------------------- /v1/schemas/LogEntry_v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/v1/schemas/LogEntry_v1.xml -------------------------------------------------------------------------------- /v1/schemas/LogService_v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/v1/schemas/LogService_v1.xml -------------------------------------------------------------------------------- /v1/schemas/ManagerAccount_v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/v1/schemas/ManagerAccount_v1.xml -------------------------------------------------------------------------------- /v1/schemas/ManagerCollection_v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/v1/schemas/ManagerCollection_v1.xml -------------------------------------------------------------------------------- /v1/schemas/Manager_v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/v1/schemas/Manager_v1.xml -------------------------------------------------------------------------------- /v1/schemas/MemoryChunks_v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/v1/schemas/MemoryChunks_v1.xml -------------------------------------------------------------------------------- /v1/schemas/MemoryCollection_v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/v1/schemas/MemoryCollection_v1.xml -------------------------------------------------------------------------------- /v1/schemas/MemoryDomain_v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/v1/schemas/MemoryDomain_v1.xml -------------------------------------------------------------------------------- /v1/schemas/MemoryMetrics_v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/v1/schemas/MemoryMetrics_v1.xml -------------------------------------------------------------------------------- /v1/schemas/Memory_v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/v1/schemas/Memory_v1.xml -------------------------------------------------------------------------------- /v1/schemas/MessageRegistry_v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/v1/schemas/MessageRegistry_v1.xml -------------------------------------------------------------------------------- /v1/schemas/Message_v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/v1/schemas/Message_v1.xml -------------------------------------------------------------------------------- /v1/schemas/NetworkAdapter_v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/v1/schemas/NetworkAdapter_v1.xml -------------------------------------------------------------------------------- /v1/schemas/NetworkInterface_v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/v1/schemas/NetworkInterface_v1.xml -------------------------------------------------------------------------------- /v1/schemas/NetworkPort_v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/v1/schemas/NetworkPort_v1.xml -------------------------------------------------------------------------------- /v1/schemas/PCIeDevice_v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/v1/schemas/PCIeDevice_v1.xml -------------------------------------------------------------------------------- /v1/schemas/PCIeFunction_v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/v1/schemas/PCIeFunction_v1.xml -------------------------------------------------------------------------------- /v1/schemas/PhysicalContext_v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/v1/schemas/PhysicalContext_v1.xml -------------------------------------------------------------------------------- /v1/schemas/PortCollection_v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/v1/schemas/PortCollection_v1.xml -------------------------------------------------------------------------------- /v1/schemas/Port_v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/v1/schemas/Port_v1.xml -------------------------------------------------------------------------------- /v1/schemas/Power_v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/v1/schemas/Power_v1.xml -------------------------------------------------------------------------------- /v1/schemas/PrivilegeRegistry_v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/v1/schemas/PrivilegeRegistry_v1.xml -------------------------------------------------------------------------------- /v1/schemas/Privileges_v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/v1/schemas/Privileges_v1.xml -------------------------------------------------------------------------------- /v1/schemas/Processor_v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/v1/schemas/Processor_v1.xml -------------------------------------------------------------------------------- /v1/schemas/Protocol_v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/v1/schemas/Protocol_v1.xml -------------------------------------------------------------------------------- /v1/schemas/RedfishExtensions_v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/v1/schemas/RedfishExtensions_v1.xml -------------------------------------------------------------------------------- /v1/schemas/Redundancy_v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/v1/schemas/Redundancy_v1.xml -------------------------------------------------------------------------------- /v1/schemas/ResourceBlock_v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/v1/schemas/ResourceBlock_v1.xml -------------------------------------------------------------------------------- /v1/schemas/Resource_v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/v1/schemas/Resource_v1.xml -------------------------------------------------------------------------------- /v1/schemas/RoleCollection_v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/v1/schemas/RoleCollection_v1.xml -------------------------------------------------------------------------------- /v1/schemas/Role_v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/v1/schemas/Role_v1.xml -------------------------------------------------------------------------------- /v1/schemas/SecureBoot_v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/v1/schemas/SecureBoot_v1.xml -------------------------------------------------------------------------------- /v1/schemas/SerialInterface_v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/v1/schemas/SerialInterface_v1.xml -------------------------------------------------------------------------------- /v1/schemas/ServiceRoot_v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/v1/schemas/ServiceRoot_v1.xml -------------------------------------------------------------------------------- /v1/schemas/SessionCollection_v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/v1/schemas/SessionCollection_v1.xml -------------------------------------------------------------------------------- /v1/schemas/SessionService_v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/v1/schemas/SessionService_v1.xml -------------------------------------------------------------------------------- /v1/schemas/Session_v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/v1/schemas/Session_v1.xml -------------------------------------------------------------------------------- /v1/schemas/Settings_v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/v1/schemas/Settings_v1.xml -------------------------------------------------------------------------------- /v1/schemas/SimpleStorage_v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/v1/schemas/SimpleStorage_v1.xml -------------------------------------------------------------------------------- /v1/schemas/SoftwareInventory_v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/v1/schemas/SoftwareInventory_v1.xml -------------------------------------------------------------------------------- /v1/schemas/StorageCollection_v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/v1/schemas/StorageCollection_v1.xml -------------------------------------------------------------------------------- /v1/schemas/Storage_v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/v1/schemas/Storage_v1.xml -------------------------------------------------------------------------------- /v1/schemas/SwitchCollection_v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/v1/schemas/SwitchCollection_v1.xml -------------------------------------------------------------------------------- /v1/schemas/Switch_v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/v1/schemas/Switch_v1.xml -------------------------------------------------------------------------------- /v1/schemas/TaskCollection_v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/v1/schemas/TaskCollection_v1.xml -------------------------------------------------------------------------------- /v1/schemas/TaskService_v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/v1/schemas/TaskService_v1.xml -------------------------------------------------------------------------------- /v1/schemas/Task_v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/v1/schemas/Task_v1.xml -------------------------------------------------------------------------------- /v1/schemas/Thermal_v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/v1/schemas/Thermal_v1.xml -------------------------------------------------------------------------------- /v1/schemas/UpdateService_v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/v1/schemas/UpdateService_v1.xml -------------------------------------------------------------------------------- /v1/schemas/VirtualMedia_v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/v1/schemas/VirtualMedia_v1.xml -------------------------------------------------------------------------------- /v1/schemas/VolumeCollection_v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/v1/schemas/VolumeCollection_v1.xml -------------------------------------------------------------------------------- /v1/schemas/Volume_v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/v1/schemas/Volume_v1.xml -------------------------------------------------------------------------------- /v1/schemas/ZoneCollection_v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/v1/schemas/ZoneCollection_v1.xml -------------------------------------------------------------------------------- /v1/schemas/Zone_v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/v1/schemas/Zone_v1.xml -------------------------------------------------------------------------------- /vendor/github.com/dgrijalva/jwt-go/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | bin 3 | 4 | 5 | -------------------------------------------------------------------------------- /vendor/github.com/etcd-io/bbolt/.gitignore: -------------------------------------------------------------------------------- 1 | *.prof 2 | *.test 3 | *.swp 4 | /bin/ 5 | cover.out 6 | -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/.codecov.yml: -------------------------------------------------------------------------------- 1 | ignore: 2 | - "output_tests/.*" 3 | 4 | -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | /bug_test.go 3 | /coverage.txt 4 | /.idea 5 | -------------------------------------------------------------------------------- /vendor/github.com/mitchellh/mapstructure/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/mitchellh/mapstructure 2 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/concurrent/.gitignore: -------------------------------------------------------------------------------- 1 | /coverage.txt 2 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | /coverage.txt 3 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/reflect2_amd64.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_386.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_amd64p32.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_arm.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_arm64.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_mips64x.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_mipsx.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_ppc64x.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_s390x.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/spacemonkeygo/openssl/.gitignore: -------------------------------------------------------------------------------- 1 | openssl.test 2 | -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/spf13/afero 2 | -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/os.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/vendor/github.com/spf13/afero/os.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/jwalterweatherman/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/spf13/jwalterweatherman 2 | -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/* 2 | 3 | -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/vendor/github.com/spf13/pflag/ip.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/vendor/golang.org/x/sys/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/vendor/golang.org/x/sys/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/vendor/golang.org/x/sys/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/.gitignore: -------------------------------------------------------------------------------- 1 | _obj/ 2 | unix.test 3 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/vendor/golang.org/x/sys/unix/str.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/vendor/golang.org/x/text/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/text/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/vendor/golang.org/x/text/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/text/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/vendor/golang.org/x/text/PATENTS -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/vendor/gopkg.in/yaml.v2/.travis.yml -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/vendor/gopkg.in/yaml.v2/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/vendor/gopkg.in/yaml.v2/NOTICE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/vendor/gopkg.in/yaml.v2/README.md -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/vendor/gopkg.in/yaml.v2/apic.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/vendor/gopkg.in/yaml.v2/decode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/emitterc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/vendor/gopkg.in/yaml.v2/emitterc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/vendor/gopkg.in/yaml.v2/encode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/vendor/gopkg.in/yaml.v2/go.mod -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/parserc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/vendor/gopkg.in/yaml.v2/parserc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/readerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/vendor/gopkg.in/yaml.v2/readerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/vendor/gopkg.in/yaml.v2/resolve.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/scannerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/vendor/gopkg.in/yaml.v2/scannerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/sorter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/vendor/gopkg.in/yaml.v2/sorter.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/writerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/vendor/gopkg.in/yaml.v2/writerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/vendor/gopkg.in/yaml.v2/yaml.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/vendor/gopkg.in/yaml.v2/yamlh.go -------------------------------------------------------------------------------- /vendor/modules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailfishdell/sailfish/HEAD/vendor/modules.txt --------------------------------------------------------------------------------