summaryrefslogtreecommitdiffstats
path: root/controller-server/src/test/java/com/yahoo/vespa/hosted/controller/restapi/application/responses/jobs.json
blob: 2477e8df56e498fee6025f1ff5445bce45e54a73 (plain) (blame)
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
  "deployment": [
    {
      "jobName": "dev-us-east-1",
      "runs": [
        {
          "id": 2,
          "url": "http://localhost:8080/application/v4/tenant/tenant1/application/application1/instance/instance1/job/run/2",
          "start": 1600000000000,
          "end": 1600000000000,
          "status": "success",
          "reason": "triggered by user.myuser",
          "versions": {
            "targetPlatform": "6.1.0",
            "targetApplication": {
              "build": 1,
              "compileVersion": "6.1.0"
            },
            "sourcePlatform": "6.1.0",
            "sourceApplication": {
              "build": 1,
              "compileVersion": "6.1.0"
            }
          },
          "steps": [
            {
              "name": "deployReal",
              "status": "succeeded"
            },
            {
              "name": "installReal",
              "status": "succeeded"
            },
            {
              "name": "copyVespaLogs",
              "status": "succeeded"
            }
          ]
        },
        {
          "id": 1,
          "url": "http://localhost:8080/application/v4/tenant/tenant1/application/application1/instance/instance1/job/run/1",
          "start": 1600000000000,
          "end": 1600000000000,
          "status": "success",
          "versions": {
            "targetPlatform": "6.1.0",
            "targetApplication": {
              "build": 1,
              "compileVersion": "6.1.0"
            }
          },
          "steps": [
            {
              "name": "deployReal",
              "status": "succeeded"
            },
            {
              "name": "installReal",
              "status": "succeeded"
            },
            {
              "name": "copyVespaLogs",
              "status": "succeeded"
            }
          ]
        }
      ]
    }
  ]
}