pub struct RefreshDataSourceRequest {
pub data_source_id: Option<String>,
pub force: Option<bool>,
pub is_all: Option<bool>,
pub references: Option<DataSourceObjectReferences>,
}Expand description
Refreshes one or multiple data source objects in the spreadsheet by the specified references. The request requires an additional bigquery.readonly OAuth scope if you are refreshing a BigQuery data source. If there are multiple refresh requests referencing the same data source objects in one batch, only the last refresh request is processed, and all those requests will have the same response accordingly.
This type is not used in any activity, and only used as part of another schema.
Fields§
§data_source_id: Option<String>Reference to a DataSource. If specified, refreshes all associated data source objects for the data source.
force: Option<bool>Refreshes the data source objects regardless of the current state. If not set and a referenced data source object was in error state, the refresh will fail immediately.
is_all: Option<bool>Refreshes all existing data source objects in the spreadsheet.
references: Option<DataSourceObjectReferences>References to data source objects to refresh.
Trait Implementations§
Source§impl Clone for RefreshDataSourceRequest
impl Clone for RefreshDataSourceRequest
Source§fn clone(&self) -> RefreshDataSourceRequest
fn clone(&self) -> RefreshDataSourceRequest
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more