Skip to content

Commit cc3b429

Browse files
Updated ExternalHelp for 2.0.0 Release
1 parent 327a831 commit cc3b429

4 files changed

+40
-25
lines changed

README.md

Lines changed: 24 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
| Latest Version | PowerShell Gallery | Issues | License | Discord |
22
|-----------------|----------------|----------------|----------------|----------------|
33
| [![Latest Version](https://img.shields.io/github/v/tag/Azure-Devops-PowerShell-Module/AzDevOps)](https://github.com/Azure-Devops-PowerShell-Module/AzDevOps/tags) | [![Powershell Gallery](https://img.shields.io/powershellgallery/dt/AzDevOps)](https://www.powershellgallery.com/packages/PoshMongo) | [![GitHub issues](https://img.shields.io/github/issues/Azure-Devops-PowerShell-Module/AzDevOps)](https://github.com/Azure-Devops-PowerShell-Module/AzDevOps/issues) | [![GitHub license](https://img.shields.io/github/license/Azure-Devops-PowerShell-Module/AzDevOps)](https://github.com/Azure-Devops-PowerShell-Module/AzDevOps/blob/master/LICENSE) | [![Discord Server](https://assets-global.website-files.com/6257adef93867e50d84d30e2/636e0b5493894cf60b300587_full_logo_white_RGB.svg)]() |
4-
54
# About
65

76
The AzDevOps project is designed to leverage the [Azure Devops Rest API](https://docs.microsoft.com/en-us/rest/api/azure/devops) through the use of PowerShell. Currently the modules are all written in PowerShell which should make the code easier to understand and modify as needed. The project will use [Semantic Versioning](https://semver.org/) for modules, these version numbers should also be reflected in the tags.
@@ -29,99 +28,99 @@ This is currently a work in progress, but we should be leveraging [pester](https
2928
## Publishing
3029

3130
The module will be available directly from [GitHub](https://github.com/Azure-Devops-PowerShell-Module/AzDevOps), we are looking to create Tagged releases that are easy to download. Additionally the code will be available on the [PowerShell Gallery](https://www.powershellgallery.com/) for a more streamlined delivery.
32-
3331
# AzDevOps Module
3432

3533
## Description
3634

37-
{{ Fill in the Description }}
35+
This module provides the ability to manage and work with an Azure Devops organization.
3836

3937
## AzDevOps Cmdlets
4038

4139
### [Connect-AdoOrganization](Docs/Connect-AdoOrganization.md)
4240

43-
{{ Fill in the Description }}
41+
This function will connect to Azure DevOps
4442

4543
### [Get-AdoBuild](Docs/Get-AdoBuild.md)
4644

47-
{{ Fill in the Description }}
45+
Return one or more builds from a project
4846

4947
### [Get-AdoBuildDefinition](Docs/Get-AdoBuildDefinition.md)
5048

51-
{{ Fill in the Description }}
49+
Gets a definition, optionally at a specific revision.
5250

5351
### [Get-AdoBuildFolder](Docs/Get-AdoBuildFolder.md)
5452

55-
{{ Fill in the Description }}
53+
Gets a list of build definition folders
5654

5755
### [Get-AdoBuildLog](Docs/Get-AdoBuildLog.md)
5856

59-
{{ Fill in the Description }}
57+
Gets the logs for a build
6058

6159
### [Get-AdoOperation](Docs/Get-AdoOperation.md)
6260

63-
{{ Fill in the Description }}
61+
Gets an operation from the the operationId using the given pluginId.
6462

6563
### [Get-AdoProcess](Docs/Get-AdoProcess.md)
6664

67-
{{ Fill in the Description }}
65+
Get one or more available processes
6866

6967
### [Get-AdoProject](Docs/Get-AdoProject.md)
7068

71-
{{ Fill in the Description }}
69+
Get one or many projects from Azure DevOps
7270

7371
### [Get-AdoProjectProperty](Docs/Get-AdoProjectProperty.md)
7472

75-
{{ Fill in the Description }}
73+
Get a collection of team project Property
7674

7775
### [Get-AdoTeam](Docs/Get-AdoTeam.md)
7876

79-
{{ Fill in the Description }}
77+
Get a specific team
8078

8179
### [Get-AdoTeamMember](Docs/Get-AdoTeamMember.md)
8280

83-
{{ Fill in the Description }}
81+
Get a list of members for a specific team.
8482

8583
### [Invoke-AdoEndpoint](Docs/Invoke-AdoEndpoint.md)
8684

87-
{{ Fill in the Description }}
85+
Query Azure Devops
8886

8987
### [New-AdoBuildFolder](Docs/New-AdoBuildFolder.md)
9088

91-
{{ Fill in the Description }}
89+
Creates a new folder
9290

9391
### [New-AdoProject](Docs/New-AdoProject.md)
9492

95-
{{ Fill in the Description }}
93+
Queues a project to be created
9694

9795
### [New-AdoTeam](Docs/New-AdoTeam.md)
9896

99-
{{ Fill in the Description }}
97+
Create a team in a team project
10098

10199
### [Remove-AdoBuild](Docs/Remove-AdoBuild.md)
102100

103-
{{ Fill in the Description }}
101+
Deletes a build
104102

105103
### [Remove-AdoBuildFolder](Docs/Remove-AdoBuildFolder.md)
106104

107-
{{ Fill in the Description }}
105+
Deletes a definition folder
108106

109107
### [Remove-AdoProject](Docs/Remove-AdoProject.md)
110108

111-
{{ Fill in the Description }}
109+
Queues a project to be deleted
112110

113111
### [Remove-AdoTeam](Docs/Remove-AdoTeam.md)
114112

115-
{{ Fill in the Description }}
113+
Delete a team.
116114

117115
### [Start-AdoBuild](Docs/Start-AdoBuild.md)
118116

119-
{{ Fill in the Description }}
117+
Queues a build
120118

121119
### [Update-AdoProject](Docs/Update-AdoProject.md)
122120

123-
{{ Fill in the Description }}
121+
Update Name, Description or Abbreviation of a project
124122

125123
### [Update-AdoTeam](Docs/Update-AdoTeam.md)
126124

127-
{{ Fill in the Description }}
125+
Update a team's name and/or description
126+

RELEASE.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# v2.0.0
2+
3+
--
4+
5+
## DOCUMENTATION
6+
7+
* Complete Documentation #26
8+
9+
## ENHANCEMENT
10+
11+
* Add Build Endpoint #27
12+
* API Version Updates #25
13+
* Custom Invoke Function #24
14+
* Upgrade Build Pipeline #23
15+
* Re-Work Module Structure #22
16+
Binary file not shown.
Binary file not shown.

0 commit comments

Comments
 (0)