pub struct JobConfigurationExtract {
pub destination_uri: Option<String>,
pub destination_format: Option<String>,
pub compression: Option<String>,
pub destination_uris: Option<Vec<String>>,
pub print_header: Option<bool>,
pub field_delimiter: Option<String>,
pub source_table: Option<TableReference>,
}Expand description
There is no detailed description.
This type is not used in any activity, and only used as part of another schema.
Fields§
§destination_uri: Option<String>[Pick one] DEPRECATED: Use destinationUris instead, passing only one URI as necessary. The fully-qualified Google Cloud Storage URI where the extracted table should be written.
destination_format: Option<String>[Optional] The exported file format. Possible values include CSV, NEWLINE_DELIMITED_JSON and AVRO. The default value is CSV. Tables with nested or repeated fields cannot be exported as CSV.
compression: Option<String>[Optional] The compression type to use for exported files. Possible values include GZIP and NONE. The default value is NONE.
destination_uris: Option<Vec<String>>[Pick one] A list of fully-qualified Google Cloud Storage URIs where the extracted table should be written.
print_header: Option<bool>[Optional] Whether to print out a header row in the results. Default is true.
field_delimiter: Option<String>[Optional] Delimiter to use between fields in the exported data. Default is ‘,’
source_table: Option<TableReference>[Required] A reference to the table being exported.
Trait Implementations§
source§impl Clone for JobConfigurationExtract
impl Clone for JobConfigurationExtract
source§fn clone(&self) -> JobConfigurationExtract
fn clone(&self) -> JobConfigurationExtract
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for JobConfigurationExtract
impl Debug for JobConfigurationExtract
source§impl Default for JobConfigurationExtract
impl Default for JobConfigurationExtract
source§fn default() -> JobConfigurationExtract
fn default() -> JobConfigurationExtract
source§impl<'de> Deserialize<'de> for JobConfigurationExtract
impl<'de> Deserialize<'de> for JobConfigurationExtract
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 JobConfigurationExtract
impl Serialize for JobConfigurationExtract
impl Part for JobConfigurationExtract
Auto Trait Implementations§
impl Freeze for JobConfigurationExtract
impl RefUnwindSafe for JobConfigurationExtract
impl Send for JobConfigurationExtract
impl Sync for JobConfigurationExtract
impl Unpin for JobConfigurationExtract
impl UnwindSafe for JobConfigurationExtract
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