1. Packages
  2. Airbyte Provider
  3. API Docs
  4. DestinationVectara
airbyte 0.10.0 published on Monday, Apr 14, 2025 by airbytehq

airbyte.DestinationVectara

Explore with Pulumi AI

DestinationVectara 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.DestinationVectara;
import com.pulumi.airbyte.DestinationVectaraArgs;
import com.pulumi.airbyte.inputs.DestinationVectaraConfigurationArgs;
import com.pulumi.airbyte.inputs.DestinationVectaraConfigurationOauth2Args;
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 myDestinationVectara = new DestinationVectara("myDestinationVectara", DestinationVectaraArgs.builder()
            .configuration(DestinationVectaraConfigurationArgs.builder()
                .corpus_name("...my_corpus_name...")
                .customer_id("...my_customer_id...")
                .metadata_fields("...")
                .oauth2(DestinationVectaraConfigurationOauth2Args.builder()
                    .clientId("...my_client_id...")
                    .clientSecret("...my_client_secret...")
                    .build())
                .parallelize(true)
                .text_fields("...")
                .title_field("document_key")
                .build())
            .definitionId("ac173292-6bf8-4462-bbfa-4dfe841fa692")
            .workspaceId("83b24974-78f7-4174-9db4-d0c0c51118e8")
            .build());

    }
}
Copy
resources:
  myDestinationVectara:
    type: airbyte:DestinationVectara
    properties:
      configuration:
        corpus_name: '...my_corpus_name...'
        customer_id: '...my_customer_id...'
        metadata_fields:
          - '...'
        oauth2:
          clientId: '...my_client_id...'
          clientSecret: '...my_client_secret...'
        parallelize: true
        text_fields:
          - '...'
        title_field: document_key
      definitionId: ac173292-6bf8-4462-bbfa-4dfe841fa692
      workspaceId: 83b24974-78f7-4174-9db4-d0c0c51118e8
Copy

Create DestinationVectara Resource

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

Constructor syntax

new DestinationVectara(name: string, args: DestinationVectaraArgs, opts?: CustomResourceOptions);
@overload
def DestinationVectara(resource_name: str,
                       args: DestinationVectaraArgs,
                       opts: Optional[ResourceOptions] = None)

@overload
def DestinationVectara(resource_name: str,
                       opts: Optional[ResourceOptions] = None,
                       configuration: Optional[DestinationVectaraConfigurationArgs] = None,
                       workspace_id: Optional[str] = None,
                       definition_id: Optional[str] = None,
                       name: Optional[str] = None)
func NewDestinationVectara(ctx *Context, name string, args DestinationVectaraArgs, opts ...ResourceOption) (*DestinationVectara, error)
public DestinationVectara(string name, DestinationVectaraArgs args, CustomResourceOptions? opts = null)
public DestinationVectara(String name, DestinationVectaraArgs args)
public DestinationVectara(String name, DestinationVectaraArgs args, CustomResourceOptions options)
type: airbyte:DestinationVectara
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. DestinationVectaraArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. DestinationVectaraArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. DestinationVectaraArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. DestinationVectaraArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. DestinationVectaraArgs
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 destinationVectaraResource = new Airbyte.DestinationVectara("destinationVectaraResource", new()
{
    Configuration = new Airbyte.Inputs.DestinationVectaraConfigurationArgs
    {
        CorpusName = "string",
        CustomerId = "string",
        Oauth2 = new Airbyte.Inputs.DestinationVectaraConfigurationOauth2Args
        {
            ClientId = "string",
            ClientSecret = "string",
        },
        MetadataFields = new[]
        {
            "string",
        },
        Parallelize = false,
        TextFields = new[]
        {
            "string",
        },
        TitleField = "string",
    },
    WorkspaceId = "string",
    DefinitionId = "string",
    Name = "string",
});
Copy
example, err := airbyte.NewDestinationVectara(ctx, "destinationVectaraResource", &airbyte.DestinationVectaraArgs{
Configuration: &.DestinationVectaraConfigurationArgs{
CorpusName: pulumi.String("string"),
CustomerId: pulumi.String("string"),
Oauth2: &.DestinationVectaraConfigurationOauth2Args{
ClientId: pulumi.String("string"),
ClientSecret: pulumi.String("string"),
},
MetadataFields: pulumi.StringArray{
pulumi.String("string"),
},
Parallelize: pulumi.Bool(false),
TextFields: pulumi.StringArray{
pulumi.String("string"),
},
TitleField: pulumi.String("string"),
},
WorkspaceId: pulumi.String("string"),
DefinitionId: pulumi.String("string"),
Name: pulumi.String("string"),
})
Copy
var destinationVectaraResource = new DestinationVectara("destinationVectaraResource", DestinationVectaraArgs.builder()
    .configuration(DestinationVectaraConfigurationArgs.builder()
        .corpusName("string")
        .customerId("string")
        .oauth2(DestinationVectaraConfigurationOauth2Args.builder()
            .clientId("string")
            .clientSecret("string")
            .build())
        .metadataFields("string")
        .parallelize(false)
        .textFields("string")
        .titleField("string")
        .build())
    .workspaceId("string")
    .definitionId("string")
    .name("string")
    .build());
Copy
destination_vectara_resource = airbyte.DestinationVectara("destinationVectaraResource",
    configuration={
        "corpus_name": "string",
        "customer_id": "string",
        "oauth2": {
            "client_id": "string",
            "client_secret": "string",
        },
        "metadata_fields": ["string"],
        "parallelize": False,
        "text_fields": ["string"],
        "title_field": "string",
    },
    workspace_id="string",
    definition_id="string",
    name="string")
Copy
const destinationVectaraResource = new airbyte.DestinationVectara("destinationVectaraResource", {
    configuration: {
        corpusName: "string",
        customerId: "string",
        oauth2: {
            clientId: "string",
            clientSecret: "string",
        },
        metadataFields: ["string"],
        parallelize: false,
        textFields: ["string"],
        titleField: "string",
    },
    workspaceId: "string",
    definitionId: "string",
    name: "string",
});
Copy
type: airbyte:DestinationVectara
properties:
    configuration:
        corpusName: string
        customerId: string
        metadataFields:
            - string
        oauth2:
            clientId: string
            clientSecret: string
        parallelize: false
        textFields:
            - string
        titleField: string
    definitionId: string
    name: string
    workspaceId: string
Copy

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

Configuration This property is required. DestinationVectaraConfiguration
Configuration to connect to the Vectara instance
WorkspaceId This property is required. 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 This property is required. DestinationVectaraConfigurationArgs
Configuration to connect to the Vectara instance
WorkspaceId This property is required. 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 This property is required. DestinationVectaraConfiguration
Configuration to connect to the Vectara instance
workspaceId This property is required. 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 This property is required. DestinationVectaraConfiguration
Configuration to connect to the Vectara instance
workspaceId This property is required. 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 This property is required. DestinationVectaraConfigurationArgs
Configuration to connect to the Vectara instance
workspace_id This property is required. 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 This property is required. Property Map
Configuration to connect to the Vectara instance
workspaceId This property is required. 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 DestinationVectara resource produces the following output properties:

CreatedAt double
DestinationId string
DestinationType string
Id string
The provider-assigned unique ID for this managed resource.
ResourceAllocation DestinationVectaraResourceAllocation
actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
CreatedAt float64
DestinationId string
DestinationType string
Id string
The provider-assigned unique ID for this managed resource.
ResourceAllocation DestinationVectaraResourceAllocation
actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
createdAt Double
destinationId String
destinationType String
id String
The provider-assigned unique ID for this managed resource.
resourceAllocation DestinationVectaraResourceAllocation
actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
createdAt number
destinationId string
destinationType string
id string
The provider-assigned unique ID for this managed resource.
resourceAllocation DestinationVectaraResourceAllocation
actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
created_at float
destination_id str
destination_type str
id str
The provider-assigned unique ID for this managed resource.
resource_allocation DestinationVectaraResourceAllocation
actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
createdAt Number
destinationId String
destinationType String
id String
The provider-assigned unique ID for this managed resource.
resourceAllocation Property Map
actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.

Look up Existing DestinationVectara Resource

Get an existing DestinationVectara 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?: DestinationVectaraState, opts?: CustomResourceOptions): DestinationVectara
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        configuration: Optional[DestinationVectaraConfigurationArgs] = 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,
        resource_allocation: Optional[DestinationVectaraResourceAllocationArgs] = None,
        workspace_id: Optional[str] = None) -> DestinationVectara
func GetDestinationVectara(ctx *Context, name string, id IDInput, state *DestinationVectaraState, opts ...ResourceOption) (*DestinationVectara, error)
public static DestinationVectara Get(string name, Input<string> id, DestinationVectaraState? state, CustomResourceOptions? opts = null)
public static DestinationVectara get(String name, Output<String> id, DestinationVectaraState state, CustomResourceOptions options)
resources:  _:    type: airbyte:DestinationVectara    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 DestinationVectaraConfiguration
Configuration to connect to the Vectara instance
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.
ResourceAllocation DestinationVectaraResourceAllocation
actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
WorkspaceId string
Configuration DestinationVectaraConfigurationArgs
Configuration to connect to the Vectara instance
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.
ResourceAllocation DestinationVectaraResourceAllocationArgs
actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
WorkspaceId string
configuration DestinationVectaraConfiguration
Configuration to connect to the Vectara instance
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.
resourceAllocation DestinationVectaraResourceAllocation
actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
workspaceId String
configuration DestinationVectaraConfiguration
Configuration to connect to the Vectara instance
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.
resourceAllocation DestinationVectaraResourceAllocation
actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
workspaceId string
configuration DestinationVectaraConfigurationArgs
Configuration to connect to the Vectara instance
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.
resource_allocation DestinationVectaraResourceAllocationArgs
actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
workspace_id str
configuration Property Map
Configuration to connect to the Vectara instance
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.
resourceAllocation Property Map
actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
workspaceId String

Supporting Types

DestinationVectaraConfiguration
, DestinationVectaraConfigurationArgs

CorpusName This property is required. string
The Name of Corpus to load data into
CustomerId This property is required. string
Your customer id as it is in the authenticaion url
Oauth2 This property is required. DestinationVectaraConfigurationOauth2
OAuth2.0 credentials used to authenticate admin actions (creating/deleting corpora)
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.
Parallelize bool
Parallelize indexing into Vectara with multiple threads. Default: false
TextFields List<string>
List of fields in the record that should be in the section of the document. 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.
TitleField string
A field that will be used to populate the title of each document. 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. Default: ""
CorpusName This property is required. string
The Name of Corpus to load data into
CustomerId This property is required. string
Your customer id as it is in the authenticaion url
Oauth2 This property is required. DestinationVectaraConfigurationOauth2
OAuth2.0 credentials used to authenticate admin actions (creating/deleting corpora)
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.
Parallelize bool
Parallelize indexing into Vectara with multiple threads. Default: false
TextFields []string
List of fields in the record that should be in the section of the document. 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.
TitleField string
A field that will be used to populate the title of each document. 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. Default: ""
corpusName This property is required. String
The Name of Corpus to load data into
customerId This property is required. String
Your customer id as it is in the authenticaion url
oauth2 This property is required. DestinationVectaraConfigurationOauth2
OAuth2.0 credentials used to authenticate admin actions (creating/deleting corpora)
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.
parallelize Boolean
Parallelize indexing into Vectara with multiple threads. Default: false
textFields List<String>
List of fields in the record that should be in the section of the document. 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.
titleField String
A field that will be used to populate the title of each document. 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. Default: ""
corpusName This property is required. string
The Name of Corpus to load data into
customerId This property is required. string
Your customer id as it is in the authenticaion url
oauth2 This property is required. DestinationVectaraConfigurationOauth2
OAuth2.0 credentials used to authenticate admin actions (creating/deleting corpora)
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.
parallelize boolean
Parallelize indexing into Vectara with multiple threads. Default: false
textFields string[]
List of fields in the record that should be in the section of the document. 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.
titleField string
A field that will be used to populate the title of each document. 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. Default: ""
corpus_name This property is required. str
The Name of Corpus to load data into
customer_id This property is required. str
Your customer id as it is in the authenticaion url
oauth2 This property is required. DestinationVectaraConfigurationOauth2
OAuth2.0 credentials used to authenticate admin actions (creating/deleting corpora)
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.
parallelize bool
Parallelize indexing into Vectara with multiple threads. Default: false
text_fields Sequence[str]
List of fields in the record that should be in the section of the document. 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.
title_field str
A field that will be used to populate the title of each document. 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. Default: ""
corpusName This property is required. String
The Name of Corpus to load data into
customerId This property is required. String
Your customer id as it is in the authenticaion url
oauth2 This property is required. Property Map
OAuth2.0 credentials used to authenticate admin actions (creating/deleting corpora)
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.
parallelize Boolean
Parallelize indexing into Vectara with multiple threads. Default: false
textFields List<String>
List of fields in the record that should be in the section of the document. 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.
titleField String
A field that will be used to populate the title of each document. 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. Default: ""

DestinationVectaraConfigurationOauth2
, DestinationVectaraConfigurationOauth2Args

ClientId This property is required. string
OAuth2.0 client id
ClientSecret This property is required. string
OAuth2.0 client secret
ClientId This property is required. string
OAuth2.0 client id
ClientSecret This property is required. string
OAuth2.0 client secret
clientId This property is required. String
OAuth2.0 client id
clientSecret This property is required. String
OAuth2.0 client secret
clientId This property is required. string
OAuth2.0 client id
clientSecret This property is required. string
OAuth2.0 client secret
client_id This property is required. str
OAuth2.0 client id
client_secret This property is required. str
OAuth2.0 client secret
clientId This property is required. String
OAuth2.0 client id
clientSecret This property is required. String
OAuth2.0 client secret

DestinationVectaraResourceAllocation
, DestinationVectaraResourceAllocationArgs

Default DestinationVectaraResourceAllocationDefault
optional resource requirements to run workers (blank for unbounded allocations)
JobSpecifics List<DestinationVectaraResourceAllocationJobSpecific>
Default DestinationVectaraResourceAllocationDefault
optional resource requirements to run workers (blank for unbounded allocations)
JobSpecifics []DestinationVectaraResourceAllocationJobSpecific
default_ DestinationVectaraResourceAllocationDefault
optional resource requirements to run workers (blank for unbounded allocations)
jobSpecifics List<DestinationVectaraResourceAllocationJobSpecific>
default DestinationVectaraResourceAllocationDefault
optional resource requirements to run workers (blank for unbounded allocations)
jobSpecifics DestinationVectaraResourceAllocationJobSpecific[]
default DestinationVectaraResourceAllocationDefault
optional resource requirements to run workers (blank for unbounded allocations)
job_specifics Sequence[DestinationVectaraResourceAllocationJobSpecific]
default Property Map
optional resource requirements to run workers (blank for unbounded allocations)
jobSpecifics List<Property Map>

DestinationVectaraResourceAllocationDefault
, DestinationVectaraResourceAllocationDefaultArgs

DestinationVectaraResourceAllocationJobSpecific
, DestinationVectaraResourceAllocationJobSpecificArgs

JobType string
enum that describes the different types of jobs that the platform runs. must be one of ["getspec", "checkconnection", "discoverschema", "sync", "resetconnection", "connection_updater", "replicate"]
ResourceRequirements DestinationVectaraResourceAllocationJobSpecificResourceRequirements
optional resource requirements to run workers (blank for unbounded allocations)
JobType string
enum that describes the different types of jobs that the platform runs. must be one of ["getspec", "checkconnection", "discoverschema", "sync", "resetconnection", "connection_updater", "replicate"]
ResourceRequirements DestinationVectaraResourceAllocationJobSpecificResourceRequirements
optional resource requirements to run workers (blank for unbounded allocations)
jobType String
enum that describes the different types of jobs that the platform runs. must be one of ["getspec", "checkconnection", "discoverschema", "sync", "resetconnection", "connection_updater", "replicate"]
resourceRequirements DestinationVectaraResourceAllocationJobSpecificResourceRequirements
optional resource requirements to run workers (blank for unbounded allocations)
jobType string
enum that describes the different types of jobs that the platform runs. must be one of ["getspec", "checkconnection", "discoverschema", "sync", "resetconnection", "connection_updater", "replicate"]
resourceRequirements DestinationVectaraResourceAllocationJobSpecificResourceRequirements
optional resource requirements to run workers (blank for unbounded allocations)
job_type str
enum that describes the different types of jobs that the platform runs. must be one of ["getspec", "checkconnection", "discoverschema", "sync", "resetconnection", "connection_updater", "replicate"]
resource_requirements DestinationVectaraResourceAllocationJobSpecificResourceRequirements
optional resource requirements to run workers (blank for unbounded allocations)
jobType String
enum that describes the different types of jobs that the platform runs. must be one of ["getspec", "checkconnection", "discoverschema", "sync", "resetconnection", "connection_updater", "replicate"]
resourceRequirements Property Map
optional resource requirements to run workers (blank for unbounded allocations)

DestinationVectaraResourceAllocationJobSpecificResourceRequirements
, DestinationVectaraResourceAllocationJobSpecificResourceRequirementsArgs

Import

$ pulumi import airbyte:index/destinationVectara:DestinationVectara my_airbyte_destination_vectara ""
Copy

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.