vsts_get_releases {vstsr} | R Documentation |
Azure DevOps Project Release Information
Description
These functions will allow you to scrape releases from Azure DevOps.
Usage
vsts_get_releases(domain, project, auth_key, query = NULL)
vsts_get_release(domain, project, release, auth_key)
Arguments
domain |
The name of the Azure DevOps organization. |
project |
the name of the project in |
auth_key |
authentication key generated by using |
query |
a list of extra parameters that can be sent to the API call |
release |
Release Definition ID |
Details
For more information about release API calls check https://docs.microsoft.com/en-us/rest/api/azure/devops/release/Releases.
Examples
## Not run:
# Add in own details to get a non-NULL output
auth_key <- vsts_auth_key("<username>", "<password>")
vsts_get_releases("domain", "project", auth_key)
## End(Not run)
[Package vstsr version 1.1.0 Index]