-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathvss-extension-dev.json
executable file
·146 lines (146 loc) · 3.8 KB
/
vss-extension-dev.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
{
"manifestVersion": 1,
"id": "synopsys-polaris",
"version": "1.3.1",
"name": "[DEPRECATED] Synopsys Coverity on Polaris",
"publisher": "QAExt",
"public": false,
"targets": [
{
"id": "Microsoft.VisualStudio.Services"
}
],
"tags": [
"Deprecated",
"Polaris",
"Synopsys",
"Coverity",
"Continuous Integration",
"Security",
"Open Source",
"Build",
"Coverity on Polaris"
],
"scopes": [
"vso.build_execute"
],
"description": "Run Coverity on Polaris for your build",
"categories": [
"Azure Pipelines"
],
"icons": {
"default": "images/synopsys.png"
},
"branding": {
"color": "#00639c",
"theme": "dark"
},
"files": [
{
"path": "tasks/polarisTask"
},
{
"path": "images",
"addressable": true
}
],
"content": {
"details": {
"path": "overview.md"
}
},
"contributions": [
{
"id": "synopsys-polaris-task",
"type": "ms.vss-distributed-task.task",
"targets": [
"ms.vss-distributed-task.tasks"
],
"properties": {
"name": "tasks/polarisTask"
}
},
{
"id": "synopsys-polaris-server-proxy-endpoint",
"description": "Proxy Service Endpoint for Polaris connections",
"type": "ms.vss-endpoint.service-endpoint-type",
"targets": [
"ms.vss-endpoint.endpoint-types"
],
"properties": {
"name": "polarisServerProxy",
"displayName": "Polaris Server Proxy",
"url": {
"displayName": "Server URL",
"helpText": "Provide the URL for your proxy - please include the port if other than 80 (http) or 443 (https)"
},
"authenticationSchemes": [
{
"type": "ms.vss-endpoint.endpoint-auth-scheme-basic",
"inputDescriptors": [
{
"id": "username",
"name": "Username",
"description": "The username for this proxy",
"inputMode": "textbox",
"validation": {
"isRequired": false,
"dataType": "string"
}
},
{
"id": "password",
"name": "Password",
"description": "The password for this proxy",
"inputMode": "passwordbox",
"isConfidential": true,
"validation": {
"isRequired": false,
"dataType": "string"
}
}
]
}
]
}
},
{
"id": "synopsys-polaris-server-endpoint",
"description": "Service Endpoint for Polaris connections",
"type": "ms.vss-endpoint.service-endpoint-type",
"targets": [
"ms.vss-endpoint.endpoint-types"
],
"properties": {
"name": "polarisServer",
"displayName": "Polaris Server",
"url": {
"displayName": "Server URL",
"helpText": "Provide the URL for Polaris - please include the port if other than 80 (http) or 443 (https)"
},
"authenticationSchemes": [
{
"id": "endpoint-auth-scheme-token",
"name": "Api Token",
"displayName": "Token Based Authentication",
"type": "ms.vss-endpoint.endpoint-auth-scheme-token",
"inputDescriptors": [
{
"id": "apitoken",
"name": "API Token",
"description": "API Token for connection to endpoint",
"inputMode": "textbox",
"isConfidential": true,
"validation": {
"isRequired": true,
"dataType": "string",
"maxLength": 300
}
}
]
}
]
}
}
]
}