Endpoint Mongodb Settings Args
data class EndpointMongodbSettingsArgs(val authMechanism: Output<String>? = null, val authSource: Output<String>? = null, val authType: Output<String>? = null, val docsToInvestigate: Output<String>? = null, val extractDocId: Output<String>? = null, val nestingLevel: Output<String>? = null) : ConvertibleToJava<EndpointMongodbSettingsArgs>
Constructors
Properties
Link copied to clipboard
Authentication mechanism to access the MongoDB source endpoint. Default is default
.
Link copied to clipboard
Authentication database name. Not used when auth_type
is no
. Default is admin
.
Link copied to clipboard
Number of documents to preview to determine the document organization. Use this setting when nesting_level
is set to one
. Default is 1000
.
Link copied to clipboard
Document ID. Use this setting when nesting_level
is set to none
. Default is false
.
Link copied to clipboard
Specifies either document or table mode. Default is none
. Valid values are one
(table mode) and none
(document mode).