-
Notifications
You must be signed in to change notification settings - Fork 2.6k
/
Copy pathtask.loc.json
163 lines (163 loc) · 5.04 KB
/
task.loc.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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
{
"id": "46E4BE58-730B-4389-8A2F-EA10B3E5E815",
"name": "AzureCLI",
"friendlyName": "ms-resource:loc.friendlyName",
"description": "ms-resource:loc.description",
"author": "Microsoft Corporation",
"helpUrl": "https://docs.microsoft.com/azure/devops/pipelines/tasks/deploy/azure-cli",
"helpMarkDown": "ms-resource:loc.helpMarkDown",
"releaseNotes": "ms-resource:loc.releaseNotes",
"category": "Deploy",
"visibility": [
"Build",
"Release"
],
"runsOn": [
"Agent",
"DeploymentGroup"
],
"demands": [],
"version": {
"Major": 1,
"Minor": 238,
"Patch": 0
},
"minimumAgentVersion": "2.0.0",
"instanceNameFormat": "ms-resource:loc.instanceNameFormat",
"showEnvironmentVariables": true,
"groups": [
{
"name": "advanced",
"displayName": "ms-resource:loc.group.displayName.advanced",
"isExpanded": true
}
],
"inputs": [
{
"name": "connectedServiceNameARM",
"aliases": [
"azureSubscription"
],
"type": "connectedService:AzureRM",
"label": "ms-resource:loc.input.label.connectedServiceNameARM",
"required": true,
"helpMarkDown": "ms-resource:loc.input.help.connectedServiceNameARM",
"properties": {
"EndpointFilterRule": "ScopeLevel != ManagementGroup"
}
},
{
"name": "scriptLocation",
"type": "pickList",
"label": "ms-resource:loc.input.label.scriptLocation",
"defaultValue": "scriptPath",
"required": true,
"helpMarkDown": "ms-resource:loc.input.help.scriptLocation",
"options": {
"inlineScript": "Inline script",
"scriptPath": "Script path"
}
},
{
"name": "scriptPath",
"type": "filePath",
"label": "ms-resource:loc.input.label.scriptPath",
"defaultValue": "",
"required": true,
"visibleRule": "scriptLocation = scriptPath",
"helpMarkDown": "ms-resource:loc.input.help.scriptPath"
},
{
"name": "inlineScript",
"type": "multiLine",
"label": "ms-resource:loc.input.label.inlineScript",
"defaultValue": "",
"required": true,
"visibleRule": "scriptLocation = inlineScript",
"helpMarkDown": "ms-resource:loc.input.help.inlineScript",
"properties": {
"resizable": "true",
"rows": "10",
"maxLength": "5000"
}
},
{
"name": "args",
"aliases": [
"arguments"
],
"type": "string",
"label": "ms-resource:loc.input.label.args",
"defaultValue": "",
"required": false,
"helpMarkDown": "ms-resource:loc.input.help.args",
"properties": {
"editorExtension": "ms.vss-services-azure.parameters-grid"
}
},
{
"name": "addSpnToEnvironment",
"type": "boolean",
"label": "ms-resource:loc.input.label.addSpnToEnvironment",
"defaultValue": "false",
"required": false,
"helpMarkDown": "ms-resource:loc.input.help.addSpnToEnvironment",
"groupName": "advanced"
},
{
"name": "useGlobalConfig",
"type": "boolean",
"label": "ms-resource:loc.input.label.useGlobalConfig",
"defaultValue": "false",
"required": false,
"helpMarkDown": "ms-resource:loc.input.help.useGlobalConfig",
"groupName": "advanced"
},
{
"name": "cwd",
"aliases": [
"workingDirectory"
],
"type": "filePath",
"label": "ms-resource:loc.input.label.cwd",
"defaultValue": "",
"required": false,
"helpMarkDown": "ms-resource:loc.input.help.cwd",
"groupName": "advanced"
},
{
"name": "failOnStandardError",
"type": "boolean",
"label": "ms-resource:loc.input.label.failOnStandardError",
"defaultValue": "false",
"required": false,
"helpMarkDown": "ms-resource:loc.input.help.failOnStandardError",
"groupName": "advanced"
}
],
"execution": {
"Node10": {
"target": "azureclitask.js",
"argumentFormat": ""
},
"Node16": {
"target": "azureclitask.js",
"argumentFormat": ""
}
},
"messages": {
"ScriptReturnCode": "ms-resource:loc.messages.ScriptReturnCode",
"ScriptFailed": "ms-resource:loc.messages.ScriptFailed",
"UnsupportedEndpointScheme": "ms-resource:loc.messages.UnsupportedEndpointScheme",
"AzureSDKNotFound": "ms-resource:loc.messages.AzureSDKNotFound",
"FailedToLogout": "ms-resource:loc.messages.FailedToLogout",
"LoginFailed": "ms-resource:loc.messages.LoginFailed",
"MSILoginFailed": "ms-resource:loc.messages.MSILoginFailed",
"AuthSchemeNotSupported": "ms-resource:loc.messages.AuthSchemeNotSupported",
"ErrorInSettingUpSubscription": "ms-resource:loc.messages.ErrorInSettingUpSubscription",
"SettingAzureConfigDir": "ms-resource:loc.messages.SettingAzureConfigDir",
"SettingAzureCloud": "ms-resource:loc.messages.SettingAzureCloud",
"GlobalCliConfigAgentVersionWarning": "ms-resource:loc.messages.GlobalCliConfigAgentVersionWarning",
"ExpiredServicePrincipalMessageWithLink": "ms-resource:loc.messages.ExpiredServicePrincipalMessageWithLink"
}
}