1. Packages
  2. Airbyte Provider
  3. API Docs
  4. DestinationQdrant
airbyte 0.7.0-beta2 published on Friday, Mar 7, 2025 by airbytehq

airbyte.DestinationQdrant

Explore with Pulumi AI

airbyte logo
airbyte 0.7.0-beta2 published on Friday, Mar 7, 2025 by airbytehq

    DestinationQdrant 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.DestinationQdrant;
    import com.pulumi.airbyte.DestinationQdrantArgs;
    import com.pulumi.airbyte.inputs.DestinationQdrantConfigurationArgs;
    import com.pulumi.airbyte.inputs.DestinationQdrantConfigurationEmbeddingArgs;
    import com.pulumi.airbyte.inputs.DestinationQdrantConfigurationEmbeddingAzureOpenAiArgs;
    import com.pulumi.airbyte.inputs.DestinationQdrantConfigurationEmbeddingCohereArgs;
    import com.pulumi.airbyte.inputs.DestinationQdrantConfigurationEmbeddingFakeArgs;
    import com.pulumi.airbyte.inputs.DestinationQdrantConfigurationEmbeddingOpenAiArgs;
    import com.pulumi.airbyte.inputs.DestinationQdrantConfigurationEmbeddingOpenAiCompatibleArgs;
    import com.pulumi.airbyte.inputs.DestinationQdrantConfigurationIndexingArgs;
    import com.pulumi.airbyte.inputs.DestinationQdrantConfigurationIndexingAuthMethodArgs;
    import com.pulumi.airbyte.inputs.DestinationQdrantConfigurationIndexingAuthMethodApiKeyAuthArgs;
    import com.pulumi.airbyte.inputs.DestinationQdrantConfigurationIndexingAuthMethodNoAuthArgs;
    import com.pulumi.airbyte.inputs.DestinationQdrantConfigurationProcessingArgs;
    import com.pulumi.airbyte.inputs.DestinationQdrantConfigurationProcessingTextSplitterArgs;
    import com.pulumi.airbyte.inputs.DestinationQdrantConfigurationProcessingTextSplitterByMarkdownHeaderArgs;
    import com.pulumi.airbyte.inputs.DestinationQdrantConfigurationProcessingTextSplitterByProgrammingLanguageArgs;
    import com.pulumi.airbyte.inputs.DestinationQdrantConfigurationProcessingTextSplitterBySeparatorArgs;
    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 myDestinationQdrant = new DestinationQdrant("myDestinationQdrant", DestinationQdrantArgs.builder()
                .configuration(DestinationQdrantConfigurationArgs.builder()
                    .embedding(DestinationQdrantConfigurationEmbeddingArgs.builder()
                        .azureOpenAi(DestinationQdrantConfigurationEmbeddingAzureOpenAiArgs.builder()
                            .apiBase("https://your-resource-name.openai.azure.com")
                            .deployment("your-resource-name")
                            .openaiKey("...my_openai_key...")
                            .build())
                        .cohere(DestinationQdrantConfigurationEmbeddingCohereArgs.builder()
                            .cohereKey("...my_cohere_key...")
                            .build())
                        .fake()
                        .openAi(DestinationQdrantConfigurationEmbeddingOpenAiArgs.builder()
                            .openaiKey("...my_openai_key...")
                            .build())
                        .openAiCompatible(DestinationQdrantConfigurationEmbeddingOpenAiCompatibleArgs.builder()
                            .apiKey("...my_api_key...")
                            .baseUrl("https://your-service-name.com")
                            .dimensions(1536)
                            .modelName("text-embedding-ada-002")
                            .build())
                        .build())
                    .indexing(DestinationQdrantConfigurationIndexingArgs.builder()
                        .authMethod(DestinationQdrantConfigurationIndexingAuthMethodArgs.builder()
                            .apiKeyAuth(DestinationQdrantConfigurationIndexingAuthMethodApiKeyAuthArgs.builder()
                                .apiKey("...my_api_key...")
                                .build())
                            .noAuth()
                            .build())
                        .collection("...my_collection...")
                        .distanceMetric("euc")
                        .preferGrpc(true)
                        .textField("...my_text_field...")
                        .url("...my_url...")
                        .build())
                    .omit_raw_text(false)
                    .processing(DestinationQdrantConfigurationProcessingArgs.builder()
                        .chunkOverlap(8)
                        .chunkSize(5940)
                        .fieldNameMappings(DestinationQdrantConfigurationProcessingFieldNameMappingArgs.builder()
                            .fromField("...my_from_field...")
                            .toField("...my_to_field...")
                            .build())
                        .metadataFields("...")
                        .textFields("...")
                        .textSplitter(DestinationQdrantConfigurationProcessingTextSplitterArgs.builder()
                            .byMarkdownHeader(DestinationQdrantConfigurationProcessingTextSplitterByMarkdownHeaderArgs.builder()
                                .splitLevel(4)
                                .build())
                            .byProgrammingLanguage(DestinationQdrantConfigurationProcessingTextSplitterByProgrammingLanguageArgs.builder()
                                .language("html")
                                .build())
                            .bySeparator(DestinationQdrantConfigurationProcessingTextSplitterBySeparatorArgs.builder()
                                .keepSeparator(false)
                                .separators("...")
                                .build())
                            .build())
                        .build())
                    .build())
                .definitionId("e4cd6268-0c7d-4392-aa26-d281d1f04358")
                .workspaceId("18b7e27a-33b2-4cf8-9366-9a30dabc6cf0")
                .build());
    
        }
    }
    
    resources:
      myDestinationQdrant:
        type: airbyte:DestinationQdrant
        properties:
          configuration:
            embedding:
              azureOpenAi:
                apiBase: https://your-resource-name.openai.azure.com
                deployment: your-resource-name
                openaiKey: '...my_openai_key...'
              cohere:
                cohereKey: '...my_cohere_key...'
              fake: {}
              openAi:
                openaiKey: '...my_openai_key...'
              openAiCompatible:
                apiKey: '...my_api_key...'
                baseUrl: https://your-service-name.com
                dimensions: 1536
                modelName: text-embedding-ada-002
            indexing:
              authMethod:
                apiKeyAuth:
                  apiKey: '...my_api_key...'
                noAuth: {}
              collection: '...my_collection...'
              distanceMetric: euc
              preferGrpc: true
              textField: '...my_text_field...'
              url: '...my_url...'
            omit_raw_text: false
            processing:
              chunkOverlap: 8
              chunkSize: 5940
              fieldNameMappings:
                - fromField: '...my_from_field...'
                  toField: '...my_to_field...'
              metadataFields:
                - '...'
              textFields:
                - '...'
              textSplitter:
                byMarkdownHeader:
                  splitLevel: 4
                byProgrammingLanguage:
                  language: html
                bySeparator:
                  keepSeparator: false
                  separators:
                    - '...'
          definitionId: e4cd6268-0c7d-4392-aa26-d281d1f04358
          workspaceId: 18b7e27a-33b2-4cf8-9366-9a30dabc6cf0
    

    Create DestinationQdrant Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new DestinationQdrant(name: string, args: DestinationQdrantArgs, opts?: CustomResourceOptions);
    @overload
    def DestinationQdrant(resource_name: str,
                          args: DestinationQdrantArgs,
                          opts: Optional[ResourceOptions] = None)
    
    @overload
    def DestinationQdrant(resource_name: str,
                          opts: Optional[ResourceOptions] = None,
                          configuration: Optional[DestinationQdrantConfigurationArgs] = None,
                          workspace_id: Optional[str] = None,
                          definition_id: Optional[str] = None,
                          name: Optional[str] = None)
    func NewDestinationQdrant(ctx *Context, name string, args DestinationQdrantArgs, opts ...ResourceOption) (*DestinationQdrant, error)
    public DestinationQdrant(string name, DestinationQdrantArgs args, CustomResourceOptions? opts = null)
    public DestinationQdrant(String name, DestinationQdrantArgs args)
    public DestinationQdrant(String name, DestinationQdrantArgs args, CustomResourceOptions options)
    
    type: airbyte:DestinationQdrant
    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 DestinationQdrantArgs
    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 DestinationQdrantArgs
    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 DestinationQdrantArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args DestinationQdrantArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args DestinationQdrantArgs
    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 destinationQdrantResource = new Airbyte.DestinationQdrant("destinationQdrantResource", new()
    {
        Configuration = new Airbyte.Inputs.DestinationQdrantConfigurationArgs
        {
            Embedding = new Airbyte.Inputs.DestinationQdrantConfigurationEmbeddingArgs
            {
                AzureOpenAi = new Airbyte.Inputs.DestinationQdrantConfigurationEmbeddingAzureOpenAiArgs
                {
                    ApiBase = "string",
                    Deployment = "string",
                    OpenaiKey = "string",
                },
                Cohere = new Airbyte.Inputs.DestinationQdrantConfigurationEmbeddingCohereArgs
                {
                    CohereKey = "string",
                },
                Fake = null,
                OpenAi = new Airbyte.Inputs.DestinationQdrantConfigurationEmbeddingOpenAiArgs
                {
                    OpenaiKey = "string",
                },
                OpenAiCompatible = new Airbyte.Inputs.DestinationQdrantConfigurationEmbeddingOpenAiCompatibleArgs
                {
                    BaseUrl = "string",
                    Dimensions = 0,
                    ApiKey = "string",
                    ModelName = "string",
                },
            },
            Indexing = new Airbyte.Inputs.DestinationQdrantConfigurationIndexingArgs
            {
                Collection = "string",
                Url = "string",
                AuthMethod = new Airbyte.Inputs.DestinationQdrantConfigurationIndexingAuthMethodArgs
                {
                    ApiKeyAuth = new Airbyte.Inputs.DestinationQdrantConfigurationIndexingAuthMethodApiKeyAuthArgs
                    {
                        ApiKey = "string",
                    },
                    NoAuth = null,
                },
                DistanceMetric = "string",
                PreferGrpc = false,
                TextField = "string",
            },
            Processing = new Airbyte.Inputs.DestinationQdrantConfigurationProcessingArgs
            {
                ChunkSize = 0,
                ChunkOverlap = 0,
                FieldNameMappings = new[]
                {
                    new Airbyte.Inputs.DestinationQdrantConfigurationProcessingFieldNameMappingArgs
                    {
                        FromField = "string",
                        ToField = "string",
                    },
                },
                MetadataFields = new[]
                {
                    "string",
                },
                TextFields = new[]
                {
                    "string",
                },
                TextSplitter = new Airbyte.Inputs.DestinationQdrantConfigurationProcessingTextSplitterArgs
                {
                    ByMarkdownHeader = new Airbyte.Inputs.DestinationQdrantConfigurationProcessingTextSplitterByMarkdownHeaderArgs
                    {
                        SplitLevel = 0,
                    },
                    ByProgrammingLanguage = new Airbyte.Inputs.DestinationQdrantConfigurationProcessingTextSplitterByProgrammingLanguageArgs
                    {
                        Language = "string",
                    },
                    BySeparator = new Airbyte.Inputs.DestinationQdrantConfigurationProcessingTextSplitterBySeparatorArgs
                    {
                        KeepSeparator = false,
                        Separators = new[]
                        {
                            "string",
                        },
                    },
                },
            },
            OmitRawText = false,
        },
        WorkspaceId = "string",
        DefinitionId = "string",
        Name = "string",
    });
    
    example, err := airbyte.NewDestinationQdrant(ctx, "destinationQdrantResource", &airbyte.DestinationQdrantArgs{
    Configuration: &.DestinationQdrantConfigurationArgs{
    Embedding: &.DestinationQdrantConfigurationEmbeddingArgs{
    AzureOpenAi: &.DestinationQdrantConfigurationEmbeddingAzureOpenAiArgs{
    ApiBase: pulumi.String("string"),
    Deployment: pulumi.String("string"),
    OpenaiKey: pulumi.String("string"),
    },
    Cohere: &.DestinationQdrantConfigurationEmbeddingCohereArgs{
    CohereKey: pulumi.String("string"),
    },
    Fake: &.DestinationQdrantConfigurationEmbeddingFakeArgs{
    },
    OpenAi: &.DestinationQdrantConfigurationEmbeddingOpenAiArgs{
    OpenaiKey: pulumi.String("string"),
    },
    OpenAiCompatible: &.DestinationQdrantConfigurationEmbeddingOpenAiCompatibleArgs{
    BaseUrl: pulumi.String("string"),
    Dimensions: pulumi.Float64(0),
    ApiKey: pulumi.String("string"),
    ModelName: pulumi.String("string"),
    },
    },
    Indexing: &.DestinationQdrantConfigurationIndexingArgs{
    Collection: pulumi.String("string"),
    Url: pulumi.String("string"),
    AuthMethod: &.DestinationQdrantConfigurationIndexingAuthMethodArgs{
    ApiKeyAuth: &.DestinationQdrantConfigurationIndexingAuthMethodApiKeyAuthArgs{
    ApiKey: pulumi.String("string"),
    },
    NoAuth: &.DestinationQdrantConfigurationIndexingAuthMethodNoAuthArgs{
    },
    },
    DistanceMetric: pulumi.String("string"),
    PreferGrpc: pulumi.Bool(false),
    TextField: pulumi.String("string"),
    },
    Processing: &.DestinationQdrantConfigurationProcessingArgs{
    ChunkSize: pulumi.Float64(0),
    ChunkOverlap: pulumi.Float64(0),
    FieldNameMappings: .DestinationQdrantConfigurationProcessingFieldNameMappingArray{
    &.DestinationQdrantConfigurationProcessingFieldNameMappingArgs{
    FromField: pulumi.String("string"),
    ToField: pulumi.String("string"),
    },
    },
    MetadataFields: pulumi.StringArray{
    pulumi.String("string"),
    },
    TextFields: pulumi.StringArray{
    pulumi.String("string"),
    },
    TextSplitter: &.DestinationQdrantConfigurationProcessingTextSplitterArgs{
    ByMarkdownHeader: &.DestinationQdrantConfigurationProcessingTextSplitterByMarkdownHeaderArgs{
    SplitLevel: pulumi.Float64(0),
    },
    ByProgrammingLanguage: &.DestinationQdrantConfigurationProcessingTextSplitterByProgrammingLanguageArgs{
    Language: pulumi.String("string"),
    },
    BySeparator: &.DestinationQdrantConfigurationProcessingTextSplitterBySeparatorArgs{
    KeepSeparator: pulumi.Bool(false),
    Separators: pulumi.StringArray{
    pulumi.String("string"),
    },
    },
    },
    },
    OmitRawText: pulumi.Bool(false),
    },
    WorkspaceId: pulumi.String("string"),
    DefinitionId: pulumi.String("string"),
    Name: pulumi.String("string"),
    })
    
    var destinationQdrantResource = new DestinationQdrant("destinationQdrantResource", DestinationQdrantArgs.builder()
        .configuration(DestinationQdrantConfigurationArgs.builder()
            .embedding(DestinationQdrantConfigurationEmbeddingArgs.builder()
                .azureOpenAi(DestinationQdrantConfigurationEmbeddingAzureOpenAiArgs.builder()
                    .apiBase("string")
                    .deployment("string")
                    .openaiKey("string")
                    .build())
                .cohere(DestinationQdrantConfigurationEmbeddingCohereArgs.builder()
                    .cohereKey("string")
                    .build())
                .fake()
                .openAi(DestinationQdrantConfigurationEmbeddingOpenAiArgs.builder()
                    .openaiKey("string")
                    .build())
                .openAiCompatible(DestinationQdrantConfigurationEmbeddingOpenAiCompatibleArgs.builder()
                    .baseUrl("string")
                    .dimensions(0)
                    .apiKey("string")
                    .modelName("string")
                    .build())
                .build())
            .indexing(DestinationQdrantConfigurationIndexingArgs.builder()
                .collection("string")
                .url("string")
                .authMethod(DestinationQdrantConfigurationIndexingAuthMethodArgs.builder()
                    .apiKeyAuth(DestinationQdrantConfigurationIndexingAuthMethodApiKeyAuthArgs.builder()
                        .apiKey("string")
                        .build())
                    .noAuth()
                    .build())
                .distanceMetric("string")
                .preferGrpc(false)
                .textField("string")
                .build())
            .processing(DestinationQdrantConfigurationProcessingArgs.builder()
                .chunkSize(0)
                .chunkOverlap(0)
                .fieldNameMappings(DestinationQdrantConfigurationProcessingFieldNameMappingArgs.builder()
                    .fromField("string")
                    .toField("string")
                    .build())
                .metadataFields("string")
                .textFields("string")
                .textSplitter(DestinationQdrantConfigurationProcessingTextSplitterArgs.builder()
                    .byMarkdownHeader(DestinationQdrantConfigurationProcessingTextSplitterByMarkdownHeaderArgs.builder()
                        .splitLevel(0)
                        .build())
                    .byProgrammingLanguage(DestinationQdrantConfigurationProcessingTextSplitterByProgrammingLanguageArgs.builder()
                        .language("string")
                        .build())
                    .bySeparator(DestinationQdrantConfigurationProcessingTextSplitterBySeparatorArgs.builder()
                        .keepSeparator(false)
                        .separators("string")
                        .build())
                    .build())
                .build())
            .omitRawText(false)
            .build())
        .workspaceId("string")
        .definitionId("string")
        .name("string")
        .build());
    
    destination_qdrant_resource = airbyte.DestinationQdrant("destinationQdrantResource",
        configuration={
            "embedding": {
                "azure_open_ai": {
                    "api_base": "string",
                    "deployment": "string",
                    "openai_key": "string",
                },
                "cohere": {
                    "cohere_key": "string",
                },
                "fake": {},
                "open_ai": {
                    "openai_key": "string",
                },
                "open_ai_compatible": {
                    "base_url": "string",
                    "dimensions": 0,
                    "api_key": "string",
                    "model_name": "string",
                },
            },
            "indexing": {
                "collection": "string",
                "url": "string",
                "auth_method": {
                    "api_key_auth": {
                        "api_key": "string",
                    },
                    "no_auth": {},
                },
                "distance_metric": "string",
                "prefer_grpc": False,
                "text_field": "string",
            },
            "processing": {
                "chunk_size": 0,
                "chunk_overlap": 0,
                "field_name_mappings": [{
                    "from_field": "string",
                    "to_field": "string",
                }],
                "metadata_fields": ["string"],
                "text_fields": ["string"],
                "text_splitter": {
                    "by_markdown_header": {
                        "split_level": 0,
                    },
                    "by_programming_language": {
                        "language": "string",
                    },
                    "by_separator": {
                        "keep_separator": False,
                        "separators": ["string"],
                    },
                },
            },
            "omit_raw_text": False,
        },
        workspace_id="string",
        definition_id="string",
        name="string")
    
    const destinationQdrantResource = new airbyte.DestinationQdrant("destinationQdrantResource", {
        configuration: {
            embedding: {
                azureOpenAi: {
                    apiBase: "string",
                    deployment: "string",
                    openaiKey: "string",
                },
                cohere: {
                    cohereKey: "string",
                },
                fake: {},
                openAi: {
                    openaiKey: "string",
                },
                openAiCompatible: {
                    baseUrl: "string",
                    dimensions: 0,
                    apiKey: "string",
                    modelName: "string",
                },
            },
            indexing: {
                collection: "string",
                url: "string",
                authMethod: {
                    apiKeyAuth: {
                        apiKey: "string",
                    },
                    noAuth: {},
                },
                distanceMetric: "string",
                preferGrpc: false,
                textField: "string",
            },
            processing: {
                chunkSize: 0,
                chunkOverlap: 0,
                fieldNameMappings: [{
                    fromField: "string",
                    toField: "string",
                }],
                metadataFields: ["string"],
                textFields: ["string"],
                textSplitter: {
                    byMarkdownHeader: {
                        splitLevel: 0,
                    },
                    byProgrammingLanguage: {
                        language: "string",
                    },
                    bySeparator: {
                        keepSeparator: false,
                        separators: ["string"],
                    },
                },
            },
            omitRawText: false,
        },
        workspaceId: "string",
        definitionId: "string",
        name: "string",
    });
    
    type: airbyte:DestinationQdrant
    properties:
        configuration:
            embedding:
                azureOpenAi:
                    apiBase: string
                    deployment: string
                    openaiKey: string
                cohere:
                    cohereKey: string
                fake: {}
                openAi:
                    openaiKey: string
                openAiCompatible:
                    apiKey: string
                    baseUrl: string
                    dimensions: 0
                    modelName: string
            indexing:
                authMethod:
                    apiKeyAuth:
                        apiKey: string
                    noAuth: {}
                collection: string
                distanceMetric: string
                preferGrpc: false
                textField: string
                url: string
            omitRawText: false
            processing:
                chunkOverlap: 0
                chunkSize: 0
                fieldNameMappings:
                    - fromField: string
                      toField: string
                metadataFields:
                    - string
                textFields:
                    - string
                textSplitter:
                    byMarkdownHeader:
                        splitLevel: 0
                    byProgrammingLanguage:
                        language: string
                    bySeparator:
                        keepSeparator: false
                        separators:
                            - string
        definitionId: string
        name: string
        workspaceId: string
    

    DestinationQdrant 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 DestinationQdrant resource accepts the following input properties:

    Configuration DestinationQdrantConfiguration
    The configuration model for the Vector DB based destinations. This model is used to generate the UI for the destination configuration, as well as to provide type safety for the configuration passed to the destination.
    WorkspaceId string
    DefinitionId string
    The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
    Name string
    Name of the destination e.g. dev-mysql-instance.
    Configuration DestinationQdrantConfigurationArgs
    The configuration model for the Vector DB based destinations. This model is used to generate the UI for the destination configuration, as well as to provide type safety for the configuration passed to the destination.
    WorkspaceId string
    DefinitionId string
    The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
    Name string
    Name of the destination e.g. dev-mysql-instance.
    configuration DestinationQdrantConfiguration
    The configuration model for the Vector DB based destinations. This model is used to generate the UI for the destination configuration, as well as to provide type safety for the configuration passed to the destination.
    workspaceId String
    definitionId String
    The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
    name String
    Name of the destination e.g. dev-mysql-instance.
    configuration DestinationQdrantConfiguration
    The configuration model for the Vector DB based destinations. This model is used to generate the UI for the destination configuration, as well as to provide type safety for the configuration passed to the destination.
    workspaceId string
    definitionId string
    The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
    name string
    Name of the destination e.g. dev-mysql-instance.
    configuration DestinationQdrantConfigurationArgs
    The configuration model for the Vector DB based destinations. This model is used to generate the UI for the destination configuration, as well as to provide type safety for the configuration passed to the destination.
    workspace_id str
    definition_id str
    The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
    name str
    Name of the destination e.g. dev-mysql-instance.
    configuration Property Map
    The configuration model for the Vector DB based destinations. This model is used to generate the UI for the destination configuration, as well as to provide type safety for the configuration passed to the destination.
    workspaceId String
    definitionId String
    The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
    name String
    Name of the destination e.g. dev-mysql-instance.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the DestinationQdrant resource produces the following output properties:

    CreatedAt double
    DestinationId string
    DestinationType string
    Id string
    The provider-assigned unique ID for this managed resource.
    CreatedAt float64
    DestinationId string
    DestinationType string
    Id string
    The provider-assigned unique ID for this managed resource.
    createdAt Double
    destinationId String
    destinationType String
    id String
    The provider-assigned unique ID for this managed resource.
    createdAt number
    destinationId string
    destinationType string
    id string
    The provider-assigned unique ID for this managed resource.
    created_at float
    destination_id str
    destination_type str
    id str
    The provider-assigned unique ID for this managed resource.
    createdAt Number
    destinationId String
    destinationType String
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing DestinationQdrant Resource

    Get an existing DestinationQdrant 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?: DestinationQdrantState, opts?: CustomResourceOptions): DestinationQdrant
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            configuration: Optional[DestinationQdrantConfigurationArgs] = None,
            created_at: Optional[float] = None,
            definition_id: Optional[str] = None,
            destination_id: Optional[str] = None,
            destination_type: Optional[str] = None,
            name: Optional[str] = None,
            workspace_id: Optional[str] = None) -> DestinationQdrant
    func GetDestinationQdrant(ctx *Context, name string, id IDInput, state *DestinationQdrantState, opts ...ResourceOption) (*DestinationQdrant, error)
    public static DestinationQdrant Get(string name, Input<string> id, DestinationQdrantState? state, CustomResourceOptions? opts = null)
    public static DestinationQdrant get(String name, Output<String> id, DestinationQdrantState state, CustomResourceOptions options)
    resources:  _:    type: airbyte:DestinationQdrant    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.
    The following state arguments are supported:
    Configuration DestinationQdrantConfiguration
    The configuration model for the Vector DB based destinations. This model is used to generate the UI for the destination configuration, as well as to provide type safety for the configuration passed to the destination.
    CreatedAt double
    DefinitionId string
    The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
    DestinationId string
    DestinationType string
    Name string
    Name of the destination e.g. dev-mysql-instance.
    WorkspaceId string
    Configuration DestinationQdrantConfigurationArgs
    The configuration model for the Vector DB based destinations. This model is used to generate the UI for the destination configuration, as well as to provide type safety for the configuration passed to the destination.
    CreatedAt float64
    DefinitionId string
    The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
    DestinationId string
    DestinationType string
    Name string
    Name of the destination e.g. dev-mysql-instance.
    WorkspaceId string
    configuration DestinationQdrantConfiguration
    The configuration model for the Vector DB based destinations. This model is used to generate the UI for the destination configuration, as well as to provide type safety for the configuration passed to the destination.
    createdAt Double
    definitionId String
    The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
    destinationId String
    destinationType String
    name String
    Name of the destination e.g. dev-mysql-instance.
    workspaceId String
    configuration DestinationQdrantConfiguration
    The configuration model for the Vector DB based destinations. This model is used to generate the UI for the destination configuration, as well as to provide type safety for the configuration passed to the destination.
    createdAt number
    definitionId string
    The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
    destinationId string
    destinationType string
    name string
    Name of the destination e.g. dev-mysql-instance.
    workspaceId string
    configuration DestinationQdrantConfigurationArgs
    The configuration model for the Vector DB based destinations. This model is used to generate the UI for the destination configuration, as well as to provide type safety for the configuration passed to the destination.
    created_at float
    definition_id str
    The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
    destination_id str
    destination_type str
    name str
    Name of the destination e.g. dev-mysql-instance.
    workspace_id str
    configuration Property Map
    The configuration model for the Vector DB based destinations. This model is used to generate the UI for the destination configuration, as well as to provide type safety for the configuration passed to the destination.
    createdAt Number
    definitionId String
    The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
    destinationId String
    destinationType String
    name String
    Name of the destination e.g. dev-mysql-instance.
    workspaceId String

    Supporting Types

    DestinationQdrantConfiguration, DestinationQdrantConfigurationArgs

    Embedding DestinationQdrantConfigurationEmbedding
    Embedding configuration
    Indexing DestinationQdrantConfigurationIndexing
    Indexing configuration
    Processing DestinationQdrantConfigurationProcessing
    OmitRawText bool
    Do not store the text that gets embedded along with the vector and the metadata in the destination. If set to true, only the vector and the metadata will be stored - in this case raw text for LLM use cases needs to be retrieved from another source. Default: false
    Embedding DestinationQdrantConfigurationEmbedding
    Embedding configuration
    Indexing DestinationQdrantConfigurationIndexing
    Indexing configuration
    Processing DestinationQdrantConfigurationProcessing
    OmitRawText bool
    Do not store the text that gets embedded along with the vector and the metadata in the destination. If set to true, only the vector and the metadata will be stored - in this case raw text for LLM use cases needs to be retrieved from another source. Default: false
    embedding DestinationQdrantConfigurationEmbedding
    Embedding configuration
    indexing DestinationQdrantConfigurationIndexing
    Indexing configuration
    processing DestinationQdrantConfigurationProcessing
    omitRawText Boolean
    Do not store the text that gets embedded along with the vector and the metadata in the destination. If set to true, only the vector and the metadata will be stored - in this case raw text for LLM use cases needs to be retrieved from another source. Default: false
    embedding DestinationQdrantConfigurationEmbedding
    Embedding configuration
    indexing DestinationQdrantConfigurationIndexing
    Indexing configuration
    processing DestinationQdrantConfigurationProcessing
    omitRawText boolean
    Do not store the text that gets embedded along with the vector and the metadata in the destination. If set to true, only the vector and the metadata will be stored - in this case raw text for LLM use cases needs to be retrieved from another source. Default: false
    embedding DestinationQdrantConfigurationEmbedding
    Embedding configuration
    indexing DestinationQdrantConfigurationIndexing
    Indexing configuration
    processing DestinationQdrantConfigurationProcessing
    omit_raw_text bool
    Do not store the text that gets embedded along with the vector and the metadata in the destination. If set to true, only the vector and the metadata will be stored - in this case raw text for LLM use cases needs to be retrieved from another source. Default: false
    embedding Property Map
    Embedding configuration
    indexing Property Map
    Indexing configuration
    processing Property Map
    omitRawText Boolean
    Do not store the text that gets embedded along with the vector and the metadata in the destination. If set to true, only the vector and the metadata will be stored - in this case raw text for LLM use cases needs to be retrieved from another source. Default: false

    DestinationQdrantConfigurationEmbedding, DestinationQdrantConfigurationEmbeddingArgs

    AzureOpenAi DestinationQdrantConfigurationEmbeddingAzureOpenAi
    Use the Azure-hosted OpenAI API to embed text. This option is using the text-embedding-ada-002 model with 1536 embedding dimensions.
    Cohere DestinationQdrantConfigurationEmbeddingCohere
    Use the Cohere API to embed text.
    Fake DestinationQdrantConfigurationEmbeddingFake
    Use a fake embedding made out of random vectors with 1536 embedding dimensions. This is useful for testing the data pipeline without incurring any costs.
    OpenAi DestinationQdrantConfigurationEmbeddingOpenAi
    Use the OpenAI API to embed text. This option is using the text-embedding-ada-002 model with 1536 embedding dimensions.
    OpenAiCompatible DestinationQdrantConfigurationEmbeddingOpenAiCompatible
    Use a service that's compatible with the OpenAI API to embed text.
    AzureOpenAi DestinationQdrantConfigurationEmbeddingAzureOpenAi
    Use the Azure-hosted OpenAI API to embed text. This option is using the text-embedding-ada-002 model with 1536 embedding dimensions.
    Cohere DestinationQdrantConfigurationEmbeddingCohere
    Use the Cohere API to embed text.
    Fake DestinationQdrantConfigurationEmbeddingFake
    Use a fake embedding made out of random vectors with 1536 embedding dimensions. This is useful for testing the data pipeline without incurring any costs.
    OpenAi DestinationQdrantConfigurationEmbeddingOpenAi
    Use the OpenAI API to embed text. This option is using the text-embedding-ada-002 model with 1536 embedding dimensions.
    OpenAiCompatible DestinationQdrantConfigurationEmbeddingOpenAiCompatible
    Use a service that's compatible with the OpenAI API to embed text.
    azureOpenAi DestinationQdrantConfigurationEmbeddingAzureOpenAi
    Use the Azure-hosted OpenAI API to embed text. This option is using the text-embedding-ada-002 model with 1536 embedding dimensions.
    cohere DestinationQdrantConfigurationEmbeddingCohere
    Use the Cohere API to embed text.
    fake DestinationQdrantConfigurationEmbeddingFake
    Use a fake embedding made out of random vectors with 1536 embedding dimensions. This is useful for testing the data pipeline without incurring any costs.
    openAi DestinationQdrantConfigurationEmbeddingOpenAi
    Use the OpenAI API to embed text. This option is using the text-embedding-ada-002 model with 1536 embedding dimensions.
    openAiCompatible DestinationQdrantConfigurationEmbeddingOpenAiCompatible
    Use a service that's compatible with the OpenAI API to embed text.
    azureOpenAi DestinationQdrantConfigurationEmbeddingAzureOpenAi
    Use the Azure-hosted OpenAI API to embed text. This option is using the text-embedding-ada-002 model with 1536 embedding dimensions.
    cohere DestinationQdrantConfigurationEmbeddingCohere
    Use the Cohere API to embed text.
    fake DestinationQdrantConfigurationEmbeddingFake
    Use a fake embedding made out of random vectors with 1536 embedding dimensions. This is useful for testing the data pipeline without incurring any costs.
    openAi DestinationQdrantConfigurationEmbeddingOpenAi
    Use the OpenAI API to embed text. This option is using the text-embedding-ada-002 model with 1536 embedding dimensions.
    openAiCompatible DestinationQdrantConfigurationEmbeddingOpenAiCompatible
    Use a service that's compatible with the OpenAI API to embed text.
    azure_open_ai DestinationQdrantConfigurationEmbeddingAzureOpenAi
    Use the Azure-hosted OpenAI API to embed text. This option is using the text-embedding-ada-002 model with 1536 embedding dimensions.
    cohere DestinationQdrantConfigurationEmbeddingCohere
    Use the Cohere API to embed text.
    fake DestinationQdrantConfigurationEmbeddingFake
    Use a fake embedding made out of random vectors with 1536 embedding dimensions. This is useful for testing the data pipeline without incurring any costs.
    open_ai DestinationQdrantConfigurationEmbeddingOpenAi
    Use the OpenAI API to embed text. This option is using the text-embedding-ada-002 model with 1536 embedding dimensions.
    open_ai_compatible DestinationQdrantConfigurationEmbeddingOpenAiCompatible
    Use a service that's compatible with the OpenAI API to embed text.
    azureOpenAi Property Map
    Use the Azure-hosted OpenAI API to embed text. This option is using the text-embedding-ada-002 model with 1536 embedding dimensions.
    cohere Property Map
    Use the Cohere API to embed text.
    fake Property Map
    Use a fake embedding made out of random vectors with 1536 embedding dimensions. This is useful for testing the data pipeline without incurring any costs.
    openAi Property Map
    Use the OpenAI API to embed text. This option is using the text-embedding-ada-002 model with 1536 embedding dimensions.
    openAiCompatible Property Map
    Use a service that's compatible with the OpenAI API to embed text.

    DestinationQdrantConfigurationEmbeddingAzureOpenAi, DestinationQdrantConfigurationEmbeddingAzureOpenAiArgs

    ApiBase string
    The base URL for your Azure OpenAI resource. You can find this in the Azure portal under your Azure OpenAI resource
    Deployment string
    The deployment for your Azure OpenAI resource. You can find this in the Azure portal under your Azure OpenAI resource
    OpenaiKey string
    The API key for your Azure OpenAI resource. You can find this in the Azure portal under your Azure OpenAI resource
    ApiBase string
    The base URL for your Azure OpenAI resource. You can find this in the Azure portal under your Azure OpenAI resource
    Deployment string
    The deployment for your Azure OpenAI resource. You can find this in the Azure portal under your Azure OpenAI resource
    OpenaiKey string
    The API key for your Azure OpenAI resource. You can find this in the Azure portal under your Azure OpenAI resource
    apiBase String
    The base URL for your Azure OpenAI resource. You can find this in the Azure portal under your Azure OpenAI resource
    deployment String
    The deployment for your Azure OpenAI resource. You can find this in the Azure portal under your Azure OpenAI resource
    openaiKey String
    The API key for your Azure OpenAI resource. You can find this in the Azure portal under your Azure OpenAI resource
    apiBase string
    The base URL for your Azure OpenAI resource. You can find this in the Azure portal under your Azure OpenAI resource
    deployment string
    The deployment for your Azure OpenAI resource. You can find this in the Azure portal under your Azure OpenAI resource
    openaiKey string
    The API key for your Azure OpenAI resource. You can find this in the Azure portal under your Azure OpenAI resource
    api_base str
    The base URL for your Azure OpenAI resource. You can find this in the Azure portal under your Azure OpenAI resource
    deployment str
    The deployment for your Azure OpenAI resource. You can find this in the Azure portal under your Azure OpenAI resource
    openai_key str
    The API key for your Azure OpenAI resource. You can find this in the Azure portal under your Azure OpenAI resource
    apiBase String
    The base URL for your Azure OpenAI resource. You can find this in the Azure portal under your Azure OpenAI resource
    deployment String
    The deployment for your Azure OpenAI resource. You can find this in the Azure portal under your Azure OpenAI resource
    openaiKey String
    The API key for your Azure OpenAI resource. You can find this in the Azure portal under your Azure OpenAI resource

    DestinationQdrantConfigurationEmbeddingCohere, DestinationQdrantConfigurationEmbeddingCohereArgs

    CohereKey string
    CohereKey string
    cohereKey String
    cohereKey string
    cohereKey String

    DestinationQdrantConfigurationEmbeddingOpenAi, DestinationQdrantConfigurationEmbeddingOpenAiArgs

    OpenaiKey string
    OpenaiKey string
    openaiKey String
    openaiKey string
    openaiKey String

    DestinationQdrantConfigurationEmbeddingOpenAiCompatible, DestinationQdrantConfigurationEmbeddingOpenAiCompatibleArgs

    BaseUrl string
    The base URL for your OpenAI-compatible service
    Dimensions double
    The number of dimensions the embedding model is generating
    ApiKey string
    Default: ""
    ModelName string
    The name of the model to use for embedding. Default: "text-embedding-ada-002"
    BaseUrl string
    The base URL for your OpenAI-compatible service
    Dimensions float64
    The number of dimensions the embedding model is generating
    ApiKey string
    Default: ""
    ModelName string
    The name of the model to use for embedding. Default: "text-embedding-ada-002"
    baseUrl String
    The base URL for your OpenAI-compatible service
    dimensions Double
    The number of dimensions the embedding model is generating
    apiKey String
    Default: ""
    modelName String
    The name of the model to use for embedding. Default: "text-embedding-ada-002"
    baseUrl string
    The base URL for your OpenAI-compatible service
    dimensions number
    The number of dimensions the embedding model is generating
    apiKey string
    Default: ""
    modelName string
    The name of the model to use for embedding. Default: "text-embedding-ada-002"
    base_url str
    The base URL for your OpenAI-compatible service
    dimensions float
    The number of dimensions the embedding model is generating
    api_key str
    Default: ""
    model_name str
    The name of the model to use for embedding. Default: "text-embedding-ada-002"
    baseUrl String
    The base URL for your OpenAI-compatible service
    dimensions Number
    The number of dimensions the embedding model is generating
    apiKey String
    Default: ""
    modelName String
    The name of the model to use for embedding. Default: "text-embedding-ada-002"

    DestinationQdrantConfigurationIndexing, DestinationQdrantConfigurationIndexingArgs

    Collection string
    The collection to load data into
    Url string
    Public Endpoint of the Qdrant cluser
    AuthMethod DestinationQdrantConfigurationIndexingAuthMethod
    Method to authenticate with the Qdrant Instance
    DistanceMetric string
    The Distance metric used to measure similarities among vectors. This field is only used if the collection defined in the does not exist yet and is created automatically by the connector. Default: "cos"; must be one of ["dot", "cos", "euc"]
    PreferGrpc bool
    Whether to prefer gRPC over HTTP. Set to true for Qdrant cloud clusters. Default: true
    TextField string
    The field in the payload that contains the embedded text. Default: "text"
    Collection string
    The collection to load data into
    Url string
    Public Endpoint of the Qdrant cluser
    AuthMethod DestinationQdrantConfigurationIndexingAuthMethod
    Method to authenticate with the Qdrant Instance
    DistanceMetric string
    The Distance metric used to measure similarities among vectors. This field is only used if the collection defined in the does not exist yet and is created automatically by the connector. Default: "cos"; must be one of ["dot", "cos", "euc"]
    PreferGrpc bool
    Whether to prefer gRPC over HTTP. Set to true for Qdrant cloud clusters. Default: true
    TextField string
    The field in the payload that contains the embedded text. Default: "text"
    collection String
    The collection to load data into
    url String
    Public Endpoint of the Qdrant cluser
    authMethod DestinationQdrantConfigurationIndexingAuthMethod
    Method to authenticate with the Qdrant Instance
    distanceMetric String
    The Distance metric used to measure similarities among vectors. This field is only used if the collection defined in the does not exist yet and is created automatically by the connector. Default: "cos"; must be one of ["dot", "cos", "euc"]
    preferGrpc Boolean
    Whether to prefer gRPC over HTTP. Set to true for Qdrant cloud clusters. Default: true
    textField String
    The field in the payload that contains the embedded text. Default: "text"
    collection string
    The collection to load data into
    url string
    Public Endpoint of the Qdrant cluser
    authMethod DestinationQdrantConfigurationIndexingAuthMethod
    Method to authenticate with the Qdrant Instance
    distanceMetric string
    The Distance metric used to measure similarities among vectors. This field is only used if the collection defined in the does not exist yet and is created automatically by the connector. Default: "cos"; must be one of ["dot", "cos", "euc"]
    preferGrpc boolean
    Whether to prefer gRPC over HTTP. Set to true for Qdrant cloud clusters. Default: true
    textField string
    The field in the payload that contains the embedded text. Default: "text"
    collection str
    The collection to load data into
    url str
    Public Endpoint of the Qdrant cluser
    auth_method DestinationQdrantConfigurationIndexingAuthMethod
    Method to authenticate with the Qdrant Instance
    distance_metric str
    The Distance metric used to measure similarities among vectors. This field is only used if the collection defined in the does not exist yet and is created automatically by the connector. Default: "cos"; must be one of ["dot", "cos", "euc"]
    prefer_grpc bool
    Whether to prefer gRPC over HTTP. Set to true for Qdrant cloud clusters. Default: true
    text_field str
    The field in the payload that contains the embedded text. Default: "text"
    collection String
    The collection to load data into
    url String
    Public Endpoint of the Qdrant cluser
    authMethod Property Map
    Method to authenticate with the Qdrant Instance
    distanceMetric String
    The Distance metric used to measure similarities among vectors. This field is only used if the collection defined in the does not exist yet and is created automatically by the connector. Default: "cos"; must be one of ["dot", "cos", "euc"]
    preferGrpc Boolean
    Whether to prefer gRPC over HTTP. Set to true for Qdrant cloud clusters. Default: true
    textField String
    The field in the payload that contains the embedded text. Default: "text"

    DestinationQdrantConfigurationIndexingAuthMethod, DestinationQdrantConfigurationIndexingAuthMethodArgs

    DestinationQdrantConfigurationIndexingAuthMethodApiKeyAuth, DestinationQdrantConfigurationIndexingAuthMethodApiKeyAuthArgs

    ApiKey string
    API Key for the Qdrant instance
    ApiKey string
    API Key for the Qdrant instance
    apiKey String
    API Key for the Qdrant instance
    apiKey string
    API Key for the Qdrant instance
    api_key str
    API Key for the Qdrant instance
    apiKey String
    API Key for the Qdrant instance

    DestinationQdrantConfigurationProcessing, DestinationQdrantConfigurationProcessingArgs

    ChunkSize double
    Size of chunks in tokens to store in vector store (make sure it is not too big for the context if your LLM)
    ChunkOverlap double
    Size of overlap between chunks in tokens to store in vector store to better capture relevant context. Default: 0
    FieldNameMappings List<DestinationQdrantConfigurationProcessingFieldNameMapping>
    List of fields to rename. Not applicable for nested fields, but can be used to rename fields already flattened via dot notation.
    MetadataFields List<string>
    List of fields in the record that should be stored as metadata. The field list is applied to all streams in the same way and non-existing fields are ignored. If none are defined, all fields are considered metadata fields. When specifying text fields, you can access nested fields in the record by using dot notation, e.g. user.name will access the name field in the user object. It's also possible to use wildcards to access all fields in an object, e.g. users.*.name will access all names fields in all entries of the users array. When specifying nested paths, all matching values are flattened into an array set to a field named by the path.
    TextFields List<string>
    List of fields in the record that should be used to calculate the embedding. The field list is applied to all streams in the same way and non-existing fields are ignored. If none are defined, all fields are considered text fields. When specifying text fields, you can access nested fields in the record by using dot notation, e.g. user.name will access the name field in the user object. It's also possible to use wildcards to access all fields in an object, e.g. users.*.name will access all names fields in all entries of the users array.
    TextSplitter DestinationQdrantConfigurationProcessingTextSplitter
    Split text fields into chunks based on the specified method.
    ChunkSize float64
    Size of chunks in tokens to store in vector store (make sure it is not too big for the context if your LLM)
    ChunkOverlap float64
    Size of overlap between chunks in tokens to store in vector store to better capture relevant context. Default: 0
    FieldNameMappings []DestinationQdrantConfigurationProcessingFieldNameMapping
    List of fields to rename. Not applicable for nested fields, but can be used to rename fields already flattened via dot notation.
    MetadataFields []string
    List of fields in the record that should be stored as metadata. The field list is applied to all streams in the same way and non-existing fields are ignored. If none are defined, all fields are considered metadata fields. When specifying text fields, you can access nested fields in the record by using dot notation, e.g. user.name will access the name field in the user object. It's also possible to use wildcards to access all fields in an object, e.g. users.*.name will access all names fields in all entries of the users array. When specifying nested paths, all matching values are flattened into an array set to a field named by the path.
    TextFields []string
    List of fields in the record that should be used to calculate the embedding. The field list is applied to all streams in the same way and non-existing fields are ignored. If none are defined, all fields are considered text fields. When specifying text fields, you can access nested fields in the record by using dot notation, e.g. user.name will access the name field in the user object. It's also possible to use wildcards to access all fields in an object, e.g. users.*.name will access all names fields in all entries of the users array.
    TextSplitter DestinationQdrantConfigurationProcessingTextSplitter
    Split text fields into chunks based on the specified method.
    chunkSize Double
    Size of chunks in tokens to store in vector store (make sure it is not too big for the context if your LLM)
    chunkOverlap Double
    Size of overlap between chunks in tokens to store in vector store to better capture relevant context. Default: 0
    fieldNameMappings List<DestinationQdrantConfigurationProcessingFieldNameMapping>
    List of fields to rename. Not applicable for nested fields, but can be used to rename fields already flattened via dot notation.
    metadataFields List<String>
    List of fields in the record that should be stored as metadata. The field list is applied to all streams in the same way and non-existing fields are ignored. If none are defined, all fields are considered metadata fields. When specifying text fields, you can access nested fields in the record by using dot notation, e.g. user.name will access the name field in the user object. It's also possible to use wildcards to access all fields in an object, e.g. users.*.name will access all names fields in all entries of the users array. When specifying nested paths, all matching values are flattened into an array set to a field named by the path.
    textFields List<String>
    List of fields in the record that should be used to calculate the embedding. The field list is applied to all streams in the same way and non-existing fields are ignored. If none are defined, all fields are considered text fields. When specifying text fields, you can access nested fields in the record by using dot notation, e.g. user.name will access the name field in the user object. It's also possible to use wildcards to access all fields in an object, e.g. users.*.name will access all names fields in all entries of the users array.
    textSplitter DestinationQdrantConfigurationProcessingTextSplitter
    Split text fields into chunks based on the specified method.
    chunkSize number
    Size of chunks in tokens to store in vector store (make sure it is not too big for the context if your LLM)
    chunkOverlap number
    Size of overlap between chunks in tokens to store in vector store to better capture relevant context. Default: 0
    fieldNameMappings DestinationQdrantConfigurationProcessingFieldNameMapping[]
    List of fields to rename. Not applicable for nested fields, but can be used to rename fields already flattened via dot notation.
    metadataFields string[]
    List of fields in the record that should be stored as metadata. The field list is applied to all streams in the same way and non-existing fields are ignored. If none are defined, all fields are considered metadata fields. When specifying text fields, you can access nested fields in the record by using dot notation, e.g. user.name will access the name field in the user object. It's also possible to use wildcards to access all fields in an object, e.g. users.*.name will access all names fields in all entries of the users array. When specifying nested paths, all matching values are flattened into an array set to a field named by the path.
    textFields string[]
    List of fields in the record that should be used to calculate the embedding. The field list is applied to all streams in the same way and non-existing fields are ignored. If none are defined, all fields are considered text fields. When specifying text fields, you can access nested fields in the record by using dot notation, e.g. user.name will access the name field in the user object. It's also possible to use wildcards to access all fields in an object, e.g. users.*.name will access all names fields in all entries of the users array.
    textSplitter DestinationQdrantConfigurationProcessingTextSplitter
    Split text fields into chunks based on the specified method.
    chunk_size float
    Size of chunks in tokens to store in vector store (make sure it is not too big for the context if your LLM)
    chunk_overlap float
    Size of overlap between chunks in tokens to store in vector store to better capture relevant context. Default: 0
    field_name_mappings Sequence[DestinationQdrantConfigurationProcessingFieldNameMapping]
    List of fields to rename. Not applicable for nested fields, but can be used to rename fields already flattened via dot notation.
    metadata_fields Sequence[str]
    List of fields in the record that should be stored as metadata. The field list is applied to all streams in the same way and non-existing fields are ignored. If none are defined, all fields are considered metadata fields. When specifying text fields, you can access nested fields in the record by using dot notation, e.g. user.name will access the name field in the user object. It's also possible to use wildcards to access all fields in an object, e.g. users.*.name will access all names fields in all entries of the users array. When specifying nested paths, all matching values are flattened into an array set to a field named by the path.
    text_fields Sequence[str]
    List of fields in the record that should be used to calculate the embedding. The field list is applied to all streams in the same way and non-existing fields are ignored. If none are defined, all fields are considered text fields. When specifying text fields, you can access nested fields in the record by using dot notation, e.g. user.name will access the name field in the user object. It's also possible to use wildcards to access all fields in an object, e.g. users.*.name will access all names fields in all entries of the users array.
    text_splitter DestinationQdrantConfigurationProcessingTextSplitter
    Split text fields into chunks based on the specified method.
    chunkSize Number
    Size of chunks in tokens to store in vector store (make sure it is not too big for the context if your LLM)
    chunkOverlap Number
    Size of overlap between chunks in tokens to store in vector store to better capture relevant context. Default: 0
    fieldNameMappings List<Property Map>
    List of fields to rename. Not applicable for nested fields, but can be used to rename fields already flattened via dot notation.
    metadataFields List<String>
    List of fields in the record that should be stored as metadata. The field list is applied to all streams in the same way and non-existing fields are ignored. If none are defined, all fields are considered metadata fields. When specifying text fields, you can access nested fields in the record by using dot notation, e.g. user.name will access the name field in the user object. It's also possible to use wildcards to access all fields in an object, e.g. users.*.name will access all names fields in all entries of the users array. When specifying nested paths, all matching values are flattened into an array set to a field named by the path.
    textFields List<String>
    List of fields in the record that should be used to calculate the embedding. The field list is applied to all streams in the same way and non-existing fields are ignored. If none are defined, all fields are considered text fields. When specifying text fields, you can access nested fields in the record by using dot notation, e.g. user.name will access the name field in the user object. It's also possible to use wildcards to access all fields in an object, e.g. users.*.name will access all names fields in all entries of the users array.
    textSplitter Property Map
    Split text fields into chunks based on the specified method.

    DestinationQdrantConfigurationProcessingFieldNameMapping, DestinationQdrantConfigurationProcessingFieldNameMappingArgs

    FromField string
    The field name in the source
    ToField string
    The field name to use in the destination
    FromField string
    The field name in the source
    ToField string
    The field name to use in the destination
    fromField String
    The field name in the source
    toField String
    The field name to use in the destination
    fromField string
    The field name in the source
    toField string
    The field name to use in the destination
    from_field str
    The field name in the source
    to_field str
    The field name to use in the destination
    fromField String
    The field name in the source
    toField String
    The field name to use in the destination

    DestinationQdrantConfigurationProcessingTextSplitter, DestinationQdrantConfigurationProcessingTextSplitterArgs

    ByMarkdownHeader DestinationQdrantConfigurationProcessingTextSplitterByMarkdownHeader
    Split the text by Markdown headers down to the specified header level. If the chunk size fits multiple sections, they will be combined into a single chunk.
    ByProgrammingLanguage DestinationQdrantConfigurationProcessingTextSplitterByProgrammingLanguage
    Split the text by suitable delimiters based on the programming language. This is useful for splitting code into chunks.
    BySeparator DestinationQdrantConfigurationProcessingTextSplitterBySeparator
    Split the text by the list of separators until the chunk size is reached, using the earlier mentioned separators where possible. This is useful for splitting text fields by paragraphs, sentences, words, etc.
    ByMarkdownHeader DestinationQdrantConfigurationProcessingTextSplitterByMarkdownHeader
    Split the text by Markdown headers down to the specified header level. If the chunk size fits multiple sections, they will be combined into a single chunk.
    ByProgrammingLanguage DestinationQdrantConfigurationProcessingTextSplitterByProgrammingLanguage
    Split the text by suitable delimiters based on the programming language. This is useful for splitting code into chunks.
    BySeparator DestinationQdrantConfigurationProcessingTextSplitterBySeparator
    Split the text by the list of separators until the chunk size is reached, using the earlier mentioned separators where possible. This is useful for splitting text fields by paragraphs, sentences, words, etc.
    byMarkdownHeader DestinationQdrantConfigurationProcessingTextSplitterByMarkdownHeader
    Split the text by Markdown headers down to the specified header level. If the chunk size fits multiple sections, they will be combined into a single chunk.
    byProgrammingLanguage DestinationQdrantConfigurationProcessingTextSplitterByProgrammingLanguage
    Split the text by suitable delimiters based on the programming language. This is useful for splitting code into chunks.
    bySeparator DestinationQdrantConfigurationProcessingTextSplitterBySeparator
    Split the text by the list of separators until the chunk size is reached, using the earlier mentioned separators where possible. This is useful for splitting text fields by paragraphs, sentences, words, etc.
    byMarkdownHeader DestinationQdrantConfigurationProcessingTextSplitterByMarkdownHeader
    Split the text by Markdown headers down to the specified header level. If the chunk size fits multiple sections, they will be combined into a single chunk.
    byProgrammingLanguage DestinationQdrantConfigurationProcessingTextSplitterByProgrammingLanguage
    Split the text by suitable delimiters based on the programming language. This is useful for splitting code into chunks.
    bySeparator DestinationQdrantConfigurationProcessingTextSplitterBySeparator
    Split the text by the list of separators until the chunk size is reached, using the earlier mentioned separators where possible. This is useful for splitting text fields by paragraphs, sentences, words, etc.
    by_markdown_header DestinationQdrantConfigurationProcessingTextSplitterByMarkdownHeader
    Split the text by Markdown headers down to the specified header level. If the chunk size fits multiple sections, they will be combined into a single chunk.
    by_programming_language DestinationQdrantConfigurationProcessingTextSplitterByProgrammingLanguage
    Split the text by suitable delimiters based on the programming language. This is useful for splitting code into chunks.
    by_separator DestinationQdrantConfigurationProcessingTextSplitterBySeparator
    Split the text by the list of separators until the chunk size is reached, using the earlier mentioned separators where possible. This is useful for splitting text fields by paragraphs, sentences, words, etc.
    byMarkdownHeader Property Map
    Split the text by Markdown headers down to the specified header level. If the chunk size fits multiple sections, they will be combined into a single chunk.
    byProgrammingLanguage Property Map
    Split the text by suitable delimiters based on the programming language. This is useful for splitting code into chunks.
    bySeparator Property Map
    Split the text by the list of separators until the chunk size is reached, using the earlier mentioned separators where possible. This is useful for splitting text fields by paragraphs, sentences, words, etc.

    DestinationQdrantConfigurationProcessingTextSplitterByMarkdownHeader, DestinationQdrantConfigurationProcessingTextSplitterByMarkdownHeaderArgs

    SplitLevel double
    Level of markdown headers to split text fields by. Headings down to the specified level will be used as split points. Default: 1
    SplitLevel float64
    Level of markdown headers to split text fields by. Headings down to the specified level will be used as split points. Default: 1
    splitLevel Double
    Level of markdown headers to split text fields by. Headings down to the specified level will be used as split points. Default: 1
    splitLevel number
    Level of markdown headers to split text fields by. Headings down to the specified level will be used as split points. Default: 1
    split_level float
    Level of markdown headers to split text fields by. Headings down to the specified level will be used as split points. Default: 1
    splitLevel Number
    Level of markdown headers to split text fields by. Headings down to the specified level will be used as split points. Default: 1

    DestinationQdrantConfigurationProcessingTextSplitterByProgrammingLanguage, DestinationQdrantConfigurationProcessingTextSplitterByProgrammingLanguageArgs

    Language string
    Split code in suitable places based on the programming language. must be one of ["cpp", "go", "java", "js", "php", "proto", "python", "rst", "ruby", "rust", "scala", "swift", "markdown", "latex", "html", "sol"]
    Language string
    Split code in suitable places based on the programming language. must be one of ["cpp", "go", "java", "js", "php", "proto", "python", "rst", "ruby", "rust", "scala", "swift", "markdown", "latex", "html", "sol"]
    language String
    Split code in suitable places based on the programming language. must be one of ["cpp", "go", "java", "js", "php", "proto", "python", "rst", "ruby", "rust", "scala", "swift", "markdown", "latex", "html", "sol"]
    language string
    Split code in suitable places based on the programming language. must be one of ["cpp", "go", "java", "js", "php", "proto", "python", "rst", "ruby", "rust", "scala", "swift", "markdown", "latex", "html", "sol"]
    language str
    Split code in suitable places based on the programming language. must be one of ["cpp", "go", "java", "js", "php", "proto", "python", "rst", "ruby", "rust", "scala", "swift", "markdown", "latex", "html", "sol"]
    language String
    Split code in suitable places based on the programming language. must be one of ["cpp", "go", "java", "js", "php", "proto", "python", "rst", "ruby", "rust", "scala", "swift", "markdown", "latex", "html", "sol"]

    DestinationQdrantConfigurationProcessingTextSplitterBySeparator, DestinationQdrantConfigurationProcessingTextSplitterBySeparatorArgs

    KeepSeparator bool
    Whether to keep the separator in the resulting chunks. Default: false
    Separators List<string>
    List of separator strings to split text fields by. The separator itself needs to be wrapped in double quotes, e.g. to split by the dot character, use ".". To split by a newline, use "\n".
    KeepSeparator bool
    Whether to keep the separator in the resulting chunks. Default: false
    Separators []string
    List of separator strings to split text fields by. The separator itself needs to be wrapped in double quotes, e.g. to split by the dot character, use ".". To split by a newline, use "\n".
    keepSeparator Boolean
    Whether to keep the separator in the resulting chunks. Default: false
    separators List<String>
    List of separator strings to split text fields by. The separator itself needs to be wrapped in double quotes, e.g. to split by the dot character, use ".". To split by a newline, use "\n".
    keepSeparator boolean
    Whether to keep the separator in the resulting chunks. Default: false
    separators string[]
    List of separator strings to split text fields by. The separator itself needs to be wrapped in double quotes, e.g. to split by the dot character, use ".". To split by a newline, use "\n".
    keep_separator bool
    Whether to keep the separator in the resulting chunks. Default: false
    separators Sequence[str]
    List of separator strings to split text fields by. The separator itself needs to be wrapped in double quotes, e.g. to split by the dot character, use ".". To split by a newline, use "\n".
    keepSeparator Boolean
    Whether to keep the separator in the resulting chunks. Default: false
    separators List<String>
    List of separator strings to split text fields by. The separator itself needs to be wrapped in double quotes, e.g. to split by the dot character, use ".". To split by a newline, use "\n".

    Import

    $ pulumi import airbyte:index/destinationQdrant:DestinationQdrant my_airbyte_destination_qdrant ""
    

    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.
    airbyte logo
    airbyte 0.7.0-beta2 published on Friday, Mar 7, 2025 by airbytehq