pub struct BlmtConfig {
pub bucket: Option<String>,
pub connection_name: Option<String>,
pub file_format: Option<String>,
pub root_path: Option<String>,
pub table_format: Option<String>,
}Expand description
The configuration for BLMT.
This type is not used in any activity, and only used as part of another schema.
Fields§
§bucket: Option<String>Required. The Cloud Storage bucket name.
connection_name: Option<String>Required. The bigquery connection. Format: {project}.{location}.{name}
file_format: Option<String>Required. The file format.
root_path: Option<String>The root path inside the Cloud Storage bucket.
table_format: Option<String>Required. The table format.
Trait Implementations§
Source§impl Clone for BlmtConfig
impl Clone for BlmtConfig
Source§fn clone(&self) -> BlmtConfig
fn clone(&self) -> BlmtConfig
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for BlmtConfig
impl Debug for BlmtConfig
Source§impl Default for BlmtConfig
impl Default for BlmtConfig
Source§fn default() -> BlmtConfig
fn default() -> BlmtConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for BlmtConfig
impl<'de> Deserialize<'de> for BlmtConfig
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>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for BlmtConfig
impl Serialize for BlmtConfig
impl Part for BlmtConfig
Auto Trait Implementations§
impl Freeze for BlmtConfig
impl RefUnwindSafe for BlmtConfig
impl Send for BlmtConfig
impl Sync for BlmtConfig
impl Unpin for BlmtConfig
impl UnwindSafe for BlmtConfig
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
Mutably borrows from an owned value. Read more