You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: apiary.apib
+9Lines changed: 9 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -2320,6 +2320,11 @@ If there is no column datatype specified (column.definition.type or column.baset
2320
2320
+ Attributes
2321
2321
+ name (required) - New table name
2322
2322
+ primaryKeysNames[] (string) - Has to be subset of column names and not nullable.
2323
+
+ timestampType (optional, enum[string]) - Standard storage tables internally manage a _timestamp column which is updated on each import with the current timestamp. This option allows to prevent internal _timestamp column creation.
2324
+
+ Members
2325
+
+ MANAGED
2326
+
+ NONE
2327
+
+ Default: MANAGED
2323
2328
+ columns[] (required) - definition of table columns
2324
2329
+ name (required, string) - column name
2325
2330
+ definition (object) - column settings
@@ -10282,6 +10287,10 @@ Requesting changes will remove all approvals and move the Merge request to `deve
10282
10287
+ enclosure (optional) - Field enclosure used in the CSV file. The default value is '"'. (Note: you can specify either the `enclosure` or `escapedBy` parameter, not both.)
10283
10288
+ escapedBy (optional) - Escape character used in the CSV file. The default value is an empty value - no escape character is used. (Note: you can specify either the `enclosure` or `escapedBy` parameter, not both.)
10284
10289
+ primaryKey (optional) - Primary key of a table. If the primary key is set, updates can be done on the table. See CSV incremental import. The primary key can be also composed by multiple columns; the columns must be separated by a comma.
10290
+
+ timestampType (optional, enum[string]) - Type of internal timestamp column only MANAGED value now supported, meaning that _timestamp column managed by storage is created.
0 commit comments