-
Notifications
You must be signed in to change notification settings - Fork 0
/
vss-extension.json
69 lines (67 loc) · 2.48 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
{
"manifestVersion": 1,
"id": "azure-pipelines-tasks-databricks",
"name": "Azure Pipelines tasks for databricks",
"version": "0.0.3",
"publisher": "franusierra",
"targets": [
{
"id": "Microsoft.VisualStudio.Services"
}
],
"description": "Azure pipelines tasks for databricks (Currently Being Developed). Centered arround deployments on azure databricks (may work on other platforms). ",
"categories": [
"Azure Pipelines"
],
"icons": {
"default": "images/extension-icon.png"
},
"contributions":[
{
"id": "azure-databricks-service-endpoint",
"description": "Service endpoint type for Databricks connections",
"type": "ms.vss-endpoint.service-endpoint-type",
"targets": [ "ms.vss-endpoint.endpoint-types" ],
"properties": {
"name": "azure-databricks",
"displayName": "Azure Databricks",
"url": {
"displayName": "Azure Databricks Host Url",
"helpText": "Url for azure databricks. Matches with the HOST databricks cli parameter. (eg. https://eastus2.azuredatabricks.com)"
},
"dataSources":[
{
"name":"TestConnection",
"endpointUrl":"$(endpoint.url)/api/2.0/preview/scim/v2/Me",
"resultSelector": "jsonpath:$.id"
}
],
"authenticationSchemes": [
{
"type": "ms.vss-endpoint.endpoint-auth-scheme-token",
"headers": [
{
"name": "Authorization",
"value": "Bearer {{ endpoint.apitoken }}"
}
],
"inputDescriptors": [
{
"id": "apitoken",
"name": "Access Token",
"description": "Access Token for Azure Databricks",
"inputMode": "passwordbox",
"isConfidential": true,
"validation": {
"isRequired": true,
"dataType": "string"
}
}
]
}
],
"helpMarkDown": "<a href=\"url-to-documentation\" target=\"_blank\"><b>Learn More</b></a>"
}
}
]
}