-
Notifications
You must be signed in to change notification settings - Fork 1
/
vss-extension.json
131 lines (131 loc) · 4.31 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
{
"manifestVersion": 1,
"id": "neuvector-vsts",
"name": "NeuVector",
"version": "3.0.3",
"publisher": "NeuVector",
"public": true,
"targets": [
{
"id": "Microsoft.VisualStudio.Services"
}
],
"description": "Scan container images for vulnerabilities with the NeuVector Container Security Platform.",
"categories": [
"Azure Pipelines"
],
"branding": {
"color": "rgb(69, 80, 92)",
"theme": "dark"
},
"content": {
"details": {
"path": "overview.md"
}
},
"links": {
"home": {
"uri": "https://www.suse.com/neuvector/"
},
"learn": {
"uri": "https://neuvector.com/learn-container-security"
},
"support": {
"uri": "https://neuvector.com/about/contact"
}
},
"repository": {
"type": "git",
"uri": "https://github.com/neuvector/azure-vsts"
},
"tags": [
"neuvector",
"security"
],
"icons": {
"default": "images/extension-icon.png"
},
"files": [
{
"path": "tasks/scan"
},
{
"path": "screenshots",
"addressable": true
}
],
"contributions": [
{
"id": "neuvectorScan",
"type": "ms.vss-distributed-task.task",
"targets": [
"ms.vss-distributed-task.tasks"
],
"properties": {
"name": "tasks/scan"
}
},
{
"id": "neuvectorScannerServiceEndpoint",
"type": "ms.vss-endpoint.service-endpoint-type",
"targets": [
"ms.vss-endpoint.endpoint-types"
],
"properties": {
"name": "neuvectorScanner",
"displayName": "Remote NeuVector Scanner",
"icon": "images/neuvector-scanner-endpoint.png",
"url": {
"displayName": "NeuVector Scanner API URL",
"helpText": "URL to the NeuVector Scanner API "
},
"inputDescriptors":[
{
"id": "acceptUntrustedCerts",
"name": "Accept untrusted SSL certificates",
"description": "Accept self-signed SSL server certificates when connecting to a NeuVector scanner. This NOT be used in production scenarios.",
"type": null,
"properties": null,
"inputMode": "checkBox",
"isConfidential": false,
"useInDefaultDescription": false,
"groupName": null,
"valueHint": null,
"validation": {
"dataType": "boolean"
}
}
],
"authenticationSchemes": [
{
"type": "ms.vss-endpoint.endpoint-auth-scheme-basic",
"inputDescriptors": [
{
"id": "username",
"name": "NeuVector Username",
"description": "Username to access the NeuVector Scanner API",
"inputMode": "textbox",
"validation": {
"isRequired": true,
"dataType": "string"
}
},
{
"id": "password",
"name": "NeuVector Password",
"description": "Password to access the NeuVector Scanner API",
"inputMode": "passwordbox",
"isConfidential": true,
"validation": {
"isRequired": true,
"dataType": "string"
}
}
]
}
],
"helpMarkDown": ""
}
}
]
}