| Parameter | Type | Description | Example |
|---|---|---|---|
| object | The information required for an SQL deployment. | ||
| sqlScript | string | The script of the SQL deployment. | CREATE TEMPORARY TABLE datagen_source( name VARCHAR ) WITH ( 'connector' = 'datagen' ); CREATE TEMPORARY TABLE blackhole_sink( name VARCHAR ) with ( 'connector' = 'blackhole' ); INSERT INTO blackhole_sink SELECT name from datagen_source; |
| additionalDependencies | array | The additional dependency files. If you want to use dependencies such as UDFs, connectors, and formats that are not registered on Ververica Platform (VVP), you need to configure this parameter. You do not need to configure this parameter for dependencies that are registered on VVP. | |
| string | The URL of the additional dependency file. | https://oss/bucket/addition.jar |