aboutsummaryrefslogtreecommitdiffstats
path: root/hdv/redfish/test/mock_server.json
blob: acf7e9af04e8850ab4f755775101b6b481fbff56 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
    "/redfish/v1/Systems/": {
        "return_code": 200,
        "return_value": {
            "@odata.id": "/redfish/v1/Systems",
            "@odata.type": "#ComputerSystemCollection.ComputerSystemCollection",
            "Members": [
                {
                    "@odata.id": "/redfish/v1/Systems/437XR1138R2"
                }
            ],
            "Members@odata.count": 1,
            "Name": "Computer System Collection"
        }
    },
    "/redfish/v1/Chassis/": {
        "return_code": 200,
        "return_value": {
            "@odata.id": "/redfish/v1/Chassis",
            "@odata.type": "#ChassisCollection.ChassisCollection",
            "Members": [
                {
                    "@odata.id": "/redfish/v1/Chassis/1U"
                }
            ],
            "Members@odata.count": 1,
            "Name": "Chassis Collection"
        }
    },
    "/redfish/v1/Systems/437XR1138R2/Processors/": {
        "return_code": 200,
        "return_value": {
            "@odata.id": "/redfish/v1/Systems/437XR1138R2/Processors",
            "@odata.type": "#ProcessorCollection.ProcessorCollection",
            "Members": [
                {
                    "@odata.id": "/redfish/v1/Systems/437XR1138R2/Processors/CPU1"
                },
                {
                    "@odata.id": "/redfish/v1/Systems/437XR1138R2/Processors/CPU2"
                },
                {
                    "@odata.id": "/redfish/v1/Systems/437XR1138R2/Processors/FPGA1"
                }
            ],
            "Members@odata.count": 3,
            "Name": "Processors Collection"
        }
    }
}