-
Notifications
You must be signed in to change notification settings - Fork 157
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* added a function to remove agents * added test for removing agents * added docs for "remove agent" function * added -Force param and option to add multiple agents at once * Added test to cover the situation where it throws. * I decided to change the level to High. * Updated readme and psd1 for Version 3.0.5 * The pools are changing so fast it breaks our integration tests. I changed the condition to account for that. * Missed a - on Be
- Loading branch information
1 parent
5f0e034
commit eb9f93c
Showing
10 changed files
with
238 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
<!-- #include "./common/header.md" --> | ||
|
||
# Remove-VSTeamAgent | ||
|
||
## SYNOPSIS | ||
|
||
<!-- #include "./synopsis/Remove-VSTeamAgent.md" --> | ||
|
||
## SYNTAX | ||
|
||
## DESCRIPTION | ||
|
||
<!-- #include "./synopsis/Remove-VSTeamAgent.md" --> | ||
|
||
## EXAMPLES | ||
|
||
## PARAMETERS | ||
|
||
### -PoolId | ||
|
||
Id of the pool. | ||
|
||
```yaml | ||
Type: String | ||
Required: True | ||
Accept pipeline input: true (ByValue) | ||
``` | ||
### -Id | ||
Id of the agent to remove. | ||
```yaml | ||
Type: int | ||
Aliases: AgentID | ||
Required: True | ||
Accept pipeline input: true (ByPropertyName) | ||
``` | ||
<!-- #include "./params/force.md" --> | ||
## INPUTS | ||
### System.String | ||
## OUTPUTS | ||
## NOTES | ||
## RELATED LINKS |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Removes an agent from a pool. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters