public class DescribeQueryResponse extends AbstractModel
header, skipSign
Constructor and Description |
---|
DescribeQueryResponse() |
DescribeQueryResponse(DescribeQueryResponse source)
NOTE: Any ambiguous key set via .set("AnyKey", "value") will be a shallow copy,
and any explicit key, i.e Foo, set via .setFoo("value") will be a deep copy.
|
Modifier and Type | Method and Description |
---|---|
String |
getDataSet()
Get Default data set of query results
|
String |
getRequestId()
Get The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId).
|
String |
getSQL()
Get The SQL being executed currently.
|
String |
getSQLType()
Get The currently executed task types are divided into DDL, DML, and DQL.
|
Long |
getState()
Get The current status of the task is 0: initializing; 1: running; 2: executed; 3: writing data; 4: queuing; -1: task execution failed; -3: manually terminated.
|
String |
getTaskId()
Get Task ID
|
void |
setDataSet(String DataSet)
Set Default data set of query results
|
void |
setRequestId(String RequestId)
Set The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId).
|
void |
setSQL(String SQL)
Set The SQL being executed currently.
|
void |
setSQLType(String SQLType)
Set The currently executed task types are divided into DDL, DML, and DQL.
|
void |
setState(Long State)
Set The current status of the task is 0: initializing; 1: running; 2: executed; 3: writing data; 4: queuing; -1: task execution failed; -3: manually terminated.
|
void |
setTaskId(String TaskId)
Set Task ID
|
void |
toMap(HashMap<String,String> map,
String prefix)
Internal implementation, normal users should not use it.
|
any, fromJsonString, getBinaryParams, GetHeader, getMultipartRequestParams, getSkipSign, set, SetHeader, setParamArrayObj, setParamArraySimple, setParamObj, setParamSimple, setSkipSign, toJsonString
public DescribeQueryResponse()
public DescribeQueryResponse(DescribeQueryResponse source)
public String getTaskId()
public void setTaskId(String TaskId)
TaskId
- Task IDpublic String getSQL()
public void setSQL(String SQL)
SQL
- The SQL being executed currently. A task contains one SQL.public String getSQLType()
public void setSQLType(String SQLType)
SQLType
- The currently executed task types are divided into DDL, DML, and DQL.public Long getState()
public void setState(Long State)
State
- The current status of the task is 0: initializing; 1: running; 2: executed; 3: writing data; 4: queuing; -1: task execution failed; -3: manually terminated. The task execution result is returned only when the task is successfully executed.public String getDataSet()
public void setDataSet(String DataSet)
DataSet
- Default data set of query resultspublic String getRequestId()
public void setRequestId(String RequestId)
RequestId
- The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.Copyright © 2024. All rights reserved.