#[non_exhaustive]pub struct JdbcTargetBuilder { /* private fields */ }Expand description
A builder for JdbcTarget.
Implementations§
Source§impl JdbcTargetBuilder
impl JdbcTargetBuilder
Sourcepub fn connection_name(self, input: impl Into<String>) -> Self
pub fn connection_name(self, input: impl Into<String>) -> Self
The name of the connection to use to connect to the JDBC target.
Sourcepub fn set_connection_name(self, input: Option<String>) -> Self
pub fn set_connection_name(self, input: Option<String>) -> Self
The name of the connection to use to connect to the JDBC target.
Sourcepub fn get_connection_name(&self) -> &Option<String>
pub fn get_connection_name(&self) -> &Option<String>
The name of the connection to use to connect to the JDBC target.
Sourcepub fn exclusions(self, input: impl Into<String>) -> Self
pub fn exclusions(self, input: impl Into<String>) -> Self
Appends an item to exclusions.
To override the contents of this collection use set_exclusions.
A list of glob patterns used to exclude from the crawl. For more information, see Catalog Tables with a Crawler.
Sourcepub fn set_exclusions(self, input: Option<Vec<String>>) -> Self
pub fn set_exclusions(self, input: Option<Vec<String>>) -> Self
A list of glob patterns used to exclude from the crawl. For more information, see Catalog Tables with a Crawler.
Sourcepub fn get_exclusions(&self) -> &Option<Vec<String>>
pub fn get_exclusions(&self) -> &Option<Vec<String>>
A list of glob patterns used to exclude from the crawl. For more information, see Catalog Tables with a Crawler.
Sourcepub fn enable_additional_metadata(self, input: JdbcMetadataEntry) -> Self
pub fn enable_additional_metadata(self, input: JdbcMetadataEntry) -> Self
Appends an item to enable_additional_metadata.
To override the contents of this collection use set_enable_additional_metadata.
Specify a value of RAWTYPES or COMMENTS to enable additional metadata in table responses. RAWTYPES provides the native-level datatype. COMMENTS provides comments associated with a column or table in the database.
If you do not need additional metadata, keep the field empty.
Sourcepub fn set_enable_additional_metadata(
self,
input: Option<Vec<JdbcMetadataEntry>>,
) -> Self
pub fn set_enable_additional_metadata( self, input: Option<Vec<JdbcMetadataEntry>>, ) -> Self
Specify a value of RAWTYPES or COMMENTS to enable additional metadata in table responses. RAWTYPES provides the native-level datatype. COMMENTS provides comments associated with a column or table in the database.
If you do not need additional metadata, keep the field empty.
Sourcepub fn get_enable_additional_metadata(&self) -> &Option<Vec<JdbcMetadataEntry>>
pub fn get_enable_additional_metadata(&self) -> &Option<Vec<JdbcMetadataEntry>>
Specify a value of RAWTYPES or COMMENTS to enable additional metadata in table responses. RAWTYPES provides the native-level datatype. COMMENTS provides comments associated with a column or table in the database.
If you do not need additional metadata, keep the field empty.
Sourcepub fn build(self) -> JdbcTarget
pub fn build(self) -> JdbcTarget
Consumes the builder and constructs a JdbcTarget.
Trait Implementations§
Source§impl Clone for JdbcTargetBuilder
impl Clone for JdbcTargetBuilder
Source§fn clone(&self) -> JdbcTargetBuilder
fn clone(&self) -> JdbcTargetBuilder
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for JdbcTargetBuilder
impl Debug for JdbcTargetBuilder
Source§impl Default for JdbcTargetBuilder
impl Default for JdbcTargetBuilder
Source§fn default() -> JdbcTargetBuilder
fn default() -> JdbcTargetBuilder
Source§impl PartialEq for JdbcTargetBuilder
impl PartialEq for JdbcTargetBuilder
Source§fn eq(&self, other: &JdbcTargetBuilder) -> bool
fn eq(&self, other: &JdbcTargetBuilder) -> bool
self and other values to be equal, and is used by ==.impl StructuralPartialEq for JdbcTargetBuilder
Auto Trait Implementations§
impl Freeze for JdbcTargetBuilder
impl RefUnwindSafe for JdbcTargetBuilder
impl Send for JdbcTargetBuilder
impl Sync for JdbcTargetBuilder
impl Unpin for JdbcTargetBuilder
impl UnsafeUnpin for JdbcTargetBuilder
impl UnwindSafe for JdbcTargetBuilder
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