blob: ad657403903239187da2997ac02fce16ad60efb4 (
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
|
.. This work is licensed under a Creative Commons Attribution 4.0 International License.
Offered APIs
=================
+---------------------+----------+-------------------------------------------------------+------------------------------------------------------------------------------------------+
| Entity | Method | Path Info | Description |
+=====================+==========+=======================================================+==========================================================================================+
| Health Check | GET | /healthCheck | The Health Status of the application checks the DB connection. |
+---------------------+----------+-------------------------------------------------------+------------------------------------------------------------------------------------------+
| | | | | Used by IDNS for redundancy |
| | | | | |
| | | | | return response entity: |
| | | | | - statusCode Either 200 or 500 |
| | | | | - detailedMsg of the result, in case of failure particular error message |
| | | | | |
| | | | | Expected: |
| | | | |
| | | | .. code-block:: javascript |
| | | | |
| | | | { |
| | | | "statusCode": 200, |
| | | | "detailedMsg": "health check succeeded", |
| | | | "date": current date |
| | | | } |
| | | | |
+---------------------+----------+-------------------------------------------------------+------------------------------------------------------------------------------------------+
| Health Check | GET | rest/healthCheck/{User-Agent}/{X-ECOMP-RequestID} | The Health Status of the application checks the DB connection |
+---------------------+----------+-------------------------------------------------------+------------------------------------------------------------------------------------------+
| | | | | return response entity: |
| | | | | - statusCode Either 200 or 500 |
| | | | | - detailedMsg of the result, in case of failure particular error message |
| | | | | - date string indicating the current date & time |
| | | | | |
| | | | | Expected: |
| | | | |
| | | | .. code-block:: javascript |
| | | | |
| | | | { |
| | | | "statusCode": 200, |
| | | | "detailedMsg": "health check succeeded", |
| | | | "date": current date |
| | | | } |
| | | | |
+---------------------+----------+-------------------------------------------------------+------------------------------------------------------------------------------------------+
| Commit Version | GET | /commitInfo | Displays info about the last commit of the running build |
+---------------------+----------+-------------------------------------------------------+------------------------------------------------------------------------------------------+
| | | | | return response entity: |
| | | | | - commitId full id of the commit |
| | | | | - commitMessageShort short message from the commit |
| | | | | - commitTime time of the commit |
| | | | | |
| | | | | Expected: |
| | | | |
| | | | .. code-block:: javascript |
| | | | |
| | | | { |
| | | | "commitId": id of the last commit |
| | | | "commitMessageShort": short message of the last commit |
| | | | "commitTime": time of the last commit |
| | | | } |
| | | | |
+---------------------+----------+-------------------------------------------------------+------------------------------------------------------------------------------------------+
.. _vid-maintenance-apis:
Maintenance APIs
------------------
+---------------------+----------+-------------------------------------------------------+------------------------------------------------------------------------------------------+
| Maintenance: | POST | /maintenance/category_parameter/{categoryName} | Populate VID Project/Owning entity/Line of Business/Platform drop downs |
| Category Parameters | | | |
+---------------------+----------+-------------------------------------------------------+------------------------------------------------------------------------------------------+
| | | | ``{categoryName}`` is one of lineOfBusiness, platform, project, owningEntity. |
| | | | |
| | | | POST body: |
| | | | |
| | | | .. code-block:: javascript |
| | | | |
| | | | { |
| | | | "options": [ <list of strings> ] |
| | | | } |
| | | | |
+---------------------+----------+-------------------------------------------------------+------------------------------------------------------------------------------------------+
|