Struct google_bigquery2::JobConfiguration
source · pub struct JobConfiguration {
pub load: Option<JobConfigurationLoad>,
pub copy: Option<JobConfigurationTableCopy>,
pub dry_run: Option<bool>,
pub query: Option<JobConfigurationQuery>,
pub labels: Option<HashMap<String, String>>,
pub extract: Option<JobConfigurationExtract>,
}Expand description
There is no detailed description.
This type is not used in any activity, and only used as part of another schema.
Fields§
§load: Option<JobConfigurationLoad>[Pick one] Configures a load job.
copy: Option<JobConfigurationTableCopy>[Pick one] Copies a table.
dry_run: Option<bool>[Optional] If set, don’t actually run this job. A valid query will return a mostly empty response with some processing statistics, while an invalid query will return the same error it would if it wasn’t a dry run. Behavior of non-query jobs is undefined.
query: Option<JobConfigurationQuery>[Pick one] Configures a query job.
labels: Option<HashMap<String, String>>[Experimental] The labels associated with this job. You can use these to organize and group your jobs. Label keys and values can be no longer than 63 characters, can only contain lowercase letters, numeric characters, underscores and dashes. International characters are allowed. Label values are optional. Label keys must start with a letter and each label in the list must have a different key.
extract: Option<JobConfigurationExtract>[Pick one] Configures an extract job.
Trait Implementations§
source§impl Clone for JobConfiguration
impl Clone for JobConfiguration
source§fn clone(&self) -> JobConfiguration
fn clone(&self) -> JobConfiguration
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for JobConfiguration
impl Debug for JobConfiguration
source§impl Default for JobConfiguration
impl Default for JobConfiguration
source§fn default() -> JobConfiguration
fn default() -> JobConfiguration
source§impl<'de> Deserialize<'de> for JobConfiguration
impl<'de> Deserialize<'de> for JobConfiguration
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 JobConfiguration
impl Serialize for JobConfiguration
impl Part for JobConfiguration
Auto Trait Implementations§
impl Freeze for JobConfiguration
impl RefUnwindSafe for JobConfiguration
impl Send for JobConfiguration
impl Sync for JobConfiguration
impl Unpin for JobConfiguration
impl UnwindSafe for JobConfiguration
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§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)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