Airbyte Kotlin Bulk CDK
Toggle table of contents
0.1.92
jvm
Platform filter
jvm
Switch theme
Search in API
Airbyte Kotlin Bulk CDK
bulk-cdk-toolkit-load-db
/
io.airbyte.cdk.load.orchestration.db.direct_load_table
Package-level
declarations
Types
Types
Alter
Table
Report
Link copied to clipboard
data
class
AlterTableReport
<
Type
>
(
val
columnsToAdd
:
List
<
ColumnAdd
<
Type
>
>
,
val
columnsToRemove
:
List
<
String
>
,
val
columnsToChangeType
:
List
<
ColumnChange
<
Type
>
>
,
val
columnsToRetain
:
List
<
String
>
)
Column
Add
Link copied to clipboard
data
class
ColumnAdd
<
Type
>
(
val
name
:
String
,
val
type
:
Type
)
Column
Change
Link copied to clipboard
data
class
ColumnChange
<
Type
>
(
val
name
:
String
,
val
originalType
:
Type
,
val
newType
:
Type
)
Direct
Load
Sql
Generator
Link copied to clipboard
interface
DirectLoadSqlGenerator