errorCode property
The error code. Possible string values are:
- "DATA_EXECUTION_ERROR_CODE_UNSPECIFIED" : Default value, do not use.
- "TIMED_OUT" : The data execution timed out.
- "TOO_MANY_ROWS" : The data execution returns more rows than the limit.
- "TOO_MANY_COLUMNS" : The data execution returns more columns than the limit.
- "TOO_MANY_CELLS" : The data execution returns more cells than the limit.
- "ENGINE" : Error is received from the backend data execution engine (e.g. BigQuery). Check error_message for details.
- "PARAMETER_INVALID" : One or some of the provided data source parameters are invalid.
- "UNSUPPORTED_DATA_TYPE" : The data execution returns an unsupported data type.
- "DUPLICATE_COLUMN_NAMES" : The data execution returns duplicate column names or aliases.
- "INTERRUPTED" : The data execution is interrupted. Please refresh later.
- "CONCURRENT_QUERY" : The data execution is currently in progress, can not be refreshed until it completes.
- "OTHER" : Other errors.
- "TOO_MANY_CHARS_PER_CELL" : The data execution returns values that exceed the maximum characters allowed in a single cell.
- "DATA_NOT_FOUND" : The database referenced by the data source is not found. * /
- "PERMISSION_DENIED" : The user does not have access to the database referenced by the data source.
- "MISSING_COLUMN_ALIAS" : The data execution returns columns with missing aliases.
- "OBJECT_NOT_FOUND" : The data source object does not exist.
- "OBJECT_IN_ERROR_STATE" : The data source object is currently in error state. To force refresh, set force in RefreshDataSourceRequest.
- "OBJECT_SPEC_INVALID" : The data source object specification is invalid.
- "DATA_EXECUTION_CANCELLED" : The data execution has been cancelled.
Implementation
core.String? errorCode;