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 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 moreSource§impl Debug for RefreshDataSourceRequest
impl Debug for RefreshDataSourceRequest
Source§impl Default for RefreshDataSourceRequest
impl Default for RefreshDataSourceRequest
Source§fn default() -> RefreshDataSourceRequest
fn default() -> RefreshDataSourceRequest
Source§impl<'de> Deserialize<'de> for RefreshDataSourceRequest
impl<'de> Deserialize<'de> for RefreshDataSourceRequest
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Source§impl Serialize for RefreshDataSourceRequest
impl Serialize for RefreshDataSourceRequest
impl Part for RefreshDataSourceRequest
Auto Trait Implementations§
impl Freeze for RefreshDataSourceRequest
impl RefUnwindSafe for RefreshDataSourceRequest
impl Send for RefreshDataSourceRequest
impl Sync for RefreshDataSourceRequest
impl Unpin for RefreshDataSourceRequest
impl UnwindSafe for RefreshDataSourceRequest
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more