Pipeline secrets
Pipeline secret
Secret by ID.
GEThttps://cloud-api.calyptia.com/v1/pipeline_secrets/{secretID}
Authorization
Path parameters
secretID*string (uuid)
Response
OK
Body
id*string (uuid)
key*string
Example: "mysecret"
value*string (byte)
createdAt*string (date-time)
updatedAt*string (date-time)
Request
Response
Delete pipeline secret
Delete pipeline secret by its ID. The secret cannot be deleted if some pipeline config is still referencing it; you must delete the pipeline first if you want to delete the secret.
DELETEhttps://cloud-api.calyptia.com/v1/pipeline_secrets/{secretID}
Authorization
Path parameters
secretID*string (uuid)
Response
No Content
Request
Update pipeline secret
Update secret by its ID.
PATCHhttps://cloud-api.calyptia.com/v1/pipeline_secrets/{secretID}
Authorization
Path parameters
secretID*string (uuid)
Body
keynullable string
Example: "newsecret"
valuenullable string (byte)
Response
No Content
Request