DownloadReleaseLogs
Download logs for the specific release.
Stored Procedures Specific Information
Process of Download Release Logs
Azure DevOps allows only a small subset of columns to be used in the EXEC query. These columns can typically be used with only = comparison. The available columns for DownloadReleaseLogs are ProjectId, ReleaseId and FileLocation.
For example:
EXECUTE DownloadReleaseLogs ProjectId = '66eb7414-f622-4eff-88da-3ad681f19073', ReleaseId = 1, FileLocation = 'C:\azuredevops'
Input
Name | Type | Required | Description |
ProjectId | String | True | Id of the project. |
ReleaseId | Integer | True | Id of the release. |
FileLocation | String | False | Location of the file on the disk. |
Encoding | String | False | The FileData input encoding type.
使用できる値は次のとおりです。NONE, BASE64 デフォルト値はBASE64です。 |
Result Set Columns
Name | Type | Description |
Status | String | Stored procedure execution status. |
FileData | String | If the FileLocation and FileStream are not provided, this contains the content of the file. |