-
Notifications
You must be signed in to change notification settings - Fork 107
Expand file tree
/
Copy pathvss-extension.json
More file actions
89 lines (89 loc) · 2.8 KB
/
Copy pathvss-extension.json
File metadata and controls
89 lines (89 loc) · 2.8 KB
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
{
"manifestVersion": 1,
"id": "hydra-lab-alter",
"name": "Hydra Lab",
"version": "2.0.13",
"publisher": "",
"public": true,
"targets": [
{
"id": "Microsoft.VisualStudio.Services"
}
],
"description": "Hydra Lab Azure Devops Extension - Allow you to automatically deploy tests to Hydra Lab platform from your CI/CD environment.",
"categories": [
"Azure Pipelines"
],
"icons": {
"default": "images/hydra_lab_logo.png"
},
"content": {
"details": {
"path": "overview.md"
}
},
"repository": {
"type": "git",
"uri": "https://github.com/microsoft/HydraLab"
},
"files": [
{
"path": "Tasks/HydraLabDeployTest"
},
{
"path": "images",
"addressable": true
}
],
"contributions": [
{
"id": "deploy-tests-to-hydra-lab",
"type": "ms.vss-distributed-task.task",
"targets": [
"ms.vss-distributed-task.tasks"
],
"properties": {
"name": "Tasks/HydraLabDeployTest"
}
},
{
"id": "hydra-lab-service-endpoint",
"description": "HydraLabAuthenticationEndpoint",
"type": "ms.vss-endpoint.service-endpoint-type",
"targets": [
"ms.vss-endpoint.endpoint-types"
],
"properties": {
"name": "hydra-lab-alter",
"displayName": "Hydra Lab",
"url": "https://example.com",
"inputDescriptors": [],
"authenticationSchemes": [
{
"type": "ms.vss-endpoint.endpoint-auth-scheme-token",
"headers": [
{
"name": "Authorization",
"value": "{{endpoint.apitoken}}"
}
],
"inputDescriptors": [
{
"id": "apitoken",
"name": "Auth Token",
"description": "Enter the authentication token generated from the Hydra Lab console.",
"inputMode": "textbox",
"isConfidential": true,
"validation": {
"isRequired": true,
"dataType": "string",
"maxLength": 100
}
}
]
}
]
}
}
]
}