-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvss-extension.json
110 lines (109 loc) · 2.89 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
{
"manifestVersion": 1,
"id": "hendamm-execute-pipeline",
"publisher": "hendamm",
"version": "0.0.14",
"name": "Execute Pipeline",
"description": "Exec Pipelines in AzDevops",
"public": false,
"categories": ["Azure Pipelines"],
"content": {
"details": {
"path": "README.md"
},
"license": {
"path": "LICENSE"
}
},
"repository": {
"type": "git",
"uri": "https://github.com/henryd24/azdevops-extension-exec-pipeline"
},
"targets": [
{
"id": "Microsoft.VisualStudio.Services.Cloud"
}
],
"contributions": [
{
"id": "execute-pipeline-task",
"type": "ms.vss-distributed-task.task",
"targets": ["ms.vss-distributed-task.tasks"],
"properties": {
"name": "tasks/exec-pipeline"
}
},
{
"id": "service-endpoint",
"description": "Service Endpoint type for Azure Devops PATH",
"type": "ms.vss-endpoint.service-endpoint-type",
"targets": ["ms.vss-endpoint.endpoint-types"],
"properties": {
"name": "execPipelineService",
"displayName": "Azure Devops Path (Exec Pipeline)",
"icon": "images/path.png",
"url": {
"displayName": "Server Url",
"helpText": "Url for the Fluid Server to connect to.",
"value": "https://dev.azure.com/",
"isVisible": "false"
},
"authenticationSchemes": [
{
"type": "ms.vss-endpoint.endpoint-auth-scheme-token",
"inputDescriptors": [
{
"id": "organization",
"name": "Organization",
"description": "Organization name",
"inputMode": "textbox",
"isConfidential": false,
"validation": {
"isRequired": true,
"dataType": "string",
"maxLength": 255
}
},
{
"id": "project",
"name": "Project",
"description": "Project name",
"inputMode": "textbox",
"isConfidential": false,
"validation": {
"isRequired": true,
"dataType": "string",
"maxLength": 255
}
},
{
"id": "apitoken",
"name": "PATH",
"description": "PATH generated from Azure Devops",
"inputMode": "passwordbox",
"isConfidential": true,
"validation": {
"isRequired": true,
"dataType": "string"
}
}
]
}
],
"helpMarkDown": ""
}
}
],
"files": [
{
"path": "tasks"
},
{
"path": "images",
"addressable": true
}
],
"icons": {
"default": "images/extension-icon.png"
}
}