-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathswagger.yaml
122 lines (122 loc) · 3.67 KB
/
swagger.yaml
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
swagger: '2.0'
info:
description: >-
This Service is used to fetch Git Change Log information from GIT Repository.
version: 1.0.0
title: Git Change Log Information
contact:
email: [email protected]
license:
name: DigiteDevOps1.0
url: 'http://www.digite.com'
host: 0.0.0.0:5005
tags:
- name: GitChangeLog - ShortStat
description: Get Short stat info for Git Change Log.
- name: GitChangeLog - FilesChanged
description: Get Files Changed info for Git Change Log
schemes:
- http
paths:
'/api/gitchangelog/v1/shortstat/{gitrepo}/{tags}':
get:
tags:
- GitChangeLog - ShortStat
summary: Get short stat info from Git Change Log
operationId: com.swiftops.changelog.methods.GitChangeLog.getproductshortstat
parameters:
- name: gitrepo
in: path
description: Git lab repo name e.g salm_core OR salm_automation
type: string
required: true
- name: tags
in: path
description: Git lab tags eg. 3.2.0_24..3.2.0_25 OR Rel_3.1.0..Rel_3.2.0
type: string
required: true
produces:
- application/xml
- application/json
responses:
'405':
description: Invalid input
'/api/gitchangelog/v1/shortstat/{customer}/{gitrepo}/{tags}':
get:
tags:
- GitChangeLog - ShortStat
summary: Get short stat info from Git Change Log for customer
operationId: com.swiftops.changelog.methods.GitChangeLog.getcustomshortstat
parameters:
- name: customer
in: path
description: Customer Name e.g cognizant OR infy OR kpit
type: string
required: true
- name: gitrepo
in: path
description: Git lab repo name e.g salm_core OR salm_automation
type: string
required: true
- name: tags
in: path
description: Git lab tags eg. 3.2.0_24..3.2.0_25 OR Rel_3.1.0..Rel_3.2.0
type: string
required: true
produces:
- application/xml
- application/json
responses:
'405':
description: Invalid input
'/api/gitchangelog/v1/fileschanged/{gitrepo}/{tags}':
get:
tags:
- GitChangeLog - FilesChanged
summary: Get list of files changed from Git Change Log
operationId: com.swiftops.changelog.methods.GitChangeLog.getproductchangedfiles
parameters:
- name: gitrepo
in: path
description: Git lab repo name e.g salm_core OR salm_automation
type: string
required: true
- name: tags
in: path
description: Git lab tags eg. 3.2.0_24..3.2.0_25 OR Rel_3.1.0..Rel_3.2.0
type: string
required: true
produces:
- application/xml
- application/json
responses:
'405':
description: Invalid input
'/api/gitchangelog/v1/fileschanged/{customer}/{gitrepo}/{tags}':
get:
tags:
- GitChangeLog - FilesChanged
summary: Get list of files changed from Git Change Log
operationId: com.swiftops.changelog.methods.GitChangeLog.getcustomchangedfiles
parameters:
- name: customer
in: path
description: Customer Name e.g cognizant OR infy OR kpit
type: string
required: true
- name: gitrepo
in: path
description: Git lab repo name e.g salm_core OR salm_automation
type: string
required: true
- name: tags
in: path
description: Git lab tags eg. 3.2.0_24..3.2.0_25 OR Rel_3.1.0..Rel_3.2.0
type: string
required: true
produces:
- application/xml
- application/json
responses:
'405':
description: Invalid input