-
Notifications
You must be signed in to change notification settings - Fork 3
/
vss-extension.json
180 lines (180 loc) · 5.09 KB
/
vss-extension.json
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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
{
"manifestVersion": 1,
"id": "checkmarx-ast-azure-plugin",
"publisher": "Checkmarx",
"version": "dev",
"name": "Checkmarx AST",
"targets": [
{
"id": "Microsoft.VisualStudio.Services"
}
],
"public": true,
"description": "Add Secure Source Code Analysis inside your build process",
"icons": {
"default": "images/extension-icon.png"
},
"categories": [
"Azure Pipelines"
],
"tags": [
"Security",
"SCA",
"Static Code Analysis",
"Scan",
"SAST",
"Checkmarx",
"CxSAST",
"OSA",
"Open source",
"Software Composition Analysis"
],
"scopes": [
"vso.build_execute"
],
"content": {
"details": {
"path": "overview.md"
},
"license": {
"path": "checkmarx-license-terms.md"
}
},
"links": {
"getstarted": {
"uri": "https://checkmarx.com/resource/documents/en/34965-68710-quick-start-guide---checkmarx-one-azure-devops-plugin.html"
},
"learn": {
"uri": "https://checkmarx.com/resource/documents/en/34965-68709-checkmarx-one-azure-devops-plugin.html"
},
"support": {
"uri": "https://support.checkmarx.com/home"
}
},
"branding": {
"color": "rgb(81, 53, 124)",
"theme": "dark"
},
"files": [
{
"path": "cxAstScan"
},
{
"path": "scripts/dist",
"addressable": true,
"packagePath": "scripts"
},
{
"path": "ui/cxASTReportTab.html",
"addressable": true
},
{
"path": "node_modules/vss-web-extension-sdk/lib",
"addressable": true,
"packagePath": "lib"
}
],
"contributions": [
{
"id": "cx-scan-task",
"type": "ms.vss-distributed-task.task",
"targets": [
"ms.vss-distributed-task.tasks"
],
"properties": {
"name": "cxAstScan",
"icon":"images/extension-icon.png"
}
},
{
"id": "cxASTResults",
"type": "ms.vss-build-web.build-results-tab",
"description": "A tab contributing to Checkmarx One results report",
"targets": [
"ms.vss-build-web.build-results-view"
],
"properties": {
"name": "Checkmarx One",
"uri": "ui/cxASTReportTab.html",
"height": "175%",
"width": "100%",
"supportsTasks": [
"dd862edc-5d88-4d2c-b83b-fff2a695e5c0"
]
}
},
{
"id": "CxEndpoint",
"description": "Service Endpoint type for all Cx connections",
"type": "ms.vss-endpoint.service-endpoint-type",
"targets": [
"ms.vss-endpoint.endpoint-types"
],
"properties": {
"name": "CheckmarxASTService",
"displayName": "Checkmarx One Service Connection",
"authenticationSchemes": [
{
"type": "ms.vss-endpoint.endpoint-auth-scheme-basic",
"displayName": "Client ID & Secret Authentication",
"inputDescriptors": [
{
"id": "authURL",
"name": "Checkmarx One Auth URL",
"description": "Checkmarx One Auth URL",
"inputMode": "textbox",
"isConfidential": false,
"validation": {
"dataType": "String",
"isRequired": false
}
},
{
"id": "username",
"name": "Checkmarx One Client ID",
"description": "Checkmarx One authorized OAUTH2 client id",
"inputMode": "textbox",
"isConfidential": false,
"validation": {
"dataType": "String",
"isRequired": true
}
},
{
"id": "password",
"name": "Checkmarx One Client Secret",
"description": "Checkmarx One authorized OAUTH2 client secret",
"inputMode": "passwordbox",
"isConfidential": true,
"validation": {
"dataType": "String",
"isRequired": true
}
}
]
},
{
"displayName": "API Key Authentication",
"name":"CheckmarxASTApiKey",
"type": "ms.vss-endpoint.endpoint-auth-scheme-token",
"inputDescriptors": [
{
"id": "apitoken",
"name": "i18n:API Key",
"description": "i18n:Checkmarx One API Key",
"inputMode": "textbox",
"isConfidential": true,
"validation": {
"isRequired": true,
"dataType": "string",
"maxLength": 1000
}
}
]
}
],
"helpMarkDown": "<span style=\"color: #222\"><font size=\"3\"><span style=\"color: #222\"><font size=\"3\">If you don't already have Checkmarx installed, click </font></span><a href=\"https://info.checkmarx.com/cx-microsoft-vs-team-services\" target=\"_blank\"><span style=\"color: #0072c6\"><font size=\"3\">here</font></span></a> to register for a Checkmarx cloud account</span>"
}
}
]
}