Logs - Create
Creare un log e connetterlo al piano di esecuzione di una pipeline.
POST https://dev.azure.com/{organization}/{scopeIdentifier}/_apis/distributedtask/hubs/{hubName}/plans/{planId}/logs?api-version=7.1-preview.1
Parametri dell'URI
Nome | In | Necessario | Tipo | Descrizione |
---|---|---|---|---|
hub
|
path | True |
string |
Nome dell'hub del server. Esempi comuni: "build", "rm", "check" |
organization
|
path | True |
string |
Nome dell'organizzazione di Azure DevOps. |
plan
|
path | True |
string uuid |
ID del piano. |
scope
|
path | True |
string uuid |
GUID del progetto per ambito della richiesta |
api-version
|
query | True |
string |
Versione dell'API da usare. Questa opzione deve essere impostata su '7.1-preview.1' per usare questa versione dell'API. |
Corpo della richiesta
Nome | Tipo | Descrizione |
---|---|---|
createdOn |
string |
Ora della creazione del log attività. |
id |
integer |
ID del log attività. |
indexLocation |
string |
URL REST del log attività quando indicizzato. |
lastChangedOn |
string |
Ora dell'ultima modifica del log attività. |
lineCount |
integer |
Numero delle righe del log attività. |
location |
string |
URL REST del log attività. |
path |
string |
Percorso del log attività. |
Risposte
Nome | Tipo | Descrizione |
---|---|---|
200 OK |
operazione riuscita |
Sicurezza
accessToken
Token di accesso personale. Usare qualsiasi valore per il nome utente e il token come password.
Type:
basic
Esempio
Create a log
Sample Request
POST https://dev.azure.com/{organization}/{scopeIdentifier}/_apis/distributedtask/hubs/{hubName}/plans/{planId}/logs?api-version=7.1-preview.1
{
"path": "logs\\5e6d5dbf-ac69-5f56-8b85-8e9038703a8b",
"createdOn": "0001-01-01T00:00:00",
"lastChangedOn": "0001-01-01T00:00:00",
"id": 0,
"location": null
}
Sample Response
{
"path": "logs\\5e6d5dbf-ac69-5f56-8b85-8e9038703a8b",
"lineCount": 49,
"createdOn": "2022-12-02T09:33:14.873Z",
"lastChangedOn": "2022-12-02T09:50:19.033Z",
"id": 3,
"location": null
}
Definizioni
TaskLog
Un log attività connesso a un record della sequenza temporale.
Nome | Tipo | Descrizione |
---|---|---|
createdOn |
string |
Ora della creazione del log attività. |
id |
integer |
ID del log attività. |
indexLocation |
string |
URL REST del log attività quando indicizzato. |
lastChangedOn |
string |
Ora dell'ultima modifica del log attività. |
lineCount |
integer |
Numero delle righe del log attività. |
location |
string |
URL REST del log attività. |
path |
string |
Percorso del log attività. |