fix(influxdb3): add retention_period to CreateDatabaseRequest (#6629)

Add the undocumented retention_period parameter to the database
creation API for InfluxDB 3 Core.

closes #6610
pull/6609/head^2
Jason Stirnaman 2025-12-15 14:20:44 -05:00 committed by GitHub
parent 7a1ceb439f
commit c681491423
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 6 additions and 0 deletions

View File

@ -2115,6 +2115,12 @@ components:
properties:
db:
type: string
retention_period:
type: string
description: |
The retention period for the database. Specifies how long data should be retained.
Use duration format (for example, "1d", "1h", "30m", "7d").
example: 7d
required:
- db
CreateTableRequest: