airbyte.SourceFauna
Explore with Pulumi AI
SourceFauna Resource
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as airbyte from "@pulumi/airbyte";
const mySourceFauna = new airbyte.SourceFauna("mySourceFauna", {
    configuration: {
        collection: {
            deletions: {
                disabled: {},
                enabled: {
                    column: "...my_column...",
                },
            },
            pageSize: 2,
        },
        domain: "...my_domain...",
        port: 3,
        scheme: "...my_scheme...",
        secret: "...my_secret...",
    },
    definitionId: "7da8a804-135a-42a9-9fae-e38938f1ebbf",
    secretId: "...my_secret_id...",
    workspaceId: "82a1bb0b-2686-4b4c-86cd-84520efe37b7",
});
import pulumi
import pulumi_airbyte as airbyte
my_source_fauna = airbyte.SourceFauna("mySourceFauna",
    configuration={
        "collection": {
            "deletions": {
                "disabled": {},
                "enabled": {
                    "column": "...my_column...",
                },
            },
            "page_size": 2,
        },
        "domain": "...my_domain...",
        "port": 3,
        "scheme": "...my_scheme...",
        "secret": "...my_secret...",
    },
    definition_id="7da8a804-135a-42a9-9fae-e38938f1ebbf",
    secret_id="...my_secret_id...",
    workspace_id="82a1bb0b-2686-4b4c-86cd-84520efe37b7")
package main
import (
	"github.com/pulumi/pulumi-terraform-provider/sdks/go/airbyte/airbyte"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := airbyte.NewSourceFauna(ctx, "mySourceFauna", &airbyte.SourceFaunaArgs{
			Configuration: &airbyte.SourceFaunaConfigurationArgs{
				Collection: &airbyte.SourceFaunaConfigurationCollectionArgs{
					Deletions: &airbyte.SourceFaunaConfigurationCollectionDeletionsArgs{
						Disabled: &airbyte.SourceFaunaConfigurationCollectionDeletionsDisabledArgs{},
						Enabled: &airbyte.SourceFaunaConfigurationCollectionDeletionsEnabledArgs{
							Column: pulumi.String("...my_column..."),
						},
					},
					PageSize: pulumi.Float64(2),
				},
				Domain: pulumi.String("...my_domain..."),
				Port:   pulumi.Float64(3),
				Scheme: pulumi.String("...my_scheme..."),
				Secret: pulumi.String("...my_secret..."),
			},
			DefinitionId: pulumi.String("7da8a804-135a-42a9-9fae-e38938f1ebbf"),
			SecretId:     pulumi.String("...my_secret_id..."),
			WorkspaceId:  pulumi.String("82a1bb0b-2686-4b4c-86cd-84520efe37b7"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Airbyte = Pulumi.Airbyte;
return await Deployment.RunAsync(() => 
{
    var mySourceFauna = new Airbyte.SourceFauna("mySourceFauna", new()
    {
        Configuration = new Airbyte.Inputs.SourceFaunaConfigurationArgs
        {
            Collection = new Airbyte.Inputs.SourceFaunaConfigurationCollectionArgs
            {
                Deletions = new Airbyte.Inputs.SourceFaunaConfigurationCollectionDeletionsArgs
                {
                    Disabled = null,
                    Enabled = new Airbyte.Inputs.SourceFaunaConfigurationCollectionDeletionsEnabledArgs
                    {
                        Column = "...my_column...",
                    },
                },
                PageSize = 2,
            },
            Domain = "...my_domain...",
            Port = 3,
            Scheme = "...my_scheme...",
            Secret = "...my_secret...",
        },
        DefinitionId = "7da8a804-135a-42a9-9fae-e38938f1ebbf",
        SecretId = "...my_secret_id...",
        WorkspaceId = "82a1bb0b-2686-4b4c-86cd-84520efe37b7",
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.airbyte.SourceFauna;
import com.pulumi.airbyte.SourceFaunaArgs;
import com.pulumi.airbyte.inputs.SourceFaunaConfigurationArgs;
import com.pulumi.airbyte.inputs.SourceFaunaConfigurationCollectionArgs;
import com.pulumi.airbyte.inputs.SourceFaunaConfigurationCollectionDeletionsArgs;
import com.pulumi.airbyte.inputs.SourceFaunaConfigurationCollectionDeletionsDisabledArgs;
import com.pulumi.airbyte.inputs.SourceFaunaConfigurationCollectionDeletionsEnabledArgs;
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 mySourceFauna = new SourceFauna("mySourceFauna", SourceFaunaArgs.builder()
            .configuration(SourceFaunaConfigurationArgs.builder()
                .collection(SourceFaunaConfigurationCollectionArgs.builder()
                    .deletions(SourceFaunaConfigurationCollectionDeletionsArgs.builder()
                        .disabled()
                        .enabled(SourceFaunaConfigurationCollectionDeletionsEnabledArgs.builder()
                            .column("...my_column...")
                            .build())
                        .build())
                    .pageSize(2)
                    .build())
                .domain("...my_domain...")
                .port(3)
                .scheme("...my_scheme...")
                .secret("...my_secret...")
                .build())
            .definitionId("7da8a804-135a-42a9-9fae-e38938f1ebbf")
            .secretId("...my_secret_id...")
            .workspaceId("82a1bb0b-2686-4b4c-86cd-84520efe37b7")
            .build());
    }
}
resources:
  mySourceFauna:
    type: airbyte:SourceFauna
    properties:
      configuration:
        collection:
          deletions:
            disabled: {}
            enabled:
              column: '...my_column...'
          pageSize: 2
        domain: '...my_domain...'
        port: 3
        scheme: '...my_scheme...'
        secret: '...my_secret...'
      definitionId: 7da8a804-135a-42a9-9fae-e38938f1ebbf
      secretId: '...my_secret_id...'
      workspaceId: 82a1bb0b-2686-4b4c-86cd-84520efe37b7
Create SourceFauna Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new SourceFauna(name: string, args: SourceFaunaArgs, opts?: CustomResourceOptions);@overload
def SourceFauna(resource_name: str,
                args: SourceFaunaArgs,
                opts: Optional[ResourceOptions] = None)
@overload
def SourceFauna(resource_name: str,
                opts: Optional[ResourceOptions] = None,
                configuration: Optional[SourceFaunaConfigurationArgs] = None,
                workspace_id: Optional[str] = None,
                definition_id: Optional[str] = None,
                name: Optional[str] = None,
                secret_id: Optional[str] = None)func NewSourceFauna(ctx *Context, name string, args SourceFaunaArgs, opts ...ResourceOption) (*SourceFauna, error)public SourceFauna(string name, SourceFaunaArgs args, CustomResourceOptions? opts = null)
public SourceFauna(String name, SourceFaunaArgs args)
public SourceFauna(String name, SourceFaunaArgs args, CustomResourceOptions options)
type: airbyte:SourceFauna
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 SourceFaunaArgs
- 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 SourceFaunaArgs
- 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 SourceFaunaArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args SourceFaunaArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args SourceFaunaArgs
- 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 sourceFaunaResource = new Airbyte.SourceFauna("sourceFaunaResource", new()
{
    Configuration = new Airbyte.Inputs.SourceFaunaConfigurationArgs
    {
        Secret = "string",
        Collection = new Airbyte.Inputs.SourceFaunaConfigurationCollectionArgs
        {
            Deletions = new Airbyte.Inputs.SourceFaunaConfigurationCollectionDeletionsArgs
            {
                Disabled = null,
                Enabled = new Airbyte.Inputs.SourceFaunaConfigurationCollectionDeletionsEnabledArgs
                {
                    Column = "string",
                },
            },
            PageSize = 0,
        },
        Domain = "string",
        Port = 0,
        Scheme = "string",
    },
    WorkspaceId = "string",
    DefinitionId = "string",
    Name = "string",
    SecretId = "string",
});
example, err := airbyte.NewSourceFauna(ctx, "sourceFaunaResource", &airbyte.SourceFaunaArgs{
Configuration: &.SourceFaunaConfigurationArgs{
Secret: pulumi.String("string"),
Collection: &.SourceFaunaConfigurationCollectionArgs{
Deletions: &.SourceFaunaConfigurationCollectionDeletionsArgs{
Disabled: &.SourceFaunaConfigurationCollectionDeletionsDisabledArgs{
},
Enabled: &.SourceFaunaConfigurationCollectionDeletionsEnabledArgs{
Column: pulumi.String("string"),
},
},
PageSize: pulumi.Float64(0),
},
Domain: pulumi.String("string"),
Port: pulumi.Float64(0),
Scheme: pulumi.String("string"),
},
WorkspaceId: pulumi.String("string"),
DefinitionId: pulumi.String("string"),
Name: pulumi.String("string"),
SecretId: pulumi.String("string"),
})
var sourceFaunaResource = new SourceFauna("sourceFaunaResource", SourceFaunaArgs.builder()
    .configuration(SourceFaunaConfigurationArgs.builder()
        .secret("string")
        .collection(SourceFaunaConfigurationCollectionArgs.builder()
            .deletions(SourceFaunaConfigurationCollectionDeletionsArgs.builder()
                .disabled()
                .enabled(SourceFaunaConfigurationCollectionDeletionsEnabledArgs.builder()
                    .column("string")
                    .build())
                .build())
            .pageSize(0)
            .build())
        .domain("string")
        .port(0)
        .scheme("string")
        .build())
    .workspaceId("string")
    .definitionId("string")
    .name("string")
    .secretId("string")
    .build());
source_fauna_resource = airbyte.SourceFauna("sourceFaunaResource",
    configuration={
        "secret": "string",
        "collection": {
            "deletions": {
                "disabled": {},
                "enabled": {
                    "column": "string",
                },
            },
            "page_size": 0,
        },
        "domain": "string",
        "port": 0,
        "scheme": "string",
    },
    workspace_id="string",
    definition_id="string",
    name="string",
    secret_id="string")
const sourceFaunaResource = new airbyte.SourceFauna("sourceFaunaResource", {
    configuration: {
        secret: "string",
        collection: {
            deletions: {
                disabled: {},
                enabled: {
                    column: "string",
                },
            },
            pageSize: 0,
        },
        domain: "string",
        port: 0,
        scheme: "string",
    },
    workspaceId: "string",
    definitionId: "string",
    name: "string",
    secretId: "string",
});
type: airbyte:SourceFauna
properties:
    configuration:
        collection:
            deletions:
                disabled: {}
                enabled:
                    column: string
            pageSize: 0
        domain: string
        port: 0
        scheme: string
        secret: string
    definitionId: string
    name: string
    secretId: string
    workspaceId: string
SourceFauna 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 SourceFauna resource accepts the following input properties:
- Configuration
SourceFauna Configuration 
- WorkspaceId string
- DefinitionId 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.
- SecretId string
- Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
- Configuration
SourceFauna Configuration Args 
- WorkspaceId string
- DefinitionId 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.
- SecretId string
- Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
- configuration
SourceFauna Configuration 
- workspaceId String
- definitionId 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.
- secretId String
- Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
- configuration
SourceFauna Configuration 
- workspaceId string
- definitionId 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.
- secretId string
- Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
- configuration
SourceFauna Configuration 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
- workspaceId String
- definitionId 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.
- secretId 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 SourceFauna resource produces the following output properties:
- CreatedAt double
- Id string
- The provider-assigned unique ID for this managed resource.
- SourceId string
- SourceType string
- CreatedAt float64
- Id string
- The provider-assigned unique ID for this managed resource.
- SourceId string
- SourceType string
- createdAt Double
- id String
- The provider-assigned unique ID for this managed resource.
- sourceId String
- sourceType String
- createdAt number
- id string
- The provider-assigned unique ID for this managed resource.
- sourceId string
- sourceType string
- created_at float
- id str
- The provider-assigned unique ID for this managed resource.
- source_id str
- source_type str
- createdAt Number
- id String
- The provider-assigned unique ID for this managed resource.
- sourceId String
- sourceType String
Look up Existing SourceFauna Resource
Get an existing SourceFauna 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?: SourceFaunaState, opts?: CustomResourceOptions): SourceFauna@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        configuration: Optional[SourceFaunaConfigurationArgs] = None,
        created_at: Optional[float] = None,
        definition_id: Optional[str] = None,
        name: Optional[str] = None,
        secret_id: Optional[str] = None,
        source_id: Optional[str] = None,
        source_type: Optional[str] = None,
        workspace_id: Optional[str] = None) -> SourceFaunafunc GetSourceFauna(ctx *Context, name string, id IDInput, state *SourceFaunaState, opts ...ResourceOption) (*SourceFauna, error)public static SourceFauna Get(string name, Input<string> id, SourceFaunaState? state, CustomResourceOptions? opts = null)public static SourceFauna get(String name, Output<String> id, SourceFaunaState state, CustomResourceOptions options)resources:  _:    type: airbyte:SourceFauna    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
SourceFauna Configuration 
- CreatedAt double
- DefinitionId 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.
- SecretId string
- Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
- SourceId string
- SourceType string
- WorkspaceId string
- Configuration
SourceFauna Configuration Args 
- CreatedAt float64
- DefinitionId 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.
- SecretId string
- Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
- SourceId string
- SourceType string
- WorkspaceId string
- configuration
SourceFauna Configuration 
- createdAt Double
- definitionId 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.
- secretId String
- Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
- sourceId String
- sourceType String
- workspaceId String
- configuration
SourceFauna Configuration 
- createdAt number
- definitionId 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.
- secretId string
- Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
- sourceId string
- sourceType string
- workspaceId string
- configuration
SourceFauna Configuration 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.
- 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
- createdAt Number
- definitionId 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.
- secretId String
- Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
- sourceId String
- sourceType String
- workspaceId String
Supporting Types
SourceFaunaConfiguration, SourceFaunaConfigurationArgs      
- Secret string
- Fauna secret, used when authenticating with the database.
- Collection
SourceFauna Configuration Collection 
- Settings for the Fauna Collection.
- Domain string
- Domain of Fauna to query. Defaults db.fauna.com. See \n\nthe docs\n\n. Default: "db.fauna.com"
- Port double
- Endpoint port. Default: 443
- Scheme string
- URL scheme. Default: "https"
- Secret string
- Fauna secret, used when authenticating with the database.
- Collection
SourceFauna Configuration Collection 
- Settings for the Fauna Collection.
- Domain string
- Domain of Fauna to query. Defaults db.fauna.com. See \n\nthe docs\n\n. Default: "db.fauna.com"
- Port float64
- Endpoint port. Default: 443
- Scheme string
- URL scheme. Default: "https"
- secret String
- Fauna secret, used when authenticating with the database.
- collection
SourceFauna Configuration Collection 
- Settings for the Fauna Collection.
- domain String
- Domain of Fauna to query. Defaults db.fauna.com. See \n\nthe docs\n\n. Default: "db.fauna.com"
- port Double
- Endpoint port. Default: 443
- scheme String
- URL scheme. Default: "https"
- secret string
- Fauna secret, used when authenticating with the database.
- collection
SourceFauna Configuration Collection 
- Settings for the Fauna Collection.
- domain string
- Domain of Fauna to query. Defaults db.fauna.com. See \n\nthe docs\n\n. Default: "db.fauna.com"
- port number
- Endpoint port. Default: 443
- scheme string
- URL scheme. Default: "https"
- secret str
- Fauna secret, used when authenticating with the database.
- collection
SourceFauna Configuration Collection 
- Settings for the Fauna Collection.
- domain str
- Domain of Fauna to query. Defaults db.fauna.com. See \n\nthe docs\n\n. Default: "db.fauna.com"
- port float
- Endpoint port. Default: 443
- scheme str
- URL scheme. Default: "https"
- secret String
- Fauna secret, used when authenticating with the database.
- collection Property Map
- Settings for the Fauna Collection.
- domain String
- Domain of Fauna to query. Defaults db.fauna.com. See \n\nthe docs\n\n. Default: "db.fauna.com"
- port Number
- Endpoint port. Default: 443
- scheme String
- URL scheme. Default: "https"
SourceFaunaConfigurationCollection, SourceFaunaConfigurationCollectionArgs        
- Deletions
SourceFauna Configuration Collection Deletions 
- \n\nThis only applies to incremental syncs.\n\n \n\n Enabling deletion mode informs your destination of deleted documents.\n\n Disabled - Leave this feature disabled, and ignore deleted documents.\n\n Enabled - Enables this feature. When a document is deleted, the connector exports a record with a "deleted at" column containing the time that the document was deleted.
- PageSize double
- The page size used when reading documents from the database. The larger the page size, the faster the connector processes documents. However, if a page is too large, the connector may fail. \n\n Choose your page size based on how large the documents are. \n\n See \n\nthe docs\n\n. Default: 64
- Deletions
SourceFauna Configuration Collection Deletions 
- \n\nThis only applies to incremental syncs.\n\n \n\n Enabling deletion mode informs your destination of deleted documents.\n\n Disabled - Leave this feature disabled, and ignore deleted documents.\n\n Enabled - Enables this feature. When a document is deleted, the connector exports a record with a "deleted at" column containing the time that the document was deleted.
- PageSize float64
- The page size used when reading documents from the database. The larger the page size, the faster the connector processes documents. However, if a page is too large, the connector may fail. \n\n Choose your page size based on how large the documents are. \n\n See \n\nthe docs\n\n. Default: 64
- deletions
SourceFauna Configuration Collection Deletions 
- \n\nThis only applies to incremental syncs.\n\n \n\n Enabling deletion mode informs your destination of deleted documents.\n\n Disabled - Leave this feature disabled, and ignore deleted documents.\n\n Enabled - Enables this feature. When a document is deleted, the connector exports a record with a "deleted at" column containing the time that the document was deleted.
- pageSize Double
- The page size used when reading documents from the database. The larger the page size, the faster the connector processes documents. However, if a page is too large, the connector may fail. \n\n Choose your page size based on how large the documents are. \n\n See \n\nthe docs\n\n. Default: 64
- deletions
SourceFauna Configuration Collection Deletions 
- \n\nThis only applies to incremental syncs.\n\n \n\n Enabling deletion mode informs your destination of deleted documents.\n\n Disabled - Leave this feature disabled, and ignore deleted documents.\n\n Enabled - Enables this feature. When a document is deleted, the connector exports a record with a "deleted at" column containing the time that the document was deleted.
- pageSize number
- The page size used when reading documents from the database. The larger the page size, the faster the connector processes documents. However, if a page is too large, the connector may fail. \n\n Choose your page size based on how large the documents are. \n\n See \n\nthe docs\n\n. Default: 64
- deletions
SourceFauna Configuration Collection Deletions 
- \n\nThis only applies to incremental syncs.\n\n \n\n Enabling deletion mode informs your destination of deleted documents.\n\n Disabled - Leave this feature disabled, and ignore deleted documents.\n\n Enabled - Enables this feature. When a document is deleted, the connector exports a record with a "deleted at" column containing the time that the document was deleted.
- page_size float
- The page size used when reading documents from the database. The larger the page size, the faster the connector processes documents. However, if a page is too large, the connector may fail. \n\n Choose your page size based on how large the documents are. \n\n See \n\nthe docs\n\n. Default: 64
- deletions Property Map
- \n\nThis only applies to incremental syncs.\n\n \n\n Enabling deletion mode informs your destination of deleted documents.\n\n Disabled - Leave this feature disabled, and ignore deleted documents.\n\n Enabled - Enables this feature. When a document is deleted, the connector exports a record with a "deleted at" column containing the time that the document was deleted.
- pageSize Number
- The page size used when reading documents from the database. The larger the page size, the faster the connector processes documents. However, if a page is too large, the connector may fail. \n\n Choose your page size based on how large the documents are. \n\n See \n\nthe docs\n\n. Default: 64
SourceFaunaConfigurationCollectionDeletions, SourceFaunaConfigurationCollectionDeletionsArgs          
SourceFaunaConfigurationCollectionDeletionsEnabled, SourceFaunaConfigurationCollectionDeletionsEnabledArgs            
- Column string
- Name of the "deleted at" column. Default: "deleted_at"
- Column string
- Name of the "deleted at" column. Default: "deleted_at"
- column String
- Name of the "deleted at" column. Default: "deleted_at"
- column string
- Name of the "deleted at" column. Default: "deleted_at"
- column str
- Name of the "deleted at" column. Default: "deleted_at"
- column String
- Name of the "deleted at" column. Default: "deleted_at"
Import
$ pulumi import airbyte:index/sourceFauna:SourceFauna my_airbyte_source_fauna ""
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 airbyteTerraform Provider.