pub struct SftpReadSettings {
pub store_read_settings: StoreReadSettings,
pub recursive: Option<Value>,
pub wildcard_folder_path: Option<Value>,
pub wildcard_file_name: Option<Value>,
pub enable_partition_discovery: Option<Value>,
pub partition_root_path: Option<Value>,
pub file_list_path: Option<Value>,
pub delete_files_after_completion: Option<Value>,
pub modified_datetime_start: Option<Value>,
pub modified_datetime_end: Option<Value>,
pub disable_chunking: Option<Value>,
}Expand description
Sftp read settings.
Fields§
§store_read_settings: StoreReadSettings§recursive: Option<Value>If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
wildcard_folder_path: Option<Value>Sftp wildcardFolderPath. Type: string (or Expression with resultType string).
wildcard_file_name: Option<Value>Sftp wildcardFileName. Type: string (or Expression with resultType string).
enable_partition_discovery: Option<Value>Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean).
partition_root_path: Option<Value>Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string).
file_list_path: Option<Value>Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string).
delete_files_after_completion: Option<Value>Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
modified_datetime_start: Option<Value>The start of file’s modified datetime. Type: string (or Expression with resultType string).
modified_datetime_end: Option<Value>The end of file’s modified datetime. Type: string (or Expression with resultType string).
disable_chunking: Option<Value>If true, disable parallel reading within each file. Default is false. Type: boolean (or Expression with resultType boolean).
Implementations§
Source§impl SftpReadSettings
impl SftpReadSettings
pub fn new(store_read_settings: StoreReadSettings) -> Self
Trait Implementations§
Source§impl Clone for SftpReadSettings
impl Clone for SftpReadSettings
Source§fn clone(&self) -> SftpReadSettings
fn clone(&self) -> SftpReadSettings
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more