pub struct DataSourceTable {
pub column_selection_type: Option<String>,
pub columns: Option<Vec<DataSourceColumnReference>>,
pub data_execution_status: Option<DataExecutionStatus>,
pub data_source_id: Option<String>,
pub filter_specs: Option<Vec<FilterSpec>>,
pub row_limit: Option<i32>,
pub sort_specs: Option<Vec<SortSpec>>,
}Expand description
A data source table, which allows the user to import a static table of data from the DataSource into Sheets. This is also known as “Extract” in the Sheets editor.
This type is not used in any activity, and only used as part of another schema.
Fields§
§column_selection_type: Option<String>The type to select columns for the data source table. Defaults to SELECTED.
columns: Option<Vec<DataSourceColumnReference>>Columns selected for the data source table. The column_selection_type must be SELECTED.
data_execution_status: Option<DataExecutionStatus>Output only. The data execution status.
data_source_id: Option<String>The ID of the data source the data source table is associated with.
filter_specs: Option<Vec<FilterSpec>>Filter specifications in the data source table.
row_limit: Option<i32>The limit of rows to return. If not set, a default limit is applied. Please refer to the Sheets editor for the default and max limit.
sort_specs: Option<Vec<SortSpec>>Sort specifications in the data source table. The result of the data source table is sorted based on the sort specifications in order.
Trait Implementations§
Source§impl Clone for DataSourceTable
impl Clone for DataSourceTable
Source§fn clone(&self) -> DataSourceTable
fn clone(&self) -> DataSourceTable
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more