airbyte.SourceMongodbV2
Explore with Pulumi AI
SourceMongodbV2 Resource
Example Usage
Coming soon!
Coming soon!
Coming soon!
Coming soon!
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.airbyte.SourceMongodbV2;
import com.pulumi.airbyte.SourceMongodbV2Args;
import com.pulumi.airbyte.inputs.SourceMongodbV2ConfigurationArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var mySourceMongodbv2 = new SourceMongodbV2("mySourceMongodbv2", SourceMongodbV2Args.builder()
.configuration(SourceMongodbV2ConfigurationArgs.builder()
.database_config(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.discover_sample_size(95684)
.initial_load_timeout_hours(0)
.initial_waiting_seconds(7)
.invalid_cdc_cursor_position_behavior("Fail sync")
.queue_size(4)
.update_capture_mode("Lookup")
.build())
.definitionId("e30b0d99-fa62-4e68-8f19-2a57eaddc53f")
.secretId("...my_secret_id...")
.workspaceId("fa7bf7db-d8dc-4773-80b5-3e3a9ea84f0d")
.build());
}
}
resources:
mySourceMongodbv2:
type: airbyte:SourceMongodbV2
properties:
configuration:
database_config:
selfManagedReplicaSet:
additionalProperties: '{ "see": "documentation" }'
authSource: admin
connectionString: mongodb://example1.host.com:27017,example2.host.com:27017,example3.host.com:27017/
database: '...my_database...'
password: '...my_password...'
schemaEnforced: false
username: '...my_username...'
discover_sample_size: 95684
initial_load_timeout_hours: 0
initial_waiting_seconds: 7
invalid_cdc_cursor_position_behavior: Fail sync
queue_size: 4
update_capture_mode: Lookup
definitionId: e30b0d99-fa62-4e68-8f19-2a57eaddc53f
secretId: '...my_secret_id...'
workspaceId: fa7bf7db-d8dc-4773-80b5-3e3a9ea84f0d
Create SourceMongodbV2 Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new SourceMongodbV2(name: string, args: SourceMongodbV2Args, opts?: CustomResourceOptions);
@overload
def SourceMongodbV2(resource_name: str,
args: SourceMongodbV2Args,
opts: Optional[ResourceOptions] = None)
@overload
def SourceMongodbV2(resource_name: str,
opts: Optional[ResourceOptions] = None,
configuration: Optional[SourceMongodbV2ConfigurationArgs] = None,
workspace_id: Optional[str] = None,
definition_id: Optional[str] = None,
name: Optional[str] = None,
secret_id: Optional[str] = None)
func NewSourceMongodbV2(ctx *Context, name string, args SourceMongodbV2Args, opts ...ResourceOption) (*SourceMongodbV2, error)
public SourceMongodbV2(string name, SourceMongodbV2Args args, CustomResourceOptions? opts = null)
public SourceMongodbV2(String name, SourceMongodbV2Args args)
public SourceMongodbV2(String name, SourceMongodbV2Args args, CustomResourceOptions options)
type: airbyte:SourceMongodbV2
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args SourceMongodbV2Args
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args SourceMongodbV2Args
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args SourceMongodbV2Args
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args SourceMongodbV2Args
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args SourceMongodbV2Args
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var sourceMongodbV2Resource = new Airbyte.SourceMongodbV2("sourceMongodbV2Resource", new()
{
Configuration = new Airbyte.Inputs.SourceMongodbV2ConfigurationArgs
{
DatabaseConfig = new Airbyte.Inputs.SourceMongodbV2ConfigurationDatabaseConfigArgs
{
MongoDbAtlasReplicaSet = new Airbyte.Inputs.SourceMongodbV2ConfigurationDatabaseConfigMongoDbAtlasReplicaSetArgs
{
ConnectionString = "string",
Database = "string",
Password = "string",
Username = "string",
AdditionalProperties = "string",
AuthSource = "string",
SchemaEnforced = false,
},
SelfManagedReplicaSet = new Airbyte.Inputs.SourceMongodbV2ConfigurationDatabaseConfigSelfManagedReplicaSetArgs
{
ConnectionString = "string",
Database = "string",
AdditionalProperties = "string",
AuthSource = "string",
Password = "string",
SchemaEnforced = false,
Username = "string",
},
},
DiscoverSampleSize = 0,
InitialLoadTimeoutHours = 0,
InitialWaitingSeconds = 0,
InvalidCdcCursorPositionBehavior = "string",
QueueSize = 0,
UpdateCaptureMode = "string",
},
WorkspaceId = "string",
DefinitionId = "string",
Name = "string",
SecretId = "string",
});
example, err := airbyte.NewSourceMongodbV2(ctx, "sourceMongodbV2Resource", &airbyte.SourceMongodbV2Args{
Configuration: &.SourceMongodbV2ConfigurationArgs{
DatabaseConfig: &.SourceMongodbV2ConfigurationDatabaseConfigArgs{
MongoDbAtlasReplicaSet: &.SourceMongodbV2ConfigurationDatabaseConfigMongoDbAtlasReplicaSetArgs{
ConnectionString: pulumi.String("string"),
Database: pulumi.String("string"),
Password: pulumi.String("string"),
Username: pulumi.String("string"),
AdditionalProperties: pulumi.String("string"),
AuthSource: pulumi.String("string"),
SchemaEnforced: pulumi.Bool(false),
},
SelfManagedReplicaSet: &.SourceMongodbV2ConfigurationDatabaseConfigSelfManagedReplicaSetArgs{
ConnectionString: pulumi.String("string"),
Database: pulumi.String("string"),
AdditionalProperties: pulumi.String("string"),
AuthSource: pulumi.String("string"),
Password: pulumi.String("string"),
SchemaEnforced: pulumi.Bool(false),
Username: pulumi.String("string"),
},
},
DiscoverSampleSize: pulumi.Float64(0),
InitialLoadTimeoutHours: pulumi.Float64(0),
InitialWaitingSeconds: pulumi.Float64(0),
InvalidCdcCursorPositionBehavior: pulumi.String("string"),
QueueSize: pulumi.Float64(0),
UpdateCaptureMode: pulumi.String("string"),
},
WorkspaceId: pulumi.String("string"),
DefinitionId: pulumi.String("string"),
Name: pulumi.String("string"),
SecretId: pulumi.String("string"),
})
var sourceMongodbV2Resource = new SourceMongodbV2("sourceMongodbV2Resource", SourceMongodbV2Args.builder()
.configuration(SourceMongodbV2ConfigurationArgs.builder()
.databaseConfig(SourceMongodbV2ConfigurationDatabaseConfigArgs.builder()
.mongoDbAtlasReplicaSet(SourceMongodbV2ConfigurationDatabaseConfigMongoDbAtlasReplicaSetArgs.builder()
.connectionString("string")
.database("string")
.password("string")
.username("string")
.additionalProperties("string")
.authSource("string")
.schemaEnforced(false)
.build())
.selfManagedReplicaSet(SourceMongodbV2ConfigurationDatabaseConfigSelfManagedReplicaSetArgs.builder()
.connectionString("string")
.database("string")
.additionalProperties("string")
.authSource("string")
.password("string")
.schemaEnforced(false)
.username("string")
.build())
.build())
.discoverSampleSize(0)
.initialLoadTimeoutHours(0)
.initialWaitingSeconds(0)
.invalidCdcCursorPositionBehavior("string")
.queueSize(0)
.updateCaptureMode("string")
.build())
.workspaceId("string")
.definitionId("string")
.name("string")
.secretId("string")
.build());
source_mongodb_v2_resource = airbyte.SourceMongodbV2("sourceMongodbV2Resource",
configuration={
"database_config": {
"mongo_db_atlas_replica_set": {
"connection_string": "string",
"database": "string",
"password": "string",
"username": "string",
"additional_properties": "string",
"auth_source": "string",
"schema_enforced": False,
},
"self_managed_replica_set": {
"connection_string": "string",
"database": "string",
"additional_properties": "string",
"auth_source": "string",
"password": "string",
"schema_enforced": False,
"username": "string",
},
},
"discover_sample_size": 0,
"initial_load_timeout_hours": 0,
"initial_waiting_seconds": 0,
"invalid_cdc_cursor_position_behavior": "string",
"queue_size": 0,
"update_capture_mode": "string",
},
workspace_id="string",
definition_id="string",
name="string",
secret_id="string")
const sourceMongodbV2Resource = new airbyte.SourceMongodbV2("sourceMongodbV2Resource", {
configuration: {
databaseConfig: {
mongoDbAtlasReplicaSet: {
connectionString: "string",
database: "string",
password: "string",
username: "string",
additionalProperties: "string",
authSource: "string",
schemaEnforced: false,
},
selfManagedReplicaSet: {
connectionString: "string",
database: "string",
additionalProperties: "string",
authSource: "string",
password: "string",
schemaEnforced: false,
username: "string",
},
},
discoverSampleSize: 0,
initialLoadTimeoutHours: 0,
initialWaitingSeconds: 0,
invalidCdcCursorPositionBehavior: "string",
queueSize: 0,
updateCaptureMode: "string",
},
workspaceId: "string",
definitionId: "string",
name: "string",
secretId: "string",
});
type: airbyte:SourceMongodbV2
properties:
configuration:
databaseConfig:
mongoDbAtlasReplicaSet:
additionalProperties: string
authSource: string
connectionString: string
database: string
password: string
schemaEnforced: false
username: string
selfManagedReplicaSet:
additionalProperties: string
authSource: string
connectionString: string
database: string
password: string
schemaEnforced: false
username: string
discoverSampleSize: 0
initialLoadTimeoutHours: 0
initialWaitingSeconds: 0
invalidCdcCursorPositionBehavior: string
queueSize: 0
updateCaptureMode: string
definitionId: string
name: string
secretId: string
workspaceId: string
SourceMongodbV2 Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The SourceMongodbV2 resource accepts the following input properties:
- Configuration
Source
Mongodb V2Configuration - Workspace
Id string - Definition
Id string - The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Requires replacement if changed.
- Name string
- Name of the source e.g. dev-mysql-instance.
- Secret
Id string - Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
- Configuration
Source
Mongodb V2Configuration Args - Workspace
Id string - Definition
Id string - The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Requires replacement if changed.
- Name string
- Name of the source e.g. dev-mysql-instance.
- Secret
Id string - Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
- configuration
Source
Mongodb V2Configuration - workspace
Id String - definition
Id String - The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Requires replacement if changed.
- name String
- Name of the source e.g. dev-mysql-instance.
- secret
Id String - Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
- configuration
Source
Mongodb V2Configuration - workspace
Id string - definition
Id string - The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Requires replacement if changed.
- name string
- Name of the source e.g. dev-mysql-instance.
- secret
Id string - Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
- configuration
Source
Mongodb V2Configuration Args - workspace_
id str - definition_
id str - The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Requires replacement if changed.
- name str
- Name of the source e.g. dev-mysql-instance.
- secret_
id str - Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
- configuration Property Map
- workspace
Id String - definition
Id String - The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Requires replacement if changed.
- name String
- Name of the source e.g. dev-mysql-instance.
- secret
Id String - Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
Outputs
All input properties are implicitly available as output properties. Additionally, the SourceMongodbV2 resource produces the following output properties:
- Created
At double - Id string
- The provider-assigned unique ID for this managed resource.
- Resource
Allocation SourceMongodb V2Resource Allocation - actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
- Source
Id string - Source
Type string
- Created
At float64 - Id string
- The provider-assigned unique ID for this managed resource.
- Resource
Allocation SourceMongodb V2Resource Allocation - actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
- Source
Id string - Source
Type string
- created
At Double - id String
- The provider-assigned unique ID for this managed resource.
- resource
Allocation SourceMongodb V2Resource Allocation - actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
- source
Id String - source
Type String
- created
At number - id string
- The provider-assigned unique ID for this managed resource.
- resource
Allocation SourceMongodb V2Resource Allocation - actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
- source
Id string - source
Type string
- created_
at float - id str
- The provider-assigned unique ID for this managed resource.
- resource_
allocation SourceMongodb V2Resource Allocation - actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
- source_
id str - source_
type str
- created
At Number - id String
- The provider-assigned unique ID for this managed resource.
- resource
Allocation Property Map - actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
- source
Id String - source
Type String
Look up Existing SourceMongodbV2 Resource
Get an existing SourceMongodbV2 resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: SourceMongodbV2State, opts?: CustomResourceOptions): SourceMongodbV2
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
configuration: Optional[SourceMongodbV2ConfigurationArgs] = None,
created_at: Optional[float] = None,
definition_id: Optional[str] = None,
name: Optional[str] = None,
resource_allocation: Optional[SourceMongodbV2ResourceAllocationArgs] = None,
secret_id: Optional[str] = None,
source_id: Optional[str] = None,
source_type: Optional[str] = None,
workspace_id: Optional[str] = None) -> SourceMongodbV2
func GetSourceMongodbV2(ctx *Context, name string, id IDInput, state *SourceMongodbV2State, opts ...ResourceOption) (*SourceMongodbV2, error)
public static SourceMongodbV2 Get(string name, Input<string> id, SourceMongodbV2State? state, CustomResourceOptions? opts = null)
public static SourceMongodbV2 get(String name, Output<String> id, SourceMongodbV2State state, CustomResourceOptions options)
resources: _: type: airbyte:SourceMongodbV2 get: id: ${id}
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Configuration
Source
Mongodb V2Configuration - Created
At double - Definition
Id string - The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Requires replacement if changed.
- Name string
- Name of the source e.g. dev-mysql-instance.
- Resource
Allocation SourceMongodb V2Resource Allocation - actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
- Secret
Id string - Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
- Source
Id string - Source
Type string - Workspace
Id string
- Configuration
Source
Mongodb V2Configuration Args - Created
At float64 - Definition
Id string - The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Requires replacement if changed.
- Name string
- Name of the source e.g. dev-mysql-instance.
- Resource
Allocation SourceMongodb V2Resource Allocation Args - actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
- Secret
Id string - Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
- Source
Id string - Source
Type string - Workspace
Id string
- configuration
Source
Mongodb V2Configuration - created
At Double - definition
Id String - The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Requires replacement if changed.
- name String
- Name of the source e.g. dev-mysql-instance.
- resource
Allocation SourceMongodb V2Resource Allocation - actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
- secret
Id String - Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
- source
Id String - source
Type String - workspace
Id String
- configuration
Source
Mongodb V2Configuration - created
At number - definition
Id string - The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Requires replacement if changed.
- name string
- Name of the source e.g. dev-mysql-instance.
- resource
Allocation SourceMongodb V2Resource Allocation - actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
- secret
Id string - Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
- source
Id string - source
Type string - workspace
Id string
- configuration
Source
Mongodb V2Configuration Args - created_
at float - definition_
id str - The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Requires replacement if changed.
- name str
- Name of the source e.g. dev-mysql-instance.
- resource_
allocation SourceMongodb V2Resource Allocation Args - actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
- secret_
id str - Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
- source_
id str - source_
type str - workspace_
id str
- configuration Property Map
- created
At Number - definition
Id String - The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Requires replacement if changed.
- name String
- Name of the source e.g. dev-mysql-instance.
- resource
Allocation Property Map - actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
- secret
Id String - Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
- source
Id String - source
Type String - workspace
Id String
Supporting Types
SourceMongodbV2Configuration, SourceMongodbV2ConfigurationArgs
- Database
Config SourceMongodb V2Configuration Database Config - Configures the MongoDB cluster type.
- Discover
Sample doubleSize - The maximum number of documents to sample when attempting to discover the unique fields for a collection. Default: 10000
- Initial
Load doubleTimeout Hours - The amount of time an initial load is allowed to continue for before catching up on CDC logs. Default: 8
- Initial
Waiting doubleSeconds - The amount of time the connector will wait when it launches to determine if there is new data to sync or not. Defaults to 300 seconds. Valid range: 120 seconds to 1200 seconds. Default: 300
- Invalid
Cdc stringCursor Position Behavior - Determines whether Airbyte should fail or re-sync data in case of an stale/invalid cursor value into the WAL. If 'Fail sync' is chosen, a user will have to manually reset the connection before being able to continue syncing data. If 'Re-sync data' is chosen, Airbyte will automatically trigger a refresh but could lead to higher cloud costs and data loss. Default: "Fail sync"; must be one of ["Fail sync", "Re-sync data"]
- Queue
Size double - The size of the internal queue. This may interfere with memory consumption and efficiency of the connector, please be careful. Default: 10000
- Update
Capture stringMode - Determines how Airbyte looks up the value of an updated document. If 'Lookup' is chosen, the current value of the document will be read. If 'Post Image' is chosen, then the version of the document immediately after an update will be read. WARNING : Severe data loss will occur if this option is chosen and the appropriate settings are not set on your Mongo instance : https://www.mongodb.com/docs/manual/changeStreams/#change-streams-with-document-pre-and-post-images. Default: "Lookup"; must be one of ["Lookup", "Post Image"]
- Database
Config SourceMongodb V2Configuration Database Config - Configures the MongoDB cluster type.
- Discover
Sample float64Size - The maximum number of documents to sample when attempting to discover the unique fields for a collection. Default: 10000
- Initial
Load float64Timeout Hours - The amount of time an initial load is allowed to continue for before catching up on CDC logs. Default: 8
- Initial
Waiting float64Seconds - The amount of time the connector will wait when it launches to determine if there is new data to sync or not. Defaults to 300 seconds. Valid range: 120 seconds to 1200 seconds. Default: 300
- Invalid
Cdc stringCursor Position Behavior - Determines whether Airbyte should fail or re-sync data in case of an stale/invalid cursor value into the WAL. If 'Fail sync' is chosen, a user will have to manually reset the connection before being able to continue syncing data. If 'Re-sync data' is chosen, Airbyte will automatically trigger a refresh but could lead to higher cloud costs and data loss. Default: "Fail sync"; must be one of ["Fail sync", "Re-sync data"]
- Queue
Size float64 - The size of the internal queue. This may interfere with memory consumption and efficiency of the connector, please be careful. Default: 10000
- Update
Capture stringMode - Determines how Airbyte looks up the value of an updated document. If 'Lookup' is chosen, the current value of the document will be read. If 'Post Image' is chosen, then the version of the document immediately after an update will be read. WARNING : Severe data loss will occur if this option is chosen and the appropriate settings are not set on your Mongo instance : https://www.mongodb.com/docs/manual/changeStreams/#change-streams-with-document-pre-and-post-images. Default: "Lookup"; must be one of ["Lookup", "Post Image"]
- database
Config SourceMongodb V2Configuration Database Config - Configures the MongoDB cluster type.
- discover
Sample DoubleSize - The maximum number of documents to sample when attempting to discover the unique fields for a collection. Default: 10000
- initial
Load DoubleTimeout Hours - The amount of time an initial load is allowed to continue for before catching up on CDC logs. Default: 8
- initial
Waiting DoubleSeconds - The amount of time the connector will wait when it launches to determine if there is new data to sync or not. Defaults to 300 seconds. Valid range: 120 seconds to 1200 seconds. Default: 300
- invalid
Cdc StringCursor Position Behavior - Determines whether Airbyte should fail or re-sync data in case of an stale/invalid cursor value into the WAL. If 'Fail sync' is chosen, a user will have to manually reset the connection before being able to continue syncing data. If 'Re-sync data' is chosen, Airbyte will automatically trigger a refresh but could lead to higher cloud costs and data loss. Default: "Fail sync"; must be one of ["Fail sync", "Re-sync data"]
- queue
Size Double - The size of the internal queue. This may interfere with memory consumption and efficiency of the connector, please be careful. Default: 10000
- update
Capture StringMode - Determines how Airbyte looks up the value of an updated document. If 'Lookup' is chosen, the current value of the document will be read. If 'Post Image' is chosen, then the version of the document immediately after an update will be read. WARNING : Severe data loss will occur if this option is chosen and the appropriate settings are not set on your Mongo instance : https://www.mongodb.com/docs/manual/changeStreams/#change-streams-with-document-pre-and-post-images. Default: "Lookup"; must be one of ["Lookup", "Post Image"]
- database
Config SourceMongodb V2Configuration Database Config - Configures the MongoDB cluster type.
- discover
Sample numberSize - The maximum number of documents to sample when attempting to discover the unique fields for a collection. Default: 10000
- initial
Load numberTimeout Hours - The amount of time an initial load is allowed to continue for before catching up on CDC logs. Default: 8
- initial
Waiting numberSeconds - The amount of time the connector will wait when it launches to determine if there is new data to sync or not. Defaults to 300 seconds. Valid range: 120 seconds to 1200 seconds. Default: 300
- invalid
Cdc stringCursor Position Behavior - Determines whether Airbyte should fail or re-sync data in case of an stale/invalid cursor value into the WAL. If 'Fail sync' is chosen, a user will have to manually reset the connection before being able to continue syncing data. If 'Re-sync data' is chosen, Airbyte will automatically trigger a refresh but could lead to higher cloud costs and data loss. Default: "Fail sync"; must be one of ["Fail sync", "Re-sync data"]
- queue
Size number - The size of the internal queue. This may interfere with memory consumption and efficiency of the connector, please be careful. Default: 10000
- update
Capture stringMode - Determines how Airbyte looks up the value of an updated document. If 'Lookup' is chosen, the current value of the document will be read. If 'Post Image' is chosen, then the version of the document immediately after an update will be read. WARNING : Severe data loss will occur if this option is chosen and the appropriate settings are not set on your Mongo instance : https://www.mongodb.com/docs/manual/changeStreams/#change-streams-with-document-pre-and-post-images. Default: "Lookup"; must be one of ["Lookup", "Post Image"]
- database_
config SourceMongodb V2Configuration Database Config - Configures the MongoDB cluster type.
- discover_
sample_ floatsize - The maximum number of documents to sample when attempting to discover the unique fields for a collection. Default: 10000
- initial_
load_ floattimeout_ hours - The amount of time an initial load is allowed to continue for before catching up on CDC logs. Default: 8
- initial_
waiting_ floatseconds - The amount of time the connector will wait when it launches to determine if there is new data to sync or not. Defaults to 300 seconds. Valid range: 120 seconds to 1200 seconds. Default: 300
- invalid_
cdc_ strcursor_ position_ behavior - Determines whether Airbyte should fail or re-sync data in case of an stale/invalid cursor value into the WAL. If 'Fail sync' is chosen, a user will have to manually reset the connection before being able to continue syncing data. If 'Re-sync data' is chosen, Airbyte will automatically trigger a refresh but could lead to higher cloud costs and data loss. Default: "Fail sync"; must be one of ["Fail sync", "Re-sync data"]
- queue_
size float - The size of the internal queue. This may interfere with memory consumption and efficiency of the connector, please be careful. Default: 10000
- update_
capture_ strmode - Determines how Airbyte looks up the value of an updated document. If 'Lookup' is chosen, the current value of the document will be read. If 'Post Image' is chosen, then the version of the document immediately after an update will be read. WARNING : Severe data loss will occur if this option is chosen and the appropriate settings are not set on your Mongo instance : https://www.mongodb.com/docs/manual/changeStreams/#change-streams-with-document-pre-and-post-images. Default: "Lookup"; must be one of ["Lookup", "Post Image"]
- database
Config Property Map - Configures the MongoDB cluster type.
- discover
Sample NumberSize - The maximum number of documents to sample when attempting to discover the unique fields for a collection. Default: 10000
- initial
Load NumberTimeout Hours - The amount of time an initial load is allowed to continue for before catching up on CDC logs. Default: 8
- initial
Waiting NumberSeconds - The amount of time the connector will wait when it launches to determine if there is new data to sync or not. Defaults to 300 seconds. Valid range: 120 seconds to 1200 seconds. Default: 300
- invalid
Cdc StringCursor Position Behavior - Determines whether Airbyte should fail or re-sync data in case of an stale/invalid cursor value into the WAL. If 'Fail sync' is chosen, a user will have to manually reset the connection before being able to continue syncing data. If 'Re-sync data' is chosen, Airbyte will automatically trigger a refresh but could lead to higher cloud costs and data loss. Default: "Fail sync"; must be one of ["Fail sync", "Re-sync data"]
- queue
Size Number - The size of the internal queue. This may interfere with memory consumption and efficiency of the connector, please be careful. Default: 10000
- update
Capture StringMode - Determines how Airbyte looks up the value of an updated document. If 'Lookup' is chosen, the current value of the document will be read. If 'Post Image' is chosen, then the version of the document immediately after an update will be read. WARNING : Severe data loss will occur if this option is chosen and the appropriate settings are not set on your Mongo instance : https://www.mongodb.com/docs/manual/changeStreams/#change-streams-with-document-pre-and-post-images. Default: "Lookup"; must be one of ["Lookup", "Post Image"]
SourceMongodbV2ConfigurationDatabaseConfig, SourceMongodbV2ConfigurationDatabaseConfigArgs
- Mongo
Db SourceAtlas Replica Set Mongodb V2Configuration Database Config Mongo Db Atlas Replica Set - MongoDB Atlas-hosted cluster configured as a replica set
- Self
Managed SourceReplica Set Mongodb V2Configuration Database Config Self Managed Replica Set - MongoDB self-hosted cluster configured as a replica set
- Mongo
Db SourceAtlas Replica Set Mongodb V2Configuration Database Config Mongo Db Atlas Replica Set - MongoDB Atlas-hosted cluster configured as a replica set
- Self
Managed SourceReplica Set Mongodb V2Configuration Database Config Self Managed Replica Set - MongoDB self-hosted cluster configured as a replica set
- mongo
Db SourceAtlas Replica Set Mongodb V2Configuration Database Config Mongo Db Atlas Replica Set - MongoDB Atlas-hosted cluster configured as a replica set
- self
Managed SourceReplica Set Mongodb V2Configuration Database Config Self Managed Replica Set - MongoDB self-hosted cluster configured as a replica set
- mongo
Db SourceAtlas Replica Set Mongodb V2Configuration Database Config Mongo Db Atlas Replica Set - MongoDB Atlas-hosted cluster configured as a replica set
- self
Managed SourceReplica Set Mongodb V2Configuration Database Config Self Managed Replica Set - MongoDB self-hosted cluster configured as a replica set
- mongo_
db_ Sourceatlas_ replica_ set Mongodb V2Configuration Database Config Mongo Db Atlas Replica Set - MongoDB Atlas-hosted cluster configured as a replica set
- self_
managed_ Sourcereplica_ set Mongodb V2Configuration Database Config Self Managed Replica Set - MongoDB self-hosted cluster configured as a replica set
- mongo
Db Property MapAtlas Replica Set - MongoDB Atlas-hosted cluster configured as a replica set
- self
Managed Property MapReplica Set - MongoDB self-hosted cluster configured as a replica set
SourceMongodbV2ConfigurationDatabaseConfigMongoDbAtlasReplicaSet, SourceMongodbV2ConfigurationDatabaseConfigMongoDbAtlasReplicaSetArgs
- Connection
String string - The connection string of the cluster that you want to replicate.
- Database string
- The name of the MongoDB database that contains the collection(s) to replicate.
- Password string
- The password associated with this username.
- Username string
- The username which is used to access the database.
- Additional
Properties string - Parsed as JSON.
- Auth
Source string - The authentication source where the user information is stored. See https://www.mongodb.com/docs/manual/reference/connection-string/#mongodb-urioption-urioption.authSource for more details. Default: "admin"
- Schema
Enforced bool - When enabled, syncs will validate and structure records against the stream's schema. Default: true
- Connection
String string - The connection string of the cluster that you want to replicate.
- Database string
- The name of the MongoDB database that contains the collection(s) to replicate.
- Password string
- The password associated with this username.
- Username string
- The username which is used to access the database.
- Additional
Properties string - Parsed as JSON.
- Auth
Source string - The authentication source where the user information is stored. See https://www.mongodb.com/docs/manual/reference/connection-string/#mongodb-urioption-urioption.authSource for more details. Default: "admin"
- Schema
Enforced bool - When enabled, syncs will validate and structure records against the stream's schema. Default: true
- connection
String String - The connection string of the cluster that you want to replicate.
- database String
- The name of the MongoDB database that contains the collection(s) to replicate.
- password String
- The password associated with this username.
- username String
- The username which is used to access the database.
- additional
Properties String - Parsed as JSON.
- auth
Source String - The authentication source where the user information is stored. See https://www.mongodb.com/docs/manual/reference/connection-string/#mongodb-urioption-urioption.authSource for more details. Default: "admin"
- schema
Enforced Boolean - When enabled, syncs will validate and structure records against the stream's schema. Default: true
- connection
String string - The connection string of the cluster that you want to replicate.
- database string
- The name of the MongoDB database that contains the collection(s) to replicate.
- password string
- The password associated with this username.
- username string
- The username which is used to access the database.
- additional
Properties string - Parsed as JSON.
- auth
Source string - The authentication source where the user information is stored. See https://www.mongodb.com/docs/manual/reference/connection-string/#mongodb-urioption-urioption.authSource for more details. Default: "admin"
- schema
Enforced boolean - When enabled, syncs will validate and structure records against the stream's schema. Default: true
- connection_
string str - The connection string of the cluster that you want to replicate.
- database str
- The name of the MongoDB database that contains the collection(s) to replicate.
- password str
- The password associated with this username.
- username str
- The username which is used to access the database.
- additional_
properties str - Parsed as JSON.
- auth_
source str - The authentication source where the user information is stored. See https://www.mongodb.com/docs/manual/reference/connection-string/#mongodb-urioption-urioption.authSource for more details. Default: "admin"
- schema_
enforced bool - When enabled, syncs will validate and structure records against the stream's schema. Default: true
- connection
String String - The connection string of the cluster that you want to replicate.
- database String
- The name of the MongoDB database that contains the collection(s) to replicate.
- password String
- The password associated with this username.
- username String
- The username which is used to access the database.
- additional
Properties String - Parsed as JSON.
- auth
Source String - The authentication source where the user information is stored. See https://www.mongodb.com/docs/manual/reference/connection-string/#mongodb-urioption-urioption.authSource for more details. Default: "admin"
- schema
Enforced Boolean - When enabled, syncs will validate and structure records against the stream's schema. Default: true
SourceMongodbV2ConfigurationDatabaseConfigSelfManagedReplicaSet, SourceMongodbV2ConfigurationDatabaseConfigSelfManagedReplicaSetArgs
- Connection
String string - The connection string of the cluster that you want to replicate. https://www.mongodb.com/docs/manual/reference/connection-string/#find-your-self-hosted-deployment-s-connection-string for more information.
- Database string
- The name of the MongoDB database that contains the collection(s) to replicate.
- Additional
Properties string - Parsed as JSON.
- Auth
Source string - The authentication source where the user information is stored. Default: "admin"
- Password string
- The password associated with this username.
- Schema
Enforced bool - When enabled, syncs will validate and structure records against the stream's schema. Default: true
- Username string
- The username which is used to access the database.
- Connection
String string - The connection string of the cluster that you want to replicate. https://www.mongodb.com/docs/manual/reference/connection-string/#find-your-self-hosted-deployment-s-connection-string for more information.
- Database string
- The name of the MongoDB database that contains the collection(s) to replicate.
- Additional
Properties string - Parsed as JSON.
- Auth
Source string - The authentication source where the user information is stored. Default: "admin"
- Password string
- The password associated with this username.
- Schema
Enforced bool - When enabled, syncs will validate and structure records against the stream's schema. Default: true
- Username string
- The username which is used to access the database.
- connection
String String - The connection string of the cluster that you want to replicate. https://www.mongodb.com/docs/manual/reference/connection-string/#find-your-self-hosted-deployment-s-connection-string for more information.
- database String
- The name of the MongoDB database that contains the collection(s) to replicate.
- additional
Properties String - Parsed as JSON.
- auth
Source String - The authentication source where the user information is stored. Default: "admin"
- password String
- The password associated with this username.
- schema
Enforced Boolean - When enabled, syncs will validate and structure records against the stream's schema. Default: true
- username String
- The username which is used to access the database.
- connection
String string - The connection string of the cluster that you want to replicate. https://www.mongodb.com/docs/manual/reference/connection-string/#find-your-self-hosted-deployment-s-connection-string for more information.
- database string
- The name of the MongoDB database that contains the collection(s) to replicate.
- additional
Properties string - Parsed as JSON.
- auth
Source string - The authentication source where the user information is stored. Default: "admin"
- password string
- The password associated with this username.
- schema
Enforced boolean - When enabled, syncs will validate and structure records against the stream's schema. Default: true
- username string
- The username which is used to access the database.
- connection_
string str - The connection string of the cluster that you want to replicate. https://www.mongodb.com/docs/manual/reference/connection-string/#find-your-self-hosted-deployment-s-connection-string for more information.
- database str
- The name of the MongoDB database that contains the collection(s) to replicate.
- additional_
properties str - Parsed as JSON.
- auth_
source str - The authentication source where the user information is stored. Default: "admin"
- password str
- The password associated with this username.
- schema_
enforced bool - When enabled, syncs will validate and structure records against the stream's schema. Default: true
- username str
- The username which is used to access the database.
- connection
String String - The connection string of the cluster that you want to replicate. https://www.mongodb.com/docs/manual/reference/connection-string/#find-your-self-hosted-deployment-s-connection-string for more information.
- database String
- The name of the MongoDB database that contains the collection(s) to replicate.
- additional
Properties String - Parsed as JSON.
- auth
Source String - The authentication source where the user information is stored. Default: "admin"
- password String
- The password associated with this username.
- schema
Enforced Boolean - When enabled, syncs will validate and structure records against the stream's schema. Default: true
- username String
- The username which is used to access the database.
SourceMongodbV2ResourceAllocation, SourceMongodbV2ResourceAllocationArgs
- Default
Source
Mongodb V2Resource Allocation Default - optional resource requirements to run workers (blank for unbounded allocations)
- Job
Specifics List<SourceMongodb V2Resource Allocation Job Specific>
- Default
Source
Mongodb V2Resource Allocation Default - optional resource requirements to run workers (blank for unbounded allocations)
- Job
Specifics []SourceMongodb V2Resource Allocation Job Specific
- default_
Source
Mongodb V2Resource Allocation Default - optional resource requirements to run workers (blank for unbounded allocations)
- job
Specifics List<SourceMongodb V2Resource Allocation Job Specific>
- default
Source
Mongodb V2Resource Allocation Default - optional resource requirements to run workers (blank for unbounded allocations)
- job
Specifics SourceMongodb V2Resource Allocation Job Specific[]
- default
Source
Mongodb V2Resource Allocation Default - optional resource requirements to run workers (blank for unbounded allocations)
- job_
specifics Sequence[SourceMongodb V2Resource Allocation Job Specific]
- default Property Map
- optional resource requirements to run workers (blank for unbounded allocations)
- job
Specifics List<Property Map>
SourceMongodbV2ResourceAllocationDefault, SourceMongodbV2ResourceAllocationDefaultArgs
- Cpu
Limit string - Cpu
Request string - Ephemeral
Storage stringLimit - Ephemeral
Storage stringRequest - Memory
Limit string - Memory
Request string
- Cpu
Limit string - Cpu
Request string - Ephemeral
Storage stringLimit - Ephemeral
Storage stringRequest - Memory
Limit string - Memory
Request string
- cpu
Limit String - cpu
Request String - ephemeral
Storage StringLimit - ephemeral
Storage StringRequest - memory
Limit String - memory
Request String
- cpu
Limit string - cpu
Request string - ephemeral
Storage stringLimit - ephemeral
Storage stringRequest - memory
Limit string - memory
Request string
- cpu_
limit str - cpu_
request str - ephemeral_
storage_ strlimit - ephemeral_
storage_ strrequest - memory_
limit str - memory_
request str
- cpu
Limit String - cpu
Request String - ephemeral
Storage StringLimit - ephemeral
Storage StringRequest - memory
Limit String - memory
Request String
SourceMongodbV2ResourceAllocationJobSpecific, SourceMongodbV2ResourceAllocationJobSpecificArgs
- Job
Type string - enum that describes the different types of jobs that the platform runs. must be one of ["getspec", "checkconnection", "discoverschema", "sync", "resetconnection", "connection_updater", "replicate"]
- Resource
Requirements SourceMongodb V2Resource Allocation Job Specific Resource Requirements - optional resource requirements to run workers (blank for unbounded allocations)
- Job
Type string - enum that describes the different types of jobs that the platform runs. must be one of ["getspec", "checkconnection", "discoverschema", "sync", "resetconnection", "connection_updater", "replicate"]
- Resource
Requirements SourceMongodb V2Resource Allocation Job Specific Resource Requirements - optional resource requirements to run workers (blank for unbounded allocations)
- job
Type String - enum that describes the different types of jobs that the platform runs. must be one of ["getspec", "checkconnection", "discoverschema", "sync", "resetconnection", "connection_updater", "replicate"]
- resource
Requirements SourceMongodb V2Resource Allocation Job Specific Resource Requirements - optional resource requirements to run workers (blank for unbounded allocations)
- job
Type string - enum that describes the different types of jobs that the platform runs. must be one of ["getspec", "checkconnection", "discoverschema", "sync", "resetconnection", "connection_updater", "replicate"]
- resource
Requirements SourceMongodb V2Resource Allocation Job Specific Resource Requirements - optional resource requirements to run workers (blank for unbounded allocations)
- job_
type str - enum that describes the different types of jobs that the platform runs. must be one of ["getspec", "checkconnection", "discoverschema", "sync", "resetconnection", "connection_updater", "replicate"]
- resource_
requirements SourceMongodb V2Resource Allocation Job Specific Resource Requirements - optional resource requirements to run workers (blank for unbounded allocations)
- job
Type String - enum that describes the different types of jobs that the platform runs. must be one of ["getspec", "checkconnection", "discoverschema", "sync", "resetconnection", "connection_updater", "replicate"]
- resource
Requirements Property Map - optional resource requirements to run workers (blank for unbounded allocations)
SourceMongodbV2ResourceAllocationJobSpecificResourceRequirements, SourceMongodbV2ResourceAllocationJobSpecificResourceRequirementsArgs
- Cpu
Limit string - Cpu
Request string - Ephemeral
Storage stringLimit - Ephemeral
Storage stringRequest - Memory
Limit string - Memory
Request string
- Cpu
Limit string - Cpu
Request string - Ephemeral
Storage stringLimit - Ephemeral
Storage stringRequest - Memory
Limit string - Memory
Request string
- cpu
Limit String - cpu
Request String - ephemeral
Storage StringLimit - ephemeral
Storage StringRequest - memory
Limit String - memory
Request String
- cpu
Limit string - cpu
Request string - ephemeral
Storage stringLimit - ephemeral
Storage stringRequest - memory
Limit string - memory
Request string
- cpu_
limit str - cpu_
request str - ephemeral_
storage_ strlimit - ephemeral_
storage_ strrequest - memory_
limit str - memory_
request str
- cpu
Limit String - cpu
Request String - ephemeral
Storage StringLimit - ephemeral
Storage StringRequest - memory
Limit String - memory
Request String
Import
$ pulumi import airbyte:index/sourceMongodbV2:SourceMongodbV2 my_airbyte_source_mongodb_v2 ""
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- airbyte airbytehq/terraform-provider-airbyte
- License
- Notes
- This Pulumi package is based on the
airbyte
Terraform Provider.