Files
Pipeline files
Files from a pipeline.
GEThttps://cloud-api.calyptia.com/v1/aggregator_pipelines/{pipelineID}/files
Authorization
Path parameters
pipelineID*string (uuid)
Query parameters
Response
OK
Body
id*string (uuid)
processingRuleID*nullable string (uuid)
name*string
Example: "myfile"
contents*string (byte)
encrypted*boolean
createdAt*string (date-time)
updatedAt*string (date-time)
Request
Response
Create pipeline file
Create file within a pipeline.
The given name is unique within the pipeline.
These files can be referenced by their name within a fluentbit configuration file like so {{files.thename}}
.
Use them to share common stuff like parsers.
POSThttps://cloud-api.calyptia.com/v1/aggregator_pipelines/{pipelineID}/files
Authorization
Path parameters
pipelineID*string (uuid)
Body
name*string
Example: "newfile"
contents*string (byte)
encrypted*boolean
Response
Created
Body
id*string (uuid)
createdAt*string (date-time)
Request
Response