Pipeline logs
Pipeline log
Pipeline log by ID.
GEThttps://cloud-api.calyptia.com/v1/pipeline_logs/{pipelineLogID}
Authorization
Path parameters
pipelineLogID*string (uuid)
Response
OK
Body
id*string (uuid)
pipelineID*string (uuid)
logs*string
lines*integer
status*PipelineLogStatus (enum)
The status of a pipeline log, if NEW hasn't been updated from the cluster. If DONE, logs have been retrieved from the cluster.
NEWDONE
createdAt*string (date-time)
updatedAt*string (date-time)
Request
Response
Delete Pipeline Log
Delete a log given its ID.
DELETEhttps://cloud-api.calyptia.com/v1/pipeline_logs/{pipelineLogID}
Authorization
Path parameters
pipelineLogID*string (uuid)
Response
OK
Body
deleted*boolean
deletedAt*nullable string (date-time)
Request
Response
Update Pipeline Log
Update a log given its ID.
The log will be updated with the given logs
blob of text.
PATCHhttps://cloud-api.calyptia.com/v1/pipeline_logs/{pipelineLogID}
Authorization
Path parameters
pipelineLogID*string (uuid)
Body
logsnullable string
linesnullable integer
statusnullable enum
NEWDONE
Response
OK
Body
updatedAt*string (date-time)
Request
Response