vsts_get_release_defs {vstsr} | R Documentation |
Azure DevOps Project Release Definition Information
Description
These functions will allow you to scrape release definition information from Azure DevOps.
Usage
vsts_get_release_defs(domain, project, auth_key, quiet = FALSE)
Arguments
domain |
The name of the Azure DevOps organization. |
project |
the name of the project in |
auth_key |
authentication key generated by using |
quiet |
logical whether want general running information from printing. Any
issue with the API call will still show up if set to |
Details
For more information about release definition 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_release_defs("domain", "project", auth_key)
## End(Not run)
[Package vstsr version 1.1.0 Index]