├── .github └── workflows │ ├── docker.yml │ ├── linters.yml │ └── release.yml ├── .gitignore ├── AUTHORS.md ├── CHANGELOG.md ├── Dockerfile ├── LICENSE.md ├── README.md ├── docker-compose.yml ├── public-rackmount1 ├── $metadata │ └── index.xml ├── AccountService │ ├── Accounts │ │ ├── 1 │ │ │ ├── Certificates │ │ │ │ └── index.json │ │ │ └── index.json │ │ ├── 2 │ │ │ └── index.json │ │ └── index.json │ ├── ExternalAccountProviders │ │ ├── ExternalRedfishService │ │ │ └── index.json │ │ └── index.json │ ├── OutboundConnections │ │ ├── 1 │ │ │ ├── Certificates │ │ │ │ ├── 1 │ │ │ │ │ ├── RekeyActionInfo │ │ │ │ │ │ └── index.json │ │ │ │ │ └── index.json │ │ │ │ └── index.json │ │ │ ├── ClientCertificates │ │ │ │ ├── 1 │ │ │ │ │ ├── RekeyActionInfo │ │ │ │ │ │ └── index.json │ │ │ │ │ └── index.json │ │ │ │ └── index.json │ │ │ └── index.json │ │ └── index.json │ ├── Roles │ │ ├── Administrator │ │ │ └── index.json │ │ ├── Operator │ │ │ └── index.json │ │ ├── ReadOnly │ │ │ └── index.json │ │ └── index.json │ └── index.json ├── CertificateService │ ├── CertificateLocations │ │ └── index.json │ ├── GenerateCSRActionInfo │ │ └── index.json │ ├── ReplaceCertificateActionInfo │ │ └── index.json │ └── index.json ├── Chassis │ ├── 1U │ │ ├── Controls │ │ │ ├── CPU1Freq │ │ │ │ └── index.json │ │ │ ├── PowerLimit │ │ │ │ └── index.json │ │ │ └── index.json │ │ ├── EnvironmentMetrics │ │ │ └── index.json │ │ ├── Power │ │ │ └── index.json │ │ ├── PowerSubsystem │ │ │ ├── Batteries │ │ │ │ ├── Module1 │ │ │ │ │ ├── Metrics │ │ │ │ │ │ └── index.json │ │ │ │ │ └── index.json │ │ │ │ └── index.json │ │ │ ├── PowerSupplies │ │ │ │ ├── Bay1 │ │ │ │ │ ├── Assembly │ │ │ │ │ │ └── index.json │ │ │ │ │ ├── Metrics │ │ │ │ │ │ └── index.json │ │ │ │ │ └── index.json │ │ │ │ ├── Bay2 │ │ │ │ │ └── index.json │ │ │ │ └── index.json │ │ │ └── index.json │ │ ├── Sensors │ │ │ ├── AmbientTemp │ │ │ │ └── index.json │ │ │ ├── Battery1InputCurrent │ │ │ │ └── index.json │ │ │ ├── Battery1InputVoltage │ │ │ │ └── index.json │ │ │ ├── Battery1OutputCurrent │ │ │ │ └── index.json │ │ │ ├── Battery1OutputVoltage │ │ │ │ └── index.json │ │ │ ├── Battery1StateOfHealth │ │ │ │ └── index.json │ │ │ ├── Battery1Temp │ │ │ │ └── index.json │ │ │ ├── CPU1Power │ │ │ │ └── index.json │ │ │ ├── CPU1Temp │ │ │ │ └── index.json │ │ │ ├── CPUFan1 │ │ │ │ └── index.json │ │ │ ├── CPUFan2 │ │ │ │ └── index.json │ │ │ ├── DIMM1Temp │ │ │ │ └── index.json │ │ │ ├── DIMM2Temp │ │ │ │ └── index.json │ │ │ ├── DIMM3Temp │ │ │ │ └── index.json │ │ │ ├── ExhaustTemp │ │ │ │ └── index.json │ │ │ ├── FanBay1 │ │ │ │ └── index.json │ │ │ ├── FanBay2 │ │ │ │ └── index.json │ │ │ ├── IntakeTemp │ │ │ │ └── index.json │ │ │ ├── PS1Energy │ │ │ │ └── index.json │ │ │ ├── PS1Frequency │ │ │ │ └── index.json │ │ │ ├── PS1InputCurrent │ │ │ │ └── index.json │ │ │ ├── PS1InputPower │ │ │ │ └── index.json │ │ │ ├── PS1InputVoltage │ │ │ │ └── index.json │ │ │ ├── PS1Out12V │ │ │ │ └── index.json │ │ │ ├── PS1Out12VCurrent │ │ │ │ └── index.json │ │ │ ├── PS1Out3V │ │ │ │ └── index.json │ │ │ ├── PS1Out3VCurrent │ │ │ │ └── index.json │ │ │ ├── PS1Out5V │ │ │ │ └── index.json │ │ │ ├── PS1Out5VCurrent │ │ │ │ └── index.json │ │ │ ├── PS2Energy │ │ │ │ └── index.json │ │ │ ├── PS2Frequency │ │ │ │ └── index.json │ │ │ ├── PS2InputCurrent │ │ │ │ └── index.json │ │ │ ├── PS2InputPower │ │ │ │ └── index.json │ │ │ ├── PS2InputVoltage │ │ │ │ └── index.json │ │ │ ├── PS2Out12V │ │ │ │ └── index.json │ │ │ ├── PS2Out12VCurrent │ │ │ │ └── index.json │ │ │ ├── PS2Out3V │ │ │ │ └── index.json │ │ │ ├── PS2Out3VCurrent │ │ │ │ └── index.json │ │ │ ├── PS2Out5V │ │ │ │ └── index.json │ │ │ ├── PS2Out5VCurrent │ │ │ │ └── index.json │ │ │ ├── TotalEnergy │ │ │ │ └── index.json │ │ │ ├── TotalPower │ │ │ │ └── index.json │ │ │ └── index.json │ │ ├── Thermal │ │ │ └── index.json │ │ ├── ThermalSubsystem │ │ │ ├── Fans │ │ │ │ ├── Bay1 │ │ │ │ │ └── index.json │ │ │ │ ├── Bay2 │ │ │ │ │ └── index.json │ │ │ │ ├── CPU1 │ │ │ │ │ └── index.json │ │ │ │ ├── CPU2 │ │ │ │ │ └── index.json │ │ │ │ └── index.json │ │ │ ├── Heaters │ │ │ │ ├── CPU1Heater │ │ │ │ │ ├── Metrics │ │ │ │ │ │ └── index.json │ │ │ │ │ └── index.json │ │ │ │ └── index.json │ │ │ ├── ThermalMetrics │ │ │ │ └── index.json │ │ │ └── index.json │ │ ├── TrustedComponents │ │ │ ├── AC-RoT0 │ │ │ │ ├── Certificates │ │ │ │ │ ├── DeviceCert │ │ │ │ │ │ └── index.json │ │ │ │ │ └── index.json │ │ │ │ └── index.json │ │ │ ├── TPM │ │ │ │ ├── Certificates │ │ │ │ │ ├── EKCert │ │ │ │ │ │ └── index.json │ │ │ │ │ └── index.json │ │ │ │ └── index.json │ │ │ ├── iRoT0 │ │ │ │ ├── Certificates │ │ │ │ │ ├── DeviceCert │ │ │ │ │ │ └── index.json │ │ │ │ │ └── index.json │ │ │ │ └── index.json │ │ │ └── index.json │ │ └── index.json │ └── index.json ├── ComponentIntegrity │ ├── SS-SPDM-0 │ │ └── index.json │ ├── SS-SPDM-1 │ │ └── index.json │ ├── TPM-0 │ │ └── index.json │ ├── USB-Integrity │ │ └── index.json │ └── index.json ├── EventService │ ├── SubmitTestEventActionInfo │ │ └── index.json │ ├── Subscriptions │ │ ├── 1 │ │ │ └── index.json │ │ ├── 2 │ │ │ └── index.json │ │ ├── 3 │ │ │ └── index.json │ │ ├── 4 │ │ │ └── index.json │ │ └── index.json │ └── index.json ├── KeyService │ ├── NVMeoFKeyPolicies │ │ ├── 0 │ │ │ └── index.json │ │ └── index.json │ ├── NVMeoFSecrets │ │ ├── 0 │ │ │ └── index.json │ │ ├── 1 │ │ │ └── index.json │ │ └── index.json │ └── index.json ├── Managers │ ├── BMC │ │ ├── DedicatedNetworkPorts │ │ │ ├── 1 │ │ │ │ └── index.json │ │ │ └── index.json │ │ ├── EthernetInterfaces │ │ │ ├── ToHost │ │ │ │ └── index.json │ │ │ ├── eth0 │ │ │ │ ├── SD │ │ │ │ │ └── index.json │ │ │ │ └── index.json │ │ │ └── index.json │ │ ├── HostInterfaces │ │ │ ├── 1 │ │ │ │ ├── HostEthernetInterfaces │ │ │ │ │ └── index.json │ │ │ │ └── index.json │ │ │ └── index.json │ │ ├── LogServices │ │ │ ├── Log │ │ │ │ ├── Entries │ │ │ │ │ ├── 1 │ │ │ │ │ │ └── index.json │ │ │ │ │ └── index.json │ │ │ │ └── index.json │ │ │ └── index.json │ │ ├── NetworkProtocol │ │ │ ├── HTTPS │ │ │ │ └── Certificates │ │ │ │ │ ├── 1 │ │ │ │ │ ├── RekeyActionInfo │ │ │ │ │ │ └── index.json │ │ │ │ │ └── index.json │ │ │ │ │ └── index.json │ │ │ └── index.json │ │ ├── SecurityPolicy │ │ │ ├── SPDM │ │ │ │ ├── RevokedCertificates │ │ │ │ │ └── index.json │ │ │ │ └── TrustedCertificates │ │ │ │ │ ├── contoso-root │ │ │ │ │ └── index.json │ │ │ │ │ └── index.json │ │ │ ├── TLS │ │ │ │ ├── Client │ │ │ │ │ ├── RevokedCertificates │ │ │ │ │ │ └── index.json │ │ │ │ │ └── TrustedCertificates │ │ │ │ │ │ └── index.json │ │ │ │ └── Server │ │ │ │ │ ├── RevokedCertificates │ │ │ │ │ └── index.json │ │ │ │ │ └── TrustedCertificates │ │ │ │ │ ├── contoso-root │ │ │ │ │ └── index.json │ │ │ │ │ └── index.json │ │ │ └── index.json │ │ ├── SerialInterfaces │ │ │ ├── TTY0 │ │ │ │ └── index.json │ │ │ └── index.json │ │ └── index.json │ └── index.json ├── Registries │ ├── Base.1.5.0.json │ ├── Base.1.5.0 │ │ └── index.json │ └── index.json ├── SessionService │ ├── Sessions │ │ ├── 1234567890ABCDEF │ │ │ └── index.json │ │ ├── 1234567890ABCDEG │ │ │ └── index.json │ │ └── index.json │ └── index.json ├── Systems │ ├── 437XR1138R2 │ │ ├── Bios │ │ │ ├── Settings │ │ │ │ └── index.json │ │ │ └── index.json │ │ ├── Certificates │ │ │ ├── contoso-root │ │ │ │ └── index.json │ │ │ ├── contoso-subca │ │ │ │ └── index.json │ │ │ └── index.json │ │ ├── EthernetInterfaces │ │ │ ├── 12446A3B0411 │ │ │ │ └── index.json │ │ │ ├── 12446A3B8890 │ │ │ │ └── index.json │ │ │ ├── ToManager │ │ │ │ └── index.json │ │ │ ├── VLAN1 │ │ │ │ └── index.json │ │ │ └── index.json │ │ ├── GraphicsControllers │ │ │ ├── GPU1 │ │ │ │ ├── Ports │ │ │ │ │ ├── DisplayPort │ │ │ │ │ │ └── index.json │ │ │ │ │ └── index.json │ │ │ │ └── index.json │ │ │ └── index.json │ │ ├── LogServices │ │ │ ├── Log1 │ │ │ │ ├── Entries │ │ │ │ │ ├── 1 │ │ │ │ │ │ └── index.json │ │ │ │ │ ├── 2 │ │ │ │ │ │ └── index.json │ │ │ │ │ └── index.json │ │ │ │ └── index.json │ │ │ └── index.json │ │ ├── Memory │ │ │ ├── DIMM1 │ │ │ │ ├── EnvironmentMetrics │ │ │ │ │ └── index.json │ │ │ │ └── index.json │ │ │ ├── DIMM2 │ │ │ │ ├── EnvironmentMetrics │ │ │ │ │ └── index.json │ │ │ │ └── index.json │ │ │ ├── DIMM3 │ │ │ │ ├── EnvironmentMetrics │ │ │ │ │ └── index.json │ │ │ │ └── index.json │ │ │ ├── DIMM4 │ │ │ │ └── index.json │ │ │ └── index.json │ │ ├── Processors │ │ │ ├── CPU1 │ │ │ │ ├── EnvironmentMetrics │ │ │ │ │ └── index.json │ │ │ │ └── index.json │ │ │ ├── CPU2 │ │ │ │ └── index.json │ │ │ ├── FPGA1 │ │ │ │ ├── AccelerationFunctions │ │ │ │ │ ├── Compression │ │ │ │ │ │ └── index.json │ │ │ │ │ └── index.json │ │ │ │ ├── ProcessorMetrics │ │ │ │ │ └── index.json │ │ │ │ └── index.json │ │ │ └── index.json │ │ ├── SecureBoot │ │ │ ├── SecureBootDatabases │ │ │ │ ├── KEK │ │ │ │ │ ├── Certificates │ │ │ │ │ │ ├── 1 │ │ │ │ │ │ │ └── index.json │ │ │ │ │ │ ├── 2 │ │ │ │ │ │ │ └── index.json │ │ │ │ │ │ └── index.json │ │ │ │ │ └── index.json │ │ │ │ ├── KEKDefault │ │ │ │ │ ├── Certificates │ │ │ │ │ │ ├── 1 │ │ │ │ │ │ │ └── index.json │ │ │ │ │ │ ├── 2 │ │ │ │ │ │ │ └── index.json │ │ │ │ │ │ └── index.json │ │ │ │ │ └── index.json │ │ │ │ ├── PK │ │ │ │ │ ├── Certificates │ │ │ │ │ │ ├── 1 │ │ │ │ │ │ │ └── index.json │ │ │ │ │ │ └── index.json │ │ │ │ │ └── index.json │ │ │ │ ├── PKDefault │ │ │ │ │ ├── Certificates │ │ │ │ │ │ ├── 1 │ │ │ │ │ │ │ └── index.json │ │ │ │ │ │ └── index.json │ │ │ │ │ └── index.json │ │ │ │ ├── db │ │ │ │ │ ├── Certificates │ │ │ │ │ │ ├── 1 │ │ │ │ │ │ │ └── index.json │ │ │ │ │ │ ├── 2 │ │ │ │ │ │ │ └── index.json │ │ │ │ │ │ ├── 3 │ │ │ │ │ │ │ └── index.json │ │ │ │ │ │ └── index.json │ │ │ │ │ ├── Signatures │ │ │ │ │ │ ├── 1 │ │ │ │ │ │ │ └── index.json │ │ │ │ │ │ └── index.json │ │ │ │ │ └── index.json │ │ │ │ ├── dbDefault │ │ │ │ │ ├── Signatures │ │ │ │ │ │ ├── 1 │ │ │ │ │ │ │ └── index.json │ │ │ │ │ │ └── index.json │ │ │ │ │ └── index.json │ │ │ │ ├── dbx │ │ │ │ │ ├── Certificates │ │ │ │ │ │ └── index.json │ │ │ │ │ ├── Signatures │ │ │ │ │ │ ├── 1 │ │ │ │ │ │ │ └── index.json │ │ │ │ │ │ ├── 2 │ │ │ │ │ │ │ └── index.json │ │ │ │ │ │ ├── 3 │ │ │ │ │ │ │ └── index.json │ │ │ │ │ │ └── index.json │ │ │ │ │ └── index.json │ │ │ │ ├── dbxDefault │ │ │ │ │ ├── Signatures │ │ │ │ │ │ ├── 1 │ │ │ │ │ │ │ └── index.json │ │ │ │ │ │ └── index.json │ │ │ │ │ └── index.json │ │ │ │ └── index.json │ │ │ └── index.json │ │ ├── SimpleStorage │ │ │ ├── 1 │ │ │ │ └── index.json │ │ │ └── index.json │ │ ├── USBControllers │ │ │ ├── USB1 │ │ │ │ ├── Ports │ │ │ │ │ ├── 1 │ │ │ │ │ │ └── index.json │ │ │ │ │ ├── 2 │ │ │ │ │ │ └── index.json │ │ │ │ │ └── index.json │ │ │ │ └── index.json │ │ │ ├── USB2 │ │ │ │ ├── Ports │ │ │ │ │ ├── 1 │ │ │ │ │ │ └── index.json │ │ │ │ │ ├── 2 │ │ │ │ │ │ └── index.json │ │ │ │ │ └── index.json │ │ │ │ └── index.json │ │ │ └── index.json │ │ ├── VirtualMedia │ │ │ ├── CD1 │ │ │ │ ├── Certificates │ │ │ │ │ ├── 1 │ │ │ │ │ │ └── index.json │ │ │ │ │ └── index.json │ │ │ │ └── index.json │ │ │ ├── Floppy1 │ │ │ │ ├── Certificates │ │ │ │ │ └── index.json │ │ │ │ └── index.json │ │ │ └── index.json │ │ └── index.json │ └── index.json ├── TaskService │ ├── Tasks │ │ ├── 545 │ │ │ └── index.json │ │ └── index.json │ └── index.json ├── UpdateService │ ├── ClientCertificates │ │ ├── 1 │ │ │ ├── RekeyActionInfo │ │ │ │ └── index.json │ │ │ └── index.json │ │ └── index.json │ ├── FirmwareInventory │ │ ├── AC-RoT0 │ │ │ └── index.json │ │ ├── BIOS │ │ │ └── index.json │ │ ├── BMC │ │ │ └── index.json │ │ ├── SS │ │ │ └── index.json │ │ └── index.json │ ├── SimpleUpdateActionInfo │ │ └── index.json │ └── index.json ├── explorer_config.json ├── index.json └── odata │ └── index.json ├── redfishMockupServer.py ├── requirements.txt └── rfSsdpServer.py /.github/workflows/docker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/.github/workflows/docker.yml -------------------------------------------------------------------------------- /.github/workflows/linters.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/.github/workflows/linters.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/AUTHORS.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/README.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /public-rackmount1/$metadata/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/$metadata/index.xml -------------------------------------------------------------------------------- /public-rackmount1/AccountService/Accounts/1/Certificates/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/AccountService/Accounts/1/Certificates/index.json -------------------------------------------------------------------------------- /public-rackmount1/AccountService/Accounts/1/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/AccountService/Accounts/1/index.json -------------------------------------------------------------------------------- /public-rackmount1/AccountService/Accounts/2/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/AccountService/Accounts/2/index.json -------------------------------------------------------------------------------- /public-rackmount1/AccountService/Accounts/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/AccountService/Accounts/index.json -------------------------------------------------------------------------------- /public-rackmount1/AccountService/ExternalAccountProviders/ExternalRedfishService/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/AccountService/ExternalAccountProviders/ExternalRedfishService/index.json -------------------------------------------------------------------------------- /public-rackmount1/AccountService/ExternalAccountProviders/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/AccountService/ExternalAccountProviders/index.json -------------------------------------------------------------------------------- /public-rackmount1/AccountService/OutboundConnections/1/Certificates/1/RekeyActionInfo/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/AccountService/OutboundConnections/1/Certificates/1/RekeyActionInfo/index.json -------------------------------------------------------------------------------- /public-rackmount1/AccountService/OutboundConnections/1/Certificates/1/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/AccountService/OutboundConnections/1/Certificates/1/index.json -------------------------------------------------------------------------------- /public-rackmount1/AccountService/OutboundConnections/1/Certificates/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/AccountService/OutboundConnections/1/Certificates/index.json -------------------------------------------------------------------------------- /public-rackmount1/AccountService/OutboundConnections/1/ClientCertificates/1/RekeyActionInfo/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/AccountService/OutboundConnections/1/ClientCertificates/1/RekeyActionInfo/index.json -------------------------------------------------------------------------------- /public-rackmount1/AccountService/OutboundConnections/1/ClientCertificates/1/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/AccountService/OutboundConnections/1/ClientCertificates/1/index.json -------------------------------------------------------------------------------- /public-rackmount1/AccountService/OutboundConnections/1/ClientCertificates/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/AccountService/OutboundConnections/1/ClientCertificates/index.json -------------------------------------------------------------------------------- /public-rackmount1/AccountService/OutboundConnections/1/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/AccountService/OutboundConnections/1/index.json -------------------------------------------------------------------------------- /public-rackmount1/AccountService/OutboundConnections/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/AccountService/OutboundConnections/index.json -------------------------------------------------------------------------------- /public-rackmount1/AccountService/Roles/Administrator/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/AccountService/Roles/Administrator/index.json -------------------------------------------------------------------------------- /public-rackmount1/AccountService/Roles/Operator/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/AccountService/Roles/Operator/index.json -------------------------------------------------------------------------------- /public-rackmount1/AccountService/Roles/ReadOnly/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/AccountService/Roles/ReadOnly/index.json -------------------------------------------------------------------------------- /public-rackmount1/AccountService/Roles/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/AccountService/Roles/index.json -------------------------------------------------------------------------------- /public-rackmount1/AccountService/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/AccountService/index.json -------------------------------------------------------------------------------- /public-rackmount1/CertificateService/CertificateLocations/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/CertificateService/CertificateLocations/index.json -------------------------------------------------------------------------------- /public-rackmount1/CertificateService/GenerateCSRActionInfo/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/CertificateService/GenerateCSRActionInfo/index.json -------------------------------------------------------------------------------- /public-rackmount1/CertificateService/ReplaceCertificateActionInfo/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/CertificateService/ReplaceCertificateActionInfo/index.json -------------------------------------------------------------------------------- /public-rackmount1/CertificateService/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/CertificateService/index.json -------------------------------------------------------------------------------- /public-rackmount1/Chassis/1U/Controls/CPU1Freq/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Chassis/1U/Controls/CPU1Freq/index.json -------------------------------------------------------------------------------- /public-rackmount1/Chassis/1U/Controls/PowerLimit/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Chassis/1U/Controls/PowerLimit/index.json -------------------------------------------------------------------------------- /public-rackmount1/Chassis/1U/Controls/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Chassis/1U/Controls/index.json -------------------------------------------------------------------------------- /public-rackmount1/Chassis/1U/EnvironmentMetrics/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Chassis/1U/EnvironmentMetrics/index.json -------------------------------------------------------------------------------- /public-rackmount1/Chassis/1U/Power/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Chassis/1U/Power/index.json -------------------------------------------------------------------------------- /public-rackmount1/Chassis/1U/PowerSubsystem/Batteries/Module1/Metrics/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Chassis/1U/PowerSubsystem/Batteries/Module1/Metrics/index.json -------------------------------------------------------------------------------- /public-rackmount1/Chassis/1U/PowerSubsystem/Batteries/Module1/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Chassis/1U/PowerSubsystem/Batteries/Module1/index.json -------------------------------------------------------------------------------- /public-rackmount1/Chassis/1U/PowerSubsystem/Batteries/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Chassis/1U/PowerSubsystem/Batteries/index.json -------------------------------------------------------------------------------- /public-rackmount1/Chassis/1U/PowerSubsystem/PowerSupplies/Bay1/Assembly/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Chassis/1U/PowerSubsystem/PowerSupplies/Bay1/Assembly/index.json -------------------------------------------------------------------------------- /public-rackmount1/Chassis/1U/PowerSubsystem/PowerSupplies/Bay1/Metrics/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Chassis/1U/PowerSubsystem/PowerSupplies/Bay1/Metrics/index.json -------------------------------------------------------------------------------- /public-rackmount1/Chassis/1U/PowerSubsystem/PowerSupplies/Bay1/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Chassis/1U/PowerSubsystem/PowerSupplies/Bay1/index.json -------------------------------------------------------------------------------- /public-rackmount1/Chassis/1U/PowerSubsystem/PowerSupplies/Bay2/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Chassis/1U/PowerSubsystem/PowerSupplies/Bay2/index.json -------------------------------------------------------------------------------- /public-rackmount1/Chassis/1U/PowerSubsystem/PowerSupplies/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Chassis/1U/PowerSubsystem/PowerSupplies/index.json -------------------------------------------------------------------------------- /public-rackmount1/Chassis/1U/PowerSubsystem/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Chassis/1U/PowerSubsystem/index.json -------------------------------------------------------------------------------- /public-rackmount1/Chassis/1U/Sensors/AmbientTemp/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Chassis/1U/Sensors/AmbientTemp/index.json -------------------------------------------------------------------------------- /public-rackmount1/Chassis/1U/Sensors/Battery1InputCurrent/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Chassis/1U/Sensors/Battery1InputCurrent/index.json -------------------------------------------------------------------------------- /public-rackmount1/Chassis/1U/Sensors/Battery1InputVoltage/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Chassis/1U/Sensors/Battery1InputVoltage/index.json -------------------------------------------------------------------------------- /public-rackmount1/Chassis/1U/Sensors/Battery1OutputCurrent/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Chassis/1U/Sensors/Battery1OutputCurrent/index.json -------------------------------------------------------------------------------- /public-rackmount1/Chassis/1U/Sensors/Battery1OutputVoltage/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Chassis/1U/Sensors/Battery1OutputVoltage/index.json -------------------------------------------------------------------------------- /public-rackmount1/Chassis/1U/Sensors/Battery1StateOfHealth/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Chassis/1U/Sensors/Battery1StateOfHealth/index.json -------------------------------------------------------------------------------- /public-rackmount1/Chassis/1U/Sensors/Battery1Temp/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Chassis/1U/Sensors/Battery1Temp/index.json -------------------------------------------------------------------------------- /public-rackmount1/Chassis/1U/Sensors/CPU1Power/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Chassis/1U/Sensors/CPU1Power/index.json -------------------------------------------------------------------------------- /public-rackmount1/Chassis/1U/Sensors/CPU1Temp/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Chassis/1U/Sensors/CPU1Temp/index.json -------------------------------------------------------------------------------- /public-rackmount1/Chassis/1U/Sensors/CPUFan1/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Chassis/1U/Sensors/CPUFan1/index.json -------------------------------------------------------------------------------- /public-rackmount1/Chassis/1U/Sensors/CPUFan2/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Chassis/1U/Sensors/CPUFan2/index.json -------------------------------------------------------------------------------- /public-rackmount1/Chassis/1U/Sensors/DIMM1Temp/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Chassis/1U/Sensors/DIMM1Temp/index.json -------------------------------------------------------------------------------- /public-rackmount1/Chassis/1U/Sensors/DIMM2Temp/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Chassis/1U/Sensors/DIMM2Temp/index.json -------------------------------------------------------------------------------- /public-rackmount1/Chassis/1U/Sensors/DIMM3Temp/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Chassis/1U/Sensors/DIMM3Temp/index.json -------------------------------------------------------------------------------- /public-rackmount1/Chassis/1U/Sensors/ExhaustTemp/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Chassis/1U/Sensors/ExhaustTemp/index.json -------------------------------------------------------------------------------- /public-rackmount1/Chassis/1U/Sensors/FanBay1/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Chassis/1U/Sensors/FanBay1/index.json -------------------------------------------------------------------------------- /public-rackmount1/Chassis/1U/Sensors/FanBay2/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Chassis/1U/Sensors/FanBay2/index.json -------------------------------------------------------------------------------- /public-rackmount1/Chassis/1U/Sensors/IntakeTemp/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Chassis/1U/Sensors/IntakeTemp/index.json -------------------------------------------------------------------------------- /public-rackmount1/Chassis/1U/Sensors/PS1Energy/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Chassis/1U/Sensors/PS1Energy/index.json -------------------------------------------------------------------------------- /public-rackmount1/Chassis/1U/Sensors/PS1Frequency/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Chassis/1U/Sensors/PS1Frequency/index.json -------------------------------------------------------------------------------- /public-rackmount1/Chassis/1U/Sensors/PS1InputCurrent/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Chassis/1U/Sensors/PS1InputCurrent/index.json -------------------------------------------------------------------------------- /public-rackmount1/Chassis/1U/Sensors/PS1InputPower/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Chassis/1U/Sensors/PS1InputPower/index.json -------------------------------------------------------------------------------- /public-rackmount1/Chassis/1U/Sensors/PS1InputVoltage/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Chassis/1U/Sensors/PS1InputVoltage/index.json -------------------------------------------------------------------------------- /public-rackmount1/Chassis/1U/Sensors/PS1Out12V/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Chassis/1U/Sensors/PS1Out12V/index.json -------------------------------------------------------------------------------- /public-rackmount1/Chassis/1U/Sensors/PS1Out12VCurrent/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Chassis/1U/Sensors/PS1Out12VCurrent/index.json -------------------------------------------------------------------------------- /public-rackmount1/Chassis/1U/Sensors/PS1Out3V/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Chassis/1U/Sensors/PS1Out3V/index.json -------------------------------------------------------------------------------- /public-rackmount1/Chassis/1U/Sensors/PS1Out3VCurrent/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Chassis/1U/Sensors/PS1Out3VCurrent/index.json -------------------------------------------------------------------------------- /public-rackmount1/Chassis/1U/Sensors/PS1Out5V/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Chassis/1U/Sensors/PS1Out5V/index.json -------------------------------------------------------------------------------- /public-rackmount1/Chassis/1U/Sensors/PS1Out5VCurrent/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Chassis/1U/Sensors/PS1Out5VCurrent/index.json -------------------------------------------------------------------------------- /public-rackmount1/Chassis/1U/Sensors/PS2Energy/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Chassis/1U/Sensors/PS2Energy/index.json -------------------------------------------------------------------------------- /public-rackmount1/Chassis/1U/Sensors/PS2Frequency/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Chassis/1U/Sensors/PS2Frequency/index.json -------------------------------------------------------------------------------- /public-rackmount1/Chassis/1U/Sensors/PS2InputCurrent/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Chassis/1U/Sensors/PS2InputCurrent/index.json -------------------------------------------------------------------------------- /public-rackmount1/Chassis/1U/Sensors/PS2InputPower/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Chassis/1U/Sensors/PS2InputPower/index.json -------------------------------------------------------------------------------- /public-rackmount1/Chassis/1U/Sensors/PS2InputVoltage/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Chassis/1U/Sensors/PS2InputVoltage/index.json -------------------------------------------------------------------------------- /public-rackmount1/Chassis/1U/Sensors/PS2Out12V/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Chassis/1U/Sensors/PS2Out12V/index.json -------------------------------------------------------------------------------- /public-rackmount1/Chassis/1U/Sensors/PS2Out12VCurrent/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Chassis/1U/Sensors/PS2Out12VCurrent/index.json -------------------------------------------------------------------------------- /public-rackmount1/Chassis/1U/Sensors/PS2Out3V/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Chassis/1U/Sensors/PS2Out3V/index.json -------------------------------------------------------------------------------- /public-rackmount1/Chassis/1U/Sensors/PS2Out3VCurrent/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Chassis/1U/Sensors/PS2Out3VCurrent/index.json -------------------------------------------------------------------------------- /public-rackmount1/Chassis/1U/Sensors/PS2Out5V/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Chassis/1U/Sensors/PS2Out5V/index.json -------------------------------------------------------------------------------- /public-rackmount1/Chassis/1U/Sensors/PS2Out5VCurrent/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Chassis/1U/Sensors/PS2Out5VCurrent/index.json -------------------------------------------------------------------------------- /public-rackmount1/Chassis/1U/Sensors/TotalEnergy/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Chassis/1U/Sensors/TotalEnergy/index.json -------------------------------------------------------------------------------- /public-rackmount1/Chassis/1U/Sensors/TotalPower/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Chassis/1U/Sensors/TotalPower/index.json -------------------------------------------------------------------------------- /public-rackmount1/Chassis/1U/Sensors/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Chassis/1U/Sensors/index.json -------------------------------------------------------------------------------- /public-rackmount1/Chassis/1U/Thermal/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Chassis/1U/Thermal/index.json -------------------------------------------------------------------------------- /public-rackmount1/Chassis/1U/ThermalSubsystem/Fans/Bay1/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Chassis/1U/ThermalSubsystem/Fans/Bay1/index.json -------------------------------------------------------------------------------- /public-rackmount1/Chassis/1U/ThermalSubsystem/Fans/Bay2/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Chassis/1U/ThermalSubsystem/Fans/Bay2/index.json -------------------------------------------------------------------------------- /public-rackmount1/Chassis/1U/ThermalSubsystem/Fans/CPU1/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Chassis/1U/ThermalSubsystem/Fans/CPU1/index.json -------------------------------------------------------------------------------- /public-rackmount1/Chassis/1U/ThermalSubsystem/Fans/CPU2/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Chassis/1U/ThermalSubsystem/Fans/CPU2/index.json -------------------------------------------------------------------------------- /public-rackmount1/Chassis/1U/ThermalSubsystem/Fans/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Chassis/1U/ThermalSubsystem/Fans/index.json -------------------------------------------------------------------------------- /public-rackmount1/Chassis/1U/ThermalSubsystem/Heaters/CPU1Heater/Metrics/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Chassis/1U/ThermalSubsystem/Heaters/CPU1Heater/Metrics/index.json -------------------------------------------------------------------------------- /public-rackmount1/Chassis/1U/ThermalSubsystem/Heaters/CPU1Heater/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Chassis/1U/ThermalSubsystem/Heaters/CPU1Heater/index.json -------------------------------------------------------------------------------- /public-rackmount1/Chassis/1U/ThermalSubsystem/Heaters/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Chassis/1U/ThermalSubsystem/Heaters/index.json -------------------------------------------------------------------------------- /public-rackmount1/Chassis/1U/ThermalSubsystem/ThermalMetrics/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Chassis/1U/ThermalSubsystem/ThermalMetrics/index.json -------------------------------------------------------------------------------- /public-rackmount1/Chassis/1U/ThermalSubsystem/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Chassis/1U/ThermalSubsystem/index.json -------------------------------------------------------------------------------- /public-rackmount1/Chassis/1U/TrustedComponents/AC-RoT0/Certificates/DeviceCert/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Chassis/1U/TrustedComponents/AC-RoT0/Certificates/DeviceCert/index.json -------------------------------------------------------------------------------- /public-rackmount1/Chassis/1U/TrustedComponents/AC-RoT0/Certificates/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Chassis/1U/TrustedComponents/AC-RoT0/Certificates/index.json -------------------------------------------------------------------------------- /public-rackmount1/Chassis/1U/TrustedComponents/AC-RoT0/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Chassis/1U/TrustedComponents/AC-RoT0/index.json -------------------------------------------------------------------------------- /public-rackmount1/Chassis/1U/TrustedComponents/TPM/Certificates/EKCert/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Chassis/1U/TrustedComponents/TPM/Certificates/EKCert/index.json -------------------------------------------------------------------------------- /public-rackmount1/Chassis/1U/TrustedComponents/TPM/Certificates/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Chassis/1U/TrustedComponents/TPM/Certificates/index.json -------------------------------------------------------------------------------- /public-rackmount1/Chassis/1U/TrustedComponents/TPM/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Chassis/1U/TrustedComponents/TPM/index.json -------------------------------------------------------------------------------- /public-rackmount1/Chassis/1U/TrustedComponents/iRoT0/Certificates/DeviceCert/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Chassis/1U/TrustedComponents/iRoT0/Certificates/DeviceCert/index.json -------------------------------------------------------------------------------- /public-rackmount1/Chassis/1U/TrustedComponents/iRoT0/Certificates/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Chassis/1U/TrustedComponents/iRoT0/Certificates/index.json -------------------------------------------------------------------------------- /public-rackmount1/Chassis/1U/TrustedComponents/iRoT0/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Chassis/1U/TrustedComponents/iRoT0/index.json -------------------------------------------------------------------------------- /public-rackmount1/Chassis/1U/TrustedComponents/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Chassis/1U/TrustedComponents/index.json -------------------------------------------------------------------------------- /public-rackmount1/Chassis/1U/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Chassis/1U/index.json -------------------------------------------------------------------------------- /public-rackmount1/Chassis/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Chassis/index.json -------------------------------------------------------------------------------- /public-rackmount1/ComponentIntegrity/SS-SPDM-0/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/ComponentIntegrity/SS-SPDM-0/index.json -------------------------------------------------------------------------------- /public-rackmount1/ComponentIntegrity/SS-SPDM-1/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/ComponentIntegrity/SS-SPDM-1/index.json -------------------------------------------------------------------------------- /public-rackmount1/ComponentIntegrity/TPM-0/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/ComponentIntegrity/TPM-0/index.json -------------------------------------------------------------------------------- /public-rackmount1/ComponentIntegrity/USB-Integrity/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/ComponentIntegrity/USB-Integrity/index.json -------------------------------------------------------------------------------- /public-rackmount1/ComponentIntegrity/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/ComponentIntegrity/index.json -------------------------------------------------------------------------------- /public-rackmount1/EventService/SubmitTestEventActionInfo/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/EventService/SubmitTestEventActionInfo/index.json -------------------------------------------------------------------------------- /public-rackmount1/EventService/Subscriptions/1/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/EventService/Subscriptions/1/index.json -------------------------------------------------------------------------------- /public-rackmount1/EventService/Subscriptions/2/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/EventService/Subscriptions/2/index.json -------------------------------------------------------------------------------- /public-rackmount1/EventService/Subscriptions/3/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/EventService/Subscriptions/3/index.json -------------------------------------------------------------------------------- /public-rackmount1/EventService/Subscriptions/4/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/EventService/Subscriptions/4/index.json -------------------------------------------------------------------------------- /public-rackmount1/EventService/Subscriptions/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/EventService/Subscriptions/index.json -------------------------------------------------------------------------------- /public-rackmount1/EventService/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/EventService/index.json -------------------------------------------------------------------------------- /public-rackmount1/KeyService/NVMeoFKeyPolicies/0/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/KeyService/NVMeoFKeyPolicies/0/index.json -------------------------------------------------------------------------------- /public-rackmount1/KeyService/NVMeoFKeyPolicies/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/KeyService/NVMeoFKeyPolicies/index.json -------------------------------------------------------------------------------- /public-rackmount1/KeyService/NVMeoFSecrets/0/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/KeyService/NVMeoFSecrets/0/index.json -------------------------------------------------------------------------------- /public-rackmount1/KeyService/NVMeoFSecrets/1/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/KeyService/NVMeoFSecrets/1/index.json -------------------------------------------------------------------------------- /public-rackmount1/KeyService/NVMeoFSecrets/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/KeyService/NVMeoFSecrets/index.json -------------------------------------------------------------------------------- /public-rackmount1/KeyService/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/KeyService/index.json -------------------------------------------------------------------------------- /public-rackmount1/Managers/BMC/DedicatedNetworkPorts/1/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Managers/BMC/DedicatedNetworkPorts/1/index.json -------------------------------------------------------------------------------- /public-rackmount1/Managers/BMC/DedicatedNetworkPorts/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Managers/BMC/DedicatedNetworkPorts/index.json -------------------------------------------------------------------------------- /public-rackmount1/Managers/BMC/EthernetInterfaces/ToHost/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Managers/BMC/EthernetInterfaces/ToHost/index.json -------------------------------------------------------------------------------- /public-rackmount1/Managers/BMC/EthernetInterfaces/eth0/SD/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Managers/BMC/EthernetInterfaces/eth0/SD/index.json -------------------------------------------------------------------------------- /public-rackmount1/Managers/BMC/EthernetInterfaces/eth0/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Managers/BMC/EthernetInterfaces/eth0/index.json -------------------------------------------------------------------------------- /public-rackmount1/Managers/BMC/EthernetInterfaces/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Managers/BMC/EthernetInterfaces/index.json -------------------------------------------------------------------------------- /public-rackmount1/Managers/BMC/HostInterfaces/1/HostEthernetInterfaces/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Managers/BMC/HostInterfaces/1/HostEthernetInterfaces/index.json -------------------------------------------------------------------------------- /public-rackmount1/Managers/BMC/HostInterfaces/1/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Managers/BMC/HostInterfaces/1/index.json -------------------------------------------------------------------------------- /public-rackmount1/Managers/BMC/HostInterfaces/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Managers/BMC/HostInterfaces/index.json -------------------------------------------------------------------------------- /public-rackmount1/Managers/BMC/LogServices/Log/Entries/1/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Managers/BMC/LogServices/Log/Entries/1/index.json -------------------------------------------------------------------------------- /public-rackmount1/Managers/BMC/LogServices/Log/Entries/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Managers/BMC/LogServices/Log/Entries/index.json -------------------------------------------------------------------------------- /public-rackmount1/Managers/BMC/LogServices/Log/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Managers/BMC/LogServices/Log/index.json -------------------------------------------------------------------------------- /public-rackmount1/Managers/BMC/LogServices/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Managers/BMC/LogServices/index.json -------------------------------------------------------------------------------- /public-rackmount1/Managers/BMC/NetworkProtocol/HTTPS/Certificates/1/RekeyActionInfo/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Managers/BMC/NetworkProtocol/HTTPS/Certificates/1/RekeyActionInfo/index.json -------------------------------------------------------------------------------- /public-rackmount1/Managers/BMC/NetworkProtocol/HTTPS/Certificates/1/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Managers/BMC/NetworkProtocol/HTTPS/Certificates/1/index.json -------------------------------------------------------------------------------- /public-rackmount1/Managers/BMC/NetworkProtocol/HTTPS/Certificates/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Managers/BMC/NetworkProtocol/HTTPS/Certificates/index.json -------------------------------------------------------------------------------- /public-rackmount1/Managers/BMC/NetworkProtocol/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Managers/BMC/NetworkProtocol/index.json -------------------------------------------------------------------------------- /public-rackmount1/Managers/BMC/SecurityPolicy/SPDM/RevokedCertificates/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Managers/BMC/SecurityPolicy/SPDM/RevokedCertificates/index.json -------------------------------------------------------------------------------- /public-rackmount1/Managers/BMC/SecurityPolicy/SPDM/TrustedCertificates/contoso-root/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Managers/BMC/SecurityPolicy/SPDM/TrustedCertificates/contoso-root/index.json -------------------------------------------------------------------------------- /public-rackmount1/Managers/BMC/SecurityPolicy/SPDM/TrustedCertificates/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Managers/BMC/SecurityPolicy/SPDM/TrustedCertificates/index.json -------------------------------------------------------------------------------- /public-rackmount1/Managers/BMC/SecurityPolicy/TLS/Client/RevokedCertificates/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Managers/BMC/SecurityPolicy/TLS/Client/RevokedCertificates/index.json -------------------------------------------------------------------------------- /public-rackmount1/Managers/BMC/SecurityPolicy/TLS/Client/TrustedCertificates/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Managers/BMC/SecurityPolicy/TLS/Client/TrustedCertificates/index.json -------------------------------------------------------------------------------- /public-rackmount1/Managers/BMC/SecurityPolicy/TLS/Server/RevokedCertificates/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Managers/BMC/SecurityPolicy/TLS/Server/RevokedCertificates/index.json -------------------------------------------------------------------------------- /public-rackmount1/Managers/BMC/SecurityPolicy/TLS/Server/TrustedCertificates/contoso-root/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Managers/BMC/SecurityPolicy/TLS/Server/TrustedCertificates/contoso-root/index.json -------------------------------------------------------------------------------- /public-rackmount1/Managers/BMC/SecurityPolicy/TLS/Server/TrustedCertificates/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Managers/BMC/SecurityPolicy/TLS/Server/TrustedCertificates/index.json -------------------------------------------------------------------------------- /public-rackmount1/Managers/BMC/SecurityPolicy/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Managers/BMC/SecurityPolicy/index.json -------------------------------------------------------------------------------- /public-rackmount1/Managers/BMC/SerialInterfaces/TTY0/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Managers/BMC/SerialInterfaces/TTY0/index.json -------------------------------------------------------------------------------- /public-rackmount1/Managers/BMC/SerialInterfaces/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Managers/BMC/SerialInterfaces/index.json -------------------------------------------------------------------------------- /public-rackmount1/Managers/BMC/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Managers/BMC/index.json -------------------------------------------------------------------------------- /public-rackmount1/Managers/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Managers/index.json -------------------------------------------------------------------------------- /public-rackmount1/Registries/Base.1.5.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Registries/Base.1.5.0.json -------------------------------------------------------------------------------- /public-rackmount1/Registries/Base.1.5.0/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Registries/Base.1.5.0/index.json -------------------------------------------------------------------------------- /public-rackmount1/Registries/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Registries/index.json -------------------------------------------------------------------------------- /public-rackmount1/SessionService/Sessions/1234567890ABCDEF/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/SessionService/Sessions/1234567890ABCDEF/index.json -------------------------------------------------------------------------------- /public-rackmount1/SessionService/Sessions/1234567890ABCDEG/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/SessionService/Sessions/1234567890ABCDEG/index.json -------------------------------------------------------------------------------- /public-rackmount1/SessionService/Sessions/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/SessionService/Sessions/index.json -------------------------------------------------------------------------------- /public-rackmount1/SessionService/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/SessionService/index.json -------------------------------------------------------------------------------- /public-rackmount1/Systems/437XR1138R2/Bios/Settings/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Systems/437XR1138R2/Bios/Settings/index.json -------------------------------------------------------------------------------- /public-rackmount1/Systems/437XR1138R2/Bios/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Systems/437XR1138R2/Bios/index.json -------------------------------------------------------------------------------- /public-rackmount1/Systems/437XR1138R2/Certificates/contoso-root/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Systems/437XR1138R2/Certificates/contoso-root/index.json -------------------------------------------------------------------------------- /public-rackmount1/Systems/437XR1138R2/Certificates/contoso-subca/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Systems/437XR1138R2/Certificates/contoso-subca/index.json -------------------------------------------------------------------------------- /public-rackmount1/Systems/437XR1138R2/Certificates/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Systems/437XR1138R2/Certificates/index.json -------------------------------------------------------------------------------- /public-rackmount1/Systems/437XR1138R2/EthernetInterfaces/12446A3B0411/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Systems/437XR1138R2/EthernetInterfaces/12446A3B0411/index.json -------------------------------------------------------------------------------- /public-rackmount1/Systems/437XR1138R2/EthernetInterfaces/12446A3B8890/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Systems/437XR1138R2/EthernetInterfaces/12446A3B8890/index.json -------------------------------------------------------------------------------- /public-rackmount1/Systems/437XR1138R2/EthernetInterfaces/ToManager/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Systems/437XR1138R2/EthernetInterfaces/ToManager/index.json -------------------------------------------------------------------------------- /public-rackmount1/Systems/437XR1138R2/EthernetInterfaces/VLAN1/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Systems/437XR1138R2/EthernetInterfaces/VLAN1/index.json -------------------------------------------------------------------------------- /public-rackmount1/Systems/437XR1138R2/EthernetInterfaces/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Systems/437XR1138R2/EthernetInterfaces/index.json -------------------------------------------------------------------------------- /public-rackmount1/Systems/437XR1138R2/GraphicsControllers/GPU1/Ports/DisplayPort/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Systems/437XR1138R2/GraphicsControllers/GPU1/Ports/DisplayPort/index.json -------------------------------------------------------------------------------- /public-rackmount1/Systems/437XR1138R2/GraphicsControllers/GPU1/Ports/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Systems/437XR1138R2/GraphicsControllers/GPU1/Ports/index.json -------------------------------------------------------------------------------- /public-rackmount1/Systems/437XR1138R2/GraphicsControllers/GPU1/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Systems/437XR1138R2/GraphicsControllers/GPU1/index.json -------------------------------------------------------------------------------- /public-rackmount1/Systems/437XR1138R2/GraphicsControllers/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Systems/437XR1138R2/GraphicsControllers/index.json -------------------------------------------------------------------------------- /public-rackmount1/Systems/437XR1138R2/LogServices/Log1/Entries/1/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Systems/437XR1138R2/LogServices/Log1/Entries/1/index.json -------------------------------------------------------------------------------- /public-rackmount1/Systems/437XR1138R2/LogServices/Log1/Entries/2/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Systems/437XR1138R2/LogServices/Log1/Entries/2/index.json -------------------------------------------------------------------------------- /public-rackmount1/Systems/437XR1138R2/LogServices/Log1/Entries/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Systems/437XR1138R2/LogServices/Log1/Entries/index.json -------------------------------------------------------------------------------- /public-rackmount1/Systems/437XR1138R2/LogServices/Log1/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Systems/437XR1138R2/LogServices/Log1/index.json -------------------------------------------------------------------------------- /public-rackmount1/Systems/437XR1138R2/LogServices/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Systems/437XR1138R2/LogServices/index.json -------------------------------------------------------------------------------- /public-rackmount1/Systems/437XR1138R2/Memory/DIMM1/EnvironmentMetrics/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Systems/437XR1138R2/Memory/DIMM1/EnvironmentMetrics/index.json -------------------------------------------------------------------------------- /public-rackmount1/Systems/437XR1138R2/Memory/DIMM1/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Systems/437XR1138R2/Memory/DIMM1/index.json -------------------------------------------------------------------------------- /public-rackmount1/Systems/437XR1138R2/Memory/DIMM2/EnvironmentMetrics/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Systems/437XR1138R2/Memory/DIMM2/EnvironmentMetrics/index.json -------------------------------------------------------------------------------- /public-rackmount1/Systems/437XR1138R2/Memory/DIMM2/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Systems/437XR1138R2/Memory/DIMM2/index.json -------------------------------------------------------------------------------- /public-rackmount1/Systems/437XR1138R2/Memory/DIMM3/EnvironmentMetrics/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Systems/437XR1138R2/Memory/DIMM3/EnvironmentMetrics/index.json -------------------------------------------------------------------------------- /public-rackmount1/Systems/437XR1138R2/Memory/DIMM3/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Systems/437XR1138R2/Memory/DIMM3/index.json -------------------------------------------------------------------------------- /public-rackmount1/Systems/437XR1138R2/Memory/DIMM4/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Systems/437XR1138R2/Memory/DIMM4/index.json -------------------------------------------------------------------------------- /public-rackmount1/Systems/437XR1138R2/Memory/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Systems/437XR1138R2/Memory/index.json -------------------------------------------------------------------------------- /public-rackmount1/Systems/437XR1138R2/Processors/CPU1/EnvironmentMetrics/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Systems/437XR1138R2/Processors/CPU1/EnvironmentMetrics/index.json -------------------------------------------------------------------------------- /public-rackmount1/Systems/437XR1138R2/Processors/CPU1/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Systems/437XR1138R2/Processors/CPU1/index.json -------------------------------------------------------------------------------- /public-rackmount1/Systems/437XR1138R2/Processors/CPU2/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Systems/437XR1138R2/Processors/CPU2/index.json -------------------------------------------------------------------------------- /public-rackmount1/Systems/437XR1138R2/Processors/FPGA1/AccelerationFunctions/Compression/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Systems/437XR1138R2/Processors/FPGA1/AccelerationFunctions/Compression/index.json -------------------------------------------------------------------------------- /public-rackmount1/Systems/437XR1138R2/Processors/FPGA1/AccelerationFunctions/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Systems/437XR1138R2/Processors/FPGA1/AccelerationFunctions/index.json -------------------------------------------------------------------------------- /public-rackmount1/Systems/437XR1138R2/Processors/FPGA1/ProcessorMetrics/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Systems/437XR1138R2/Processors/FPGA1/ProcessorMetrics/index.json -------------------------------------------------------------------------------- /public-rackmount1/Systems/437XR1138R2/Processors/FPGA1/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Systems/437XR1138R2/Processors/FPGA1/index.json -------------------------------------------------------------------------------- /public-rackmount1/Systems/437XR1138R2/Processors/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Systems/437XR1138R2/Processors/index.json -------------------------------------------------------------------------------- /public-rackmount1/Systems/437XR1138R2/SecureBoot/SecureBootDatabases/KEK/Certificates/1/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Systems/437XR1138R2/SecureBoot/SecureBootDatabases/KEK/Certificates/1/index.json -------------------------------------------------------------------------------- /public-rackmount1/Systems/437XR1138R2/SecureBoot/SecureBootDatabases/KEK/Certificates/2/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Systems/437XR1138R2/SecureBoot/SecureBootDatabases/KEK/Certificates/2/index.json -------------------------------------------------------------------------------- /public-rackmount1/Systems/437XR1138R2/SecureBoot/SecureBootDatabases/KEK/Certificates/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Systems/437XR1138R2/SecureBoot/SecureBootDatabases/KEK/Certificates/index.json -------------------------------------------------------------------------------- /public-rackmount1/Systems/437XR1138R2/SecureBoot/SecureBootDatabases/KEK/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Systems/437XR1138R2/SecureBoot/SecureBootDatabases/KEK/index.json -------------------------------------------------------------------------------- /public-rackmount1/Systems/437XR1138R2/SecureBoot/SecureBootDatabases/KEKDefault/Certificates/1/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Systems/437XR1138R2/SecureBoot/SecureBootDatabases/KEKDefault/Certificates/1/index.json -------------------------------------------------------------------------------- /public-rackmount1/Systems/437XR1138R2/SecureBoot/SecureBootDatabases/KEKDefault/Certificates/2/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Systems/437XR1138R2/SecureBoot/SecureBootDatabases/KEKDefault/Certificates/2/index.json -------------------------------------------------------------------------------- /public-rackmount1/Systems/437XR1138R2/SecureBoot/SecureBootDatabases/KEKDefault/Certificates/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Systems/437XR1138R2/SecureBoot/SecureBootDatabases/KEKDefault/Certificates/index.json -------------------------------------------------------------------------------- /public-rackmount1/Systems/437XR1138R2/SecureBoot/SecureBootDatabases/KEKDefault/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Systems/437XR1138R2/SecureBoot/SecureBootDatabases/KEKDefault/index.json -------------------------------------------------------------------------------- /public-rackmount1/Systems/437XR1138R2/SecureBoot/SecureBootDatabases/PK/Certificates/1/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Systems/437XR1138R2/SecureBoot/SecureBootDatabases/PK/Certificates/1/index.json -------------------------------------------------------------------------------- /public-rackmount1/Systems/437XR1138R2/SecureBoot/SecureBootDatabases/PK/Certificates/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Systems/437XR1138R2/SecureBoot/SecureBootDatabases/PK/Certificates/index.json -------------------------------------------------------------------------------- /public-rackmount1/Systems/437XR1138R2/SecureBoot/SecureBootDatabases/PK/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Systems/437XR1138R2/SecureBoot/SecureBootDatabases/PK/index.json -------------------------------------------------------------------------------- /public-rackmount1/Systems/437XR1138R2/SecureBoot/SecureBootDatabases/PKDefault/Certificates/1/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Systems/437XR1138R2/SecureBoot/SecureBootDatabases/PKDefault/Certificates/1/index.json -------------------------------------------------------------------------------- /public-rackmount1/Systems/437XR1138R2/SecureBoot/SecureBootDatabases/PKDefault/Certificates/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Systems/437XR1138R2/SecureBoot/SecureBootDatabases/PKDefault/Certificates/index.json -------------------------------------------------------------------------------- /public-rackmount1/Systems/437XR1138R2/SecureBoot/SecureBootDatabases/PKDefault/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Systems/437XR1138R2/SecureBoot/SecureBootDatabases/PKDefault/index.json -------------------------------------------------------------------------------- /public-rackmount1/Systems/437XR1138R2/SecureBoot/SecureBootDatabases/db/Certificates/1/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Systems/437XR1138R2/SecureBoot/SecureBootDatabases/db/Certificates/1/index.json -------------------------------------------------------------------------------- /public-rackmount1/Systems/437XR1138R2/SecureBoot/SecureBootDatabases/db/Certificates/2/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Systems/437XR1138R2/SecureBoot/SecureBootDatabases/db/Certificates/2/index.json -------------------------------------------------------------------------------- /public-rackmount1/Systems/437XR1138R2/SecureBoot/SecureBootDatabases/db/Certificates/3/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Systems/437XR1138R2/SecureBoot/SecureBootDatabases/db/Certificates/3/index.json -------------------------------------------------------------------------------- /public-rackmount1/Systems/437XR1138R2/SecureBoot/SecureBootDatabases/db/Certificates/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Systems/437XR1138R2/SecureBoot/SecureBootDatabases/db/Certificates/index.json -------------------------------------------------------------------------------- /public-rackmount1/Systems/437XR1138R2/SecureBoot/SecureBootDatabases/db/Signatures/1/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Systems/437XR1138R2/SecureBoot/SecureBootDatabases/db/Signatures/1/index.json -------------------------------------------------------------------------------- /public-rackmount1/Systems/437XR1138R2/SecureBoot/SecureBootDatabases/db/Signatures/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Systems/437XR1138R2/SecureBoot/SecureBootDatabases/db/Signatures/index.json -------------------------------------------------------------------------------- /public-rackmount1/Systems/437XR1138R2/SecureBoot/SecureBootDatabases/db/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Systems/437XR1138R2/SecureBoot/SecureBootDatabases/db/index.json -------------------------------------------------------------------------------- /public-rackmount1/Systems/437XR1138R2/SecureBoot/SecureBootDatabases/dbDefault/Signatures/1/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Systems/437XR1138R2/SecureBoot/SecureBootDatabases/dbDefault/Signatures/1/index.json -------------------------------------------------------------------------------- /public-rackmount1/Systems/437XR1138R2/SecureBoot/SecureBootDatabases/dbDefault/Signatures/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Systems/437XR1138R2/SecureBoot/SecureBootDatabases/dbDefault/Signatures/index.json -------------------------------------------------------------------------------- /public-rackmount1/Systems/437XR1138R2/SecureBoot/SecureBootDatabases/dbDefault/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Systems/437XR1138R2/SecureBoot/SecureBootDatabases/dbDefault/index.json -------------------------------------------------------------------------------- /public-rackmount1/Systems/437XR1138R2/SecureBoot/SecureBootDatabases/dbx/Certificates/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Systems/437XR1138R2/SecureBoot/SecureBootDatabases/dbx/Certificates/index.json -------------------------------------------------------------------------------- /public-rackmount1/Systems/437XR1138R2/SecureBoot/SecureBootDatabases/dbx/Signatures/1/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Systems/437XR1138R2/SecureBoot/SecureBootDatabases/dbx/Signatures/1/index.json -------------------------------------------------------------------------------- /public-rackmount1/Systems/437XR1138R2/SecureBoot/SecureBootDatabases/dbx/Signatures/2/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Systems/437XR1138R2/SecureBoot/SecureBootDatabases/dbx/Signatures/2/index.json -------------------------------------------------------------------------------- /public-rackmount1/Systems/437XR1138R2/SecureBoot/SecureBootDatabases/dbx/Signatures/3/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Systems/437XR1138R2/SecureBoot/SecureBootDatabases/dbx/Signatures/3/index.json -------------------------------------------------------------------------------- /public-rackmount1/Systems/437XR1138R2/SecureBoot/SecureBootDatabases/dbx/Signatures/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Systems/437XR1138R2/SecureBoot/SecureBootDatabases/dbx/Signatures/index.json -------------------------------------------------------------------------------- /public-rackmount1/Systems/437XR1138R2/SecureBoot/SecureBootDatabases/dbx/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Systems/437XR1138R2/SecureBoot/SecureBootDatabases/dbx/index.json -------------------------------------------------------------------------------- /public-rackmount1/Systems/437XR1138R2/SecureBoot/SecureBootDatabases/dbxDefault/Signatures/1/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Systems/437XR1138R2/SecureBoot/SecureBootDatabases/dbxDefault/Signatures/1/index.json -------------------------------------------------------------------------------- /public-rackmount1/Systems/437XR1138R2/SecureBoot/SecureBootDatabases/dbxDefault/Signatures/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Systems/437XR1138R2/SecureBoot/SecureBootDatabases/dbxDefault/Signatures/index.json -------------------------------------------------------------------------------- /public-rackmount1/Systems/437XR1138R2/SecureBoot/SecureBootDatabases/dbxDefault/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Systems/437XR1138R2/SecureBoot/SecureBootDatabases/dbxDefault/index.json -------------------------------------------------------------------------------- /public-rackmount1/Systems/437XR1138R2/SecureBoot/SecureBootDatabases/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Systems/437XR1138R2/SecureBoot/SecureBootDatabases/index.json -------------------------------------------------------------------------------- /public-rackmount1/Systems/437XR1138R2/SecureBoot/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Systems/437XR1138R2/SecureBoot/index.json -------------------------------------------------------------------------------- /public-rackmount1/Systems/437XR1138R2/SimpleStorage/1/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Systems/437XR1138R2/SimpleStorage/1/index.json -------------------------------------------------------------------------------- /public-rackmount1/Systems/437XR1138R2/SimpleStorage/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Systems/437XR1138R2/SimpleStorage/index.json -------------------------------------------------------------------------------- /public-rackmount1/Systems/437XR1138R2/USBControllers/USB1/Ports/1/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Systems/437XR1138R2/USBControllers/USB1/Ports/1/index.json -------------------------------------------------------------------------------- /public-rackmount1/Systems/437XR1138R2/USBControllers/USB1/Ports/2/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Systems/437XR1138R2/USBControllers/USB1/Ports/2/index.json -------------------------------------------------------------------------------- /public-rackmount1/Systems/437XR1138R2/USBControllers/USB1/Ports/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Systems/437XR1138R2/USBControllers/USB1/Ports/index.json -------------------------------------------------------------------------------- /public-rackmount1/Systems/437XR1138R2/USBControllers/USB1/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Systems/437XR1138R2/USBControllers/USB1/index.json -------------------------------------------------------------------------------- /public-rackmount1/Systems/437XR1138R2/USBControllers/USB2/Ports/1/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Systems/437XR1138R2/USBControllers/USB2/Ports/1/index.json -------------------------------------------------------------------------------- /public-rackmount1/Systems/437XR1138R2/USBControllers/USB2/Ports/2/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Systems/437XR1138R2/USBControllers/USB2/Ports/2/index.json -------------------------------------------------------------------------------- /public-rackmount1/Systems/437XR1138R2/USBControllers/USB2/Ports/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Systems/437XR1138R2/USBControllers/USB2/Ports/index.json -------------------------------------------------------------------------------- /public-rackmount1/Systems/437XR1138R2/USBControllers/USB2/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Systems/437XR1138R2/USBControllers/USB2/index.json -------------------------------------------------------------------------------- /public-rackmount1/Systems/437XR1138R2/USBControllers/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Systems/437XR1138R2/USBControllers/index.json -------------------------------------------------------------------------------- /public-rackmount1/Systems/437XR1138R2/VirtualMedia/CD1/Certificates/1/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Systems/437XR1138R2/VirtualMedia/CD1/Certificates/1/index.json -------------------------------------------------------------------------------- /public-rackmount1/Systems/437XR1138R2/VirtualMedia/CD1/Certificates/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Systems/437XR1138R2/VirtualMedia/CD1/Certificates/index.json -------------------------------------------------------------------------------- /public-rackmount1/Systems/437XR1138R2/VirtualMedia/CD1/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Systems/437XR1138R2/VirtualMedia/CD1/index.json -------------------------------------------------------------------------------- /public-rackmount1/Systems/437XR1138R2/VirtualMedia/Floppy1/Certificates/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Systems/437XR1138R2/VirtualMedia/Floppy1/Certificates/index.json -------------------------------------------------------------------------------- /public-rackmount1/Systems/437XR1138R2/VirtualMedia/Floppy1/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Systems/437XR1138R2/VirtualMedia/Floppy1/index.json -------------------------------------------------------------------------------- /public-rackmount1/Systems/437XR1138R2/VirtualMedia/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Systems/437XR1138R2/VirtualMedia/index.json -------------------------------------------------------------------------------- /public-rackmount1/Systems/437XR1138R2/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Systems/437XR1138R2/index.json -------------------------------------------------------------------------------- /public-rackmount1/Systems/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/Systems/index.json -------------------------------------------------------------------------------- /public-rackmount1/TaskService/Tasks/545/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/TaskService/Tasks/545/index.json -------------------------------------------------------------------------------- /public-rackmount1/TaskService/Tasks/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/TaskService/Tasks/index.json -------------------------------------------------------------------------------- /public-rackmount1/TaskService/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/TaskService/index.json -------------------------------------------------------------------------------- /public-rackmount1/UpdateService/ClientCertificates/1/RekeyActionInfo/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/UpdateService/ClientCertificates/1/RekeyActionInfo/index.json -------------------------------------------------------------------------------- /public-rackmount1/UpdateService/ClientCertificates/1/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/UpdateService/ClientCertificates/1/index.json -------------------------------------------------------------------------------- /public-rackmount1/UpdateService/ClientCertificates/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/UpdateService/ClientCertificates/index.json -------------------------------------------------------------------------------- /public-rackmount1/UpdateService/FirmwareInventory/AC-RoT0/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/UpdateService/FirmwareInventory/AC-RoT0/index.json -------------------------------------------------------------------------------- /public-rackmount1/UpdateService/FirmwareInventory/BIOS/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/UpdateService/FirmwareInventory/BIOS/index.json -------------------------------------------------------------------------------- /public-rackmount1/UpdateService/FirmwareInventory/BMC/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/UpdateService/FirmwareInventory/BMC/index.json -------------------------------------------------------------------------------- /public-rackmount1/UpdateService/FirmwareInventory/SS/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/UpdateService/FirmwareInventory/SS/index.json -------------------------------------------------------------------------------- /public-rackmount1/UpdateService/FirmwareInventory/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/UpdateService/FirmwareInventory/index.json -------------------------------------------------------------------------------- /public-rackmount1/UpdateService/SimpleUpdateActionInfo/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/UpdateService/SimpleUpdateActionInfo/index.json -------------------------------------------------------------------------------- /public-rackmount1/UpdateService/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/UpdateService/index.json -------------------------------------------------------------------------------- /public-rackmount1/explorer_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/explorer_config.json -------------------------------------------------------------------------------- /public-rackmount1/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/index.json -------------------------------------------------------------------------------- /public-rackmount1/odata/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/public-rackmount1/odata/index.json -------------------------------------------------------------------------------- /redfishMockupServer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/redfishMockupServer.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/requirements.txt -------------------------------------------------------------------------------- /rfSsdpServer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Mockup-Server/HEAD/rfSsdpServer.py --------------------------------------------------------------------------------