Skip to content

Commit 7dca1fc

Browse files
authored
v0.11.0 (microsoft#363)
1 parent 29a04de commit 7dca1fc

10 files changed

+414
-27
lines changed

powershell/Docs/Commands.md

Lines changed: 99 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Commands (v0.10.1)
1+
# Commands (v0.11.0)
22
## <a name="toc" />Table of Contents
33
* [Find](#find)
44
* [Find-VstsMatch](#find-vstsmatch)
@@ -8,6 +8,8 @@
88
* [Input](#input)
99
* [Get-VstsEndpoint](#get-vstsendpoint)
1010
* [Get-VstsInput](#get-vstsinput)
11+
* [Get-VstsSecureFileName](#get-vstssecurefilename)
12+
* [Get-VstsSecureFileTicket](#get-vstssecurefileticket)
1113
* [Get-VstsTaskVariable](#get-vststaskvariable)
1214
* [Get-VstsTaskVariableInfo](#get-vststaskvariableinfo)
1315
* [Set-VstsTaskVariable](#set-vststaskvariable)
@@ -21,6 +23,8 @@
2123
* [Write-VstsAddBuildTag](#write-vstsaddbuildtag)
2224
* [Write-VstsAssociateArtifact](#write-vstsassociateartifact)
2325
* [Write-VstsLogDetail](#write-vstslogdetail)
26+
* [Write-VstsPrependPath](#write-vstsprependpath)
27+
* [Write-VstsSetEndpoint](#write-vstssetendpoint)
2428
* [Write-VstsSetProgress](#write-vstssetprogress)
2529
* [Write-VstsSetResult](#write-vstssetresult)
2630
* [Write-VstsSetSecret](#write-vstssetsecret)
@@ -30,8 +34,11 @@
3034
* [Write-VstsTaskVerbose](#write-vststaskverbose)
3135
* [Write-VstsTaskWarning](#write-vststaskwarning)
3236
* [Write-VstsUpdateBuildNumber](#write-vstsupdatebuildnumber)
37+
* [Write-VstsUpdateReleaseName](#write-vstsupdatereleasename)
3338
* [Write-VstsUploadArtifact](#write-vstsuploadartifact)
3439
* [Write-VstsUploadBuildLog](#write-vstsuploadbuildlog)
40+
* [Write-VstsUploadFile](#write-vstsuploadfile)
41+
* [Write-VstsUploadSummary](#write-vstsuploadsummary)
3542
* [Server OM](#serverom)
3643
* [Get-VstsAssemblyReference](#get-vstsassemblyreference)
3744
* [Get-VstsClientCertificate](#get-vstsclientcertificate)
@@ -153,6 +160,36 @@ SYNTAX
153160
DESCRIPTION
154161
Gets the value for the specified input name.
155162
```
163+
### <a name="get-vstssecurefilename" />Get-VstsSecureFileName
164+
[table of contents](#toc) | [full](FullHelp/Get-VstsSecureFileName.md)
165+
```
166+
NAME
167+
Get-VstsSecureFileName
168+
169+
SYNOPSIS
170+
Gets a secure file name.
171+
172+
SYNTAX
173+
Get-VstsSecureFileName [-Id] <String> [-Require] [<CommonParameters>]
174+
175+
DESCRIPTION
176+
Gets the name for a secure file.
177+
```
178+
### <a name="get-vstssecurefileticket" />Get-VstsSecureFileTicket
179+
[table of contents](#toc) | [full](FullHelp/Get-VstsSecureFileTicket.md)
180+
```
181+
NAME
182+
Get-VstsSecureFileTicket
183+
184+
SYNOPSIS
185+
Gets a secure file ticket.
186+
187+
SYNTAX
188+
Get-VstsSecureFileTicket [-Id] <String> [-Require] [<CommonParameters>]
189+
190+
DESCRIPTION
191+
Gets the secure file ticket that can be used to download the secure file contents.
192+
```
156193
### <a name="get-vststaskvariable" />Get-VstsTaskVariable
157194
[table of contents](#toc) | [full](FullHelp/Get-VstsTaskVariable.md)
158195
```
@@ -327,6 +364,31 @@ SYNTAX
327364
<Object>] [[-StartTime] <Object>] [[-FinishTime] <Object>] [[-Progress] <Object>] [[-State] <Object>]
328365
[[-Result] <Object>] [[-Message] <String>] [-AsOutput] [<CommonParameters>]
329366
```
367+
### <a name="write-vstsprependpath" />Write-VstsPrependPath
368+
[table of contents](#toc) | [full](FullHelp/Write-VstsPrependPath.md)
369+
```
370+
NAME
371+
Write-VstsPrependPath
372+
373+
SYNOPSIS
374+
See https://github.com/Microsoft/vsts-tasks/blob/master/docs/authoring/commands.md
375+
376+
SYNTAX
377+
Write-VstsPrependPath [-Path] <String> [-AsOutput] [<CommonParameters>]
378+
```
379+
### <a name="write-vstssetendpoint" />Write-VstsSetEndpoint
380+
[table of contents](#toc) | [full](FullHelp/Write-VstsSetEndpoint.md)
381+
```
382+
NAME
383+
Write-VstsSetEndpoint
384+
385+
SYNOPSIS
386+
See https://github.com/Microsoft/vsts-tasks/blob/master/docs/authoring/commands.md
387+
388+
SYNTAX
389+
Write-VstsSetEndpoint [-Id] <String> [-Field] <String> [-Key] <String> [-Value] <String> [-AsOutput]
390+
[<CommonParameters>]
391+
```
330392
### <a name="write-vstssetprogress" />Write-VstsSetProgress
331393
[table of contents](#toc) | [full](FullHelp/Write-VstsSetProgress.md)
332394
```
@@ -439,6 +501,18 @@ SYNOPSIS
439501
SYNTAX
440502
Write-VstsUpdateBuildNumber [-Value] <String> [-AsOutput] [<CommonParameters>]
441503
```
504+
### <a name="write-vstsupdatereleasename" />Write-VstsUpdateReleaseName
505+
[table of contents](#toc) | [full](FullHelp/Write-VstsUpdateReleaseName.md)
506+
```
507+
NAME
508+
Write-VstsUpdateReleaseName
509+
510+
SYNOPSIS
511+
See https://github.com/Microsoft/vsts-tasks/blob/master/docs/authoring/commands.md
512+
513+
SYNTAX
514+
Write-VstsUpdateReleaseName [-Name] <String> [-AsOutput] [<CommonParameters>]
515+
```
442516
### <a name="write-vstsuploadartifact" />Write-VstsUploadArtifact
443517
[table of contents](#toc) | [full](FullHelp/Write-VstsUploadArtifact.md)
444518
```
@@ -464,6 +538,30 @@ SYNOPSIS
464538
SYNTAX
465539
Write-VstsUploadBuildLog [-Path] <String> [-AsOutput] [<CommonParameters>]
466540
```
541+
### <a name="write-vstsuploadfile" />Write-VstsUploadFile
542+
[table of contents](#toc) | [full](FullHelp/Write-VstsUploadFile.md)
543+
```
544+
NAME
545+
Write-VstsUploadFile
546+
547+
SYNOPSIS
548+
See https://github.com/Microsoft/vsts-tasks/blob/master/docs/authoring/commands.md
549+
550+
SYNTAX
551+
Write-VstsUploadFile [-Path] <String> [-AsOutput] [<CommonParameters>]
552+
```
553+
### <a name="write-vstsuploadsummary" />Write-VstsUploadSummary
554+
[table of contents](#toc) | [full](FullHelp/Write-VstsUploadSummary.md)
555+
```
556+
NAME
557+
Write-VstsUploadSummary
558+
559+
SYNOPSIS
560+
See https://github.com/Microsoft/vsts-tasks/blob/master/docs/authoring/commands.md
561+
562+
SYNTAX
563+
Write-VstsUploadSummary [-Path] <String> [-AsOutput] [<CommonParameters>]
564+
```
467565
## <a name="serverom" />Server OM
468566
### <a name="get-vstsassemblyreference" />Get-VstsAssemblyReference
469567
[table of contents](#toc) | [full](FullHelp/Get-VstsAssemblyReference.md)
Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
# Get-VstsSecureFileName
2+
[table of contents](../Commands.md#toc) | [brief](../Commands.md#get-vstssecurefilename)
3+
```
4+
NAME
5+
Get-VstsSecureFileName
6+
7+
SYNOPSIS
8+
Gets a secure file name.
9+
10+
SYNTAX
11+
Get-VstsSecureFileName [-Id] <String> [-Require] [<CommonParameters>]
12+
13+
DESCRIPTION
14+
Gets the name for a secure file.
15+
16+
PARAMETERS
17+
-Id <String>
18+
Secure file id.
19+
20+
Required? true
21+
Position? 1
22+
Default value
23+
Accept pipeline input? false
24+
Accept wildcard characters? false
25+
26+
-Require [<SwitchParameter>]
27+
Writes an error to the error pipeline if the ticket is not found.
28+
29+
Required? false
30+
Position? named
31+
Default value False
32+
Accept pipeline input? false
33+
Accept wildcard characters? false
34+
35+
<CommonParameters>
36+
This cmdlet supports the common parameters: Verbose, Debug,
37+
ErrorAction, ErrorVariable, WarningAction, WarningVariable,
38+
OutBuffer, PipelineVariable, and OutVariable. For more information, see
39+
about_CommonParameters (https://go.microsoft.com/fwlink/?LinkID=113216).
40+
```
Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
# Get-VstsSecureFileTicket
2+
[table of contents](../Commands.md#toc) | [brief](../Commands.md#get-vstssecurefileticket)
3+
```
4+
NAME
5+
Get-VstsSecureFileTicket
6+
7+
SYNOPSIS
8+
Gets a secure file ticket.
9+
10+
SYNTAX
11+
Get-VstsSecureFileTicket [-Id] <String> [-Require] [<CommonParameters>]
12+
13+
DESCRIPTION
14+
Gets the secure file ticket that can be used to download the secure file contents.
15+
16+
PARAMETERS
17+
-Id <String>
18+
Secure file id.
19+
20+
Required? true
21+
Position? 1
22+
Default value
23+
Accept pipeline input? false
24+
Accept wildcard characters? false
25+
26+
-Require [<SwitchParameter>]
27+
Writes an error to the error pipeline if the ticket is not found.
28+
29+
Required? false
30+
Position? named
31+
Default value False
32+
Accept pipeline input? false
33+
Accept wildcard characters? false
34+
35+
<CommonParameters>
36+
This cmdlet supports the common parameters: Verbose, Debug,
37+
ErrorAction, ErrorVariable, WarningAction, WarningVariable,
38+
OutBuffer, PipelineVariable, and OutVariable. For more information, see
39+
about_CommonParameters (https://go.microsoft.com/fwlink/?LinkID=113216).
40+
```
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
# Write-VstsPrependPath
2+
[table of contents](../Commands.md#toc) | [brief](../Commands.md#write-vstsprependpath)
3+
```
4+
NAME
5+
Write-VstsPrependPath
6+
7+
SYNOPSIS
8+
See https://github.com/Microsoft/vsts-tasks/blob/master/docs/authoring/commands.md
9+
10+
SYNTAX
11+
Write-VstsPrependPath [-Path] <String> [-AsOutput] [<CommonParameters>]
12+
13+
PARAMETERS
14+
-Path <String>
15+
16+
Required? true
17+
Position? 1
18+
Default value
19+
Accept pipeline input? false
20+
Accept wildcard characters? false
21+
22+
-AsOutput [<SwitchParameter>]
23+
Indicates whether to write the logging command directly to the host or to the output pipeline.
24+
25+
Required? false
26+
Position? named
27+
Default value False
28+
Accept pipeline input? false
29+
Accept wildcard characters? false
30+
31+
<CommonParameters>
32+
This cmdlet supports the common parameters: Verbose, Debug,
33+
ErrorAction, ErrorVariable, WarningAction, WarningVariable,
34+
OutBuffer, PipelineVariable, and OutVariable. For more information, see
35+
about_CommonParameters (https://go.microsoft.com/fwlink/?LinkID=113216).
36+
```
Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
# Write-VstsSetEndpoint
2+
[table of contents](../Commands.md#toc) | [brief](../Commands.md#write-vstssetendpoint)
3+
```
4+
NAME
5+
Write-VstsSetEndpoint
6+
7+
SYNOPSIS
8+
See https://github.com/Microsoft/vsts-tasks/blob/master/docs/authoring/commands.md
9+
10+
SYNTAX
11+
Write-VstsSetEndpoint [-Id] <String> [-Field] <String> [-Key] <String> [-Value] <String> [-AsOutput]
12+
[<CommonParameters>]
13+
14+
PARAMETERS
15+
-Id <String>
16+
17+
Required? true
18+
Position? 1
19+
Default value
20+
Accept pipeline input? false
21+
Accept wildcard characters? false
22+
23+
-Field <String>
24+
25+
Required? true
26+
Position? 2
27+
Default value
28+
Accept pipeline input? false
29+
Accept wildcard characters? false
30+
31+
-Key <String>
32+
33+
Required? true
34+
Position? 3
35+
Default value
36+
Accept pipeline input? false
37+
Accept wildcard characters? false
38+
39+
-Value <String>
40+
41+
Required? true
42+
Position? 4
43+
Default value
44+
Accept pipeline input? false
45+
Accept wildcard characters? false
46+
47+
-AsOutput [<SwitchParameter>]
48+
Indicates whether to write the logging command directly to the host or to the output pipeline.
49+
50+
Required? false
51+
Position? named
52+
Default value False
53+
Accept pipeline input? false
54+
Accept wildcard characters? false
55+
56+
<CommonParameters>
57+
This cmdlet supports the common parameters: Verbose, Debug,
58+
ErrorAction, ErrorVariable, WarningAction, WarningVariable,
59+
OutBuffer, PipelineVariable, and OutVariable. For more information, see
60+
about_CommonParameters (https://go.microsoft.com/fwlink/?LinkID=113216).
61+
```
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
# Write-VstsUpdateReleaseName
2+
[table of contents](../Commands.md#toc) | [brief](../Commands.md#write-vstsupdatereleasename)
3+
```
4+
NAME
5+
Write-VstsUpdateReleaseName
6+
7+
SYNOPSIS
8+
See https://github.com/Microsoft/vsts-tasks/blob/master/docs/authoring/commands.md
9+
10+
SYNTAX
11+
Write-VstsUpdateReleaseName [-Name] <String> [-AsOutput] [<CommonParameters>]
12+
13+
PARAMETERS
14+
-Name <String>
15+
16+
Required? true
17+
Position? 1
18+
Default value
19+
Accept pipeline input? false
20+
Accept wildcard characters? false
21+
22+
-AsOutput [<SwitchParameter>]
23+
Indicates whether to write the logging command directly to the host or to the output pipeline.
24+
25+
Required? false
26+
Position? named
27+
Default value False
28+
Accept pipeline input? false
29+
Accept wildcard characters? false
30+
31+
<CommonParameters>
32+
This cmdlet supports the common parameters: Verbose, Debug,
33+
ErrorAction, ErrorVariable, WarningAction, WarningVariable,
34+
OutBuffer, PipelineVariable, and OutVariable. For more information, see
35+
about_CommonParameters (https://go.microsoft.com/fwlink/?LinkID=113216).
36+
```

0 commit comments

Comments
 (0)