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 mongodb_cluster: Option<MongodbCluster>,
pub mysql_rdbms: Option<MysqlRdbms>,
pub oracle_rdbms: Option<OracleRdbms>,
pub postgresql_rdbms: Option<PostgresqlRdbms>,
pub salesforce_org: Option<SalesforceOrg>,
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.
mongodb_cluster: Option<MongodbCluster>MongoDB cluster to enrich with child data objects and metadata.
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.
salesforce_org: Option<SalesforceOrg>Salesforce organization 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 more