Skip to content

Commit cdd830c

Browse files
OAS Update
1 parent 0ebcec5 commit cdd830c

File tree

1 file changed

+15
-2
lines changed

1 file changed

+15
-2
lines changed

services/intake/v1beta/intake.json

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -312,14 +312,17 @@
312312
"type": "string"
313313
},
314314
"partitionBy": {
315+
"description": "List of Iceberg partitioning expressions to use when creating the target table.\nThis setting can only be used when `partitioning` is set to `manual`.\nPartitioning configuration of an Intake cannot be changed after creation.\nSee the [Apache Iceberg spec](https://iceberg.apache.org/spec/#partitioning) for more details.\n",
315316
"items": {
316-
"description": "Optional list of Iceberg partition field names to use when creating a table. This can only be set on creation of an intake and cannot be changed later.",
317317
"maxLength": 1024,
318318
"type": "string"
319319
},
320320
"nullable": true,
321321
"type": "array"
322322
},
323+
"partitioning": {
324+
"$ref": "#/components/schemas/partitioningType"
325+
},
323326
"tableName": {
324327
"description": "The table name is a short name chosen by the user to identify the table in Iceberg.",
325328
"example": "my-table",
@@ -645,6 +648,16 @@
645648
"intakes"
646649
]
647650
},
651+
"partitioningType": {
652+
"default": "none",
653+
"description": "The target table's partitioning.\n* `none` disables partitioning, the default.\n* `intake-time` configures daily partitioning based on the automatically created ingestion time column `__intake_ts`.\n* `manual` allows arbitrary Iceberg partitioning expression to be set via `partitionBy`.\n",
654+
"enum": [
655+
"none",
656+
"intake-time",
657+
"manual"
658+
],
659+
"type": "string"
660+
},
648661
"update-intake-runnerPayload": {
649662
"properties": {
650663
"description": {
@@ -755,7 +768,7 @@
755768
"info": {
756769
"description": "This API provides endpoints for managing Intakes.\n",
757770
"title": "STACKIT Intake API",
758-
"version": "1beta.2.3"
771+
"version": "1beta.3.1"
759772
},
760773
"openapi": "3.0.3",
761774
"paths": {

0 commit comments

Comments
 (0)