Creating a Script
Function
This API is used to create a script. Currently, the following script types are supported: DLI SQL, Flink SQL, RDS SQL, Spark SQL, Hive SQL, DWS SQL, Shell, Presto SQL, ClickHouse SQL, HetuEngine SQL, Python, Impala SQL, and Spark Python.
- Parameter description
Table 1 URI parameter Parameter
Mandatory
Type
Description
project_id
Yes
String
Project ID. For details about how to obtain a project ID, see Project ID and Account ID.
Request Parameters
Parameter |
Mandatory |
Type |
Description |
---|---|---|---|
workspace |
No |
String |
Workspace ID.
|
Parameter |
Mandatory |
Type |
Description |
---|---|---|---|
name |
Yes |
String |
Script name. The name contains a maximum of 128 characters, including only letters, numbers, hyphens (-), and periods (.). The script name must be unique. |
type |
Yes |
String |
Script type.
|
content |
Yes |
String |
Script content. A maximum of 4 MB is supported. |
directory |
No |
String |
Directory for storing the script. Access the DataArts Studio console and go to the DataArts Factory page. In the left navigation pane, choose . In the directory tree of the script, you can view the created directories. The default directory is the root directory. |
connectionName |
No |
String |
Name of the connection associated with the script. This parameter is mandatory when type is set to DLISQL, SparkSQL, HiveSQL, DWSSQL, Shell, PRESTO, ClickHouseSQL, HetuEngineSQL, RDSSQL, ImpalaSQL, PYTHON, or SparkPython. To obtain the existing connections, refer to the instructions in Querying a Connection List (to Be Taken Offline). By default, this parameter is left blank. |
database |
No |
String |
Database associated with an SQL statement. This parameter is available only when type is set to DLISQL, SparkSQL, HiveSQL, DWSSQL, PRESTO, RDSSQL, ClickHouseSQL, ImpalaSQL, or HetuEngineSQL.
|
queueName |
Yes |
String |
Queue name of the DLI resource. This parameter is available only when type is set to DLISQL. You can obtain the queue information by calling the API for "Querying All Queues" in the Data Lake Insight API Reference. By default, this parameter is left blank. |
configuration |
No |
map <String,Object> |
Configuration defined by a user for the job. This parameter is available only when type is set to DLISQL. For details about the supported configuration items, see conf parameter description in the "Submitting a SQL Job" section of the Data Lake Insight API Reference. By default, this parameter is left blank. |
description |
No |
String |
The description contains a maximum of 255 characters. |
owner |
No |
String |
Owner name |
targetStatus |
No |
String |
This parameter is required if the review function is enabled. It indicates the target status of the script. The value can be SAVED, SUBMITTED, or PRODUCTION.
|
approvers |
No |
List<JobApprover> |
Script approver. This parameter is required if the review function is enabled. For details, see Table 4. |
Response Parameters
None.
Example Request
POST /v1/b384b9e9ab9b4ee8994c8633aabc9505/scripts { "name": "echoTimeShell", "type": "Shell", "content": "echo a", "queueName": "default", "connectionName": "con" }
POST /v1/b384b9e9ab9b4ee8994c8633aabc9505/scripts { "name": "echoTimeShell", "type": "Shell", "content": "echo a", "queueName": "default", "connectionName": "con", "targetStatus":"SUBMITTED", "approvers": [ { "approverName": "userName1" }, { "approverName": "userName2" } ] }
Example Response
Status Code
See Status Codes.
Feedback
Was this page helpful?
Provide feedbackThank you very much for your feedback. We will continue working to improve the documentation.See the reply and handling status in My Cloud VOC.
For any further questions, feel free to contact us through the chatbot.
Chatbot