pub struct DiscoverConnectionProfileRequest {
pub connection_profile: Option<ConnectionProfile>,
pub connection_profile_name: Option<String>,
pub full_hierarchy: Option<bool>,
pub hierarchy_depth: Option<i32>,
pub mysql_rdbms: Option<MysqlRdbms>,
pub oracle_rdbms: Option<OracleRdbms>,
pub postgresql_rdbms: Option<PostgresqlRdbms>,
pub sql_server_rdbms: Option<SqlServerRdbms>,
}
Expand description
Request message for ‘discover’ ConnectionProfile request.
§Activities
This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).
Fields§
§connection_profile: Option<ConnectionProfile>
An ad-hoc connection profile configuration.
connection_profile_name: Option<String>
A reference to an existing connection profile.
full_hierarchy: Option<bool>
Whether to retrieve the full hierarchy of data objects (TRUE) or only the current level (FALSE).
hierarchy_depth: Option<i32>
The number of hierarchy levels below the current level to be retrieved.
mysql_rdbms: Option<MysqlRdbms>
MySQL RDBMS to enrich with child data objects and metadata.
oracle_rdbms: Option<OracleRdbms>
Oracle RDBMS to enrich with child data objects and metadata.
postgresql_rdbms: Option<PostgresqlRdbms>
PostgreSQL RDBMS to enrich with child data objects and metadata.
sql_server_rdbms: Option<SqlServerRdbms>
SQLServer RDBMS to enrich with child data objects and metadata.
Trait Implementations§
Source§impl Clone for DiscoverConnectionProfileRequest
impl Clone for DiscoverConnectionProfileRequest
Source§fn clone(&self) -> DiscoverConnectionProfileRequest
fn clone(&self) -> DiscoverConnectionProfileRequest
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Default for DiscoverConnectionProfileRequest
impl Default for DiscoverConnectionProfileRequest
Source§fn default() -> DiscoverConnectionProfileRequest
fn default() -> DiscoverConnectionProfileRequest
Source§impl<'de> Deserialize<'de> for DiscoverConnectionProfileRequest
impl<'de> Deserialize<'de> for DiscoverConnectionProfileRequest
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>,
impl RequestValue for DiscoverConnectionProfileRequest
Auto Trait Implementations§
impl Freeze for DiscoverConnectionProfileRequest
impl RefUnwindSafe for DiscoverConnectionProfileRequest
impl Send for DiscoverConnectionProfileRequest
impl Sync for DiscoverConnectionProfileRequest
impl Unpin for DiscoverConnectionProfileRequest
impl UnwindSafe for DiscoverConnectionProfileRequest
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