airbyte.DestinationAstra
Explore with Pulumi AI
DestinationAstra 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.DestinationAstra;
import com.pulumi.airbyte.DestinationAstraArgs;
import com.pulumi.airbyte.inputs.DestinationAstraConfigurationArgs;
import com.pulumi.airbyte.inputs.DestinationAstraConfigurationEmbeddingArgs;
import com.pulumi.airbyte.inputs.DestinationAstraConfigurationEmbeddingCohereArgs;
import com.pulumi.airbyte.inputs.DestinationAstraConfigurationIndexingArgs;
import com.pulumi.airbyte.inputs.DestinationAstraConfigurationProcessingArgs;
import com.pulumi.airbyte.inputs.DestinationAstraConfigurationProcessingTextSplitterArgs;
import com.pulumi.airbyte.inputs.DestinationAstraConfigurationProcessingTextSplitterByProgrammingLanguageArgs;
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 myDestinationAstra = new DestinationAstra("myDestinationAstra", DestinationAstraArgs.builder()
.configuration(DestinationAstraConfigurationArgs.builder()
.embedding(DestinationAstraConfigurationEmbeddingArgs.builder()
.cohere(DestinationAstraConfigurationEmbeddingCohereArgs.builder()
.cohereKey("...my_cohere_key...")
.build())
.build())
.indexing(DestinationAstraConfigurationIndexingArgs.builder()
.astraDbAppToken("...my_astra_db_app_token...")
.astraDbEndpoint("https://8292d414-dd1b-4c33-8431-e838bedc04f7-us-east1.apps.astra.datastax.com")
.astraDbKeyspace("...my_astra_db_keyspace...")
.collection("...my_collection...")
.build())
.omit_raw_text(false)
.processing(DestinationAstraConfigurationProcessingArgs.builder()
.chunkOverlap(6)
.chunkSize(2127)
.fieldNameMappings(DestinationAstraConfigurationProcessingFieldNameMappingArgs.builder()
.fromField("...my_from_field...")
.toField("...my_to_field...")
.build())
.metadataFields("...")
.textFields("...")
.textSplitter(DestinationAstraConfigurationProcessingTextSplitterArgs.builder()
.byProgrammingLanguage(DestinationAstraConfigurationProcessingTextSplitterByProgrammingLanguageArgs.builder()
.language("js")
.build())
.build())
.build())
.build())
.definitionId("79152260-aed1-4b65-bb98-3dd0b8ec05bd")
.workspaceId("543d6f27-bf11-4034-a571-6e04a190e68b")
.build());
}
}
resources:
myDestinationAstra:
type: airbyte:DestinationAstra
properties:
configuration:
embedding:
cohere:
cohereKey: '...my_cohere_key...'
indexing:
astraDbAppToken: '...my_astra_db_app_token...'
astraDbEndpoint: https://8292d414-dd1b-4c33-8431-e838bedc04f7-us-east1.apps.astra.datastax.com
astraDbKeyspace: '...my_astra_db_keyspace...'
collection: '...my_collection...'
omit_raw_text: false
processing:
chunkOverlap: 6
chunkSize: 2127
fieldNameMappings:
- fromField: '...my_from_field...'
toField: '...my_to_field...'
metadataFields:
- '...'
textFields:
- '...'
textSplitter:
byProgrammingLanguage:
language: js
definitionId: 79152260-aed1-4b65-bb98-3dd0b8ec05bd
workspaceId: 543d6f27-bf11-4034-a571-6e04a190e68b
Create DestinationAstra Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new DestinationAstra(name: string, args: DestinationAstraArgs, opts?: CustomResourceOptions);
@overload
def DestinationAstra(resource_name: str,
args: DestinationAstraArgs,
opts: Optional[ResourceOptions] = None)
@overload
def DestinationAstra(resource_name: str,
opts: Optional[ResourceOptions] = None,
configuration: Optional[DestinationAstraConfigurationArgs] = None,
workspace_id: Optional[str] = None,
definition_id: Optional[str] = None,
name: Optional[str] = None)
func NewDestinationAstra(ctx *Context, name string, args DestinationAstraArgs, opts ...ResourceOption) (*DestinationAstra, error)
public DestinationAstra(string name, DestinationAstraArgs args, CustomResourceOptions? opts = null)
public DestinationAstra(String name, DestinationAstraArgs args)
public DestinationAstra(String name, DestinationAstraArgs args, CustomResourceOptions options)
type: airbyte:DestinationAstra
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 DestinationAstraArgs
- 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 DestinationAstraArgs
- 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 DestinationAstraArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args DestinationAstraArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args DestinationAstraArgs
- 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 destinationAstraResource = new Airbyte.DestinationAstra("destinationAstraResource", new()
{
Configuration = new Airbyte.Inputs.DestinationAstraConfigurationArgs
{
Embedding = new Airbyte.Inputs.DestinationAstraConfigurationEmbeddingArgs
{
AzureOpenAi = new Airbyte.Inputs.DestinationAstraConfigurationEmbeddingAzureOpenAiArgs
{
ApiBase = "string",
Deployment = "string",
OpenaiKey = "string",
},
Cohere = new Airbyte.Inputs.DestinationAstraConfigurationEmbeddingCohereArgs
{
CohereKey = "string",
},
Fake = null,
OpenAi = new Airbyte.Inputs.DestinationAstraConfigurationEmbeddingOpenAiArgs
{
OpenaiKey = "string",
},
OpenAiCompatible = new Airbyte.Inputs.DestinationAstraConfigurationEmbeddingOpenAiCompatibleArgs
{
BaseUrl = "string",
Dimensions = 0,
ApiKey = "string",
ModelName = "string",
},
},
Indexing = new Airbyte.Inputs.DestinationAstraConfigurationIndexingArgs
{
AstraDbAppToken = "string",
AstraDbEndpoint = "string",
AstraDbKeyspace = "string",
Collection = "string",
},
Processing = new Airbyte.Inputs.DestinationAstraConfigurationProcessingArgs
{
ChunkSize = 0,
ChunkOverlap = 0,
FieldNameMappings = new[]
{
new Airbyte.Inputs.DestinationAstraConfigurationProcessingFieldNameMappingArgs
{
FromField = "string",
ToField = "string",
},
},
MetadataFields = new[]
{
"string",
},
TextFields = new[]
{
"string",
},
TextSplitter = new Airbyte.Inputs.DestinationAstraConfigurationProcessingTextSplitterArgs
{
ByMarkdownHeader = new Airbyte.Inputs.DestinationAstraConfigurationProcessingTextSplitterByMarkdownHeaderArgs
{
SplitLevel = 0,
},
ByProgrammingLanguage = new Airbyte.Inputs.DestinationAstraConfigurationProcessingTextSplitterByProgrammingLanguageArgs
{
Language = "string",
},
BySeparator = new Airbyte.Inputs.DestinationAstraConfigurationProcessingTextSplitterBySeparatorArgs
{
KeepSeparator = false,
Separators = new[]
{
"string",
},
},
},
},
OmitRawText = false,
},
WorkspaceId = "string",
DefinitionId = "string",
Name = "string",
});
example, err := airbyte.NewDestinationAstra(ctx, "destinationAstraResource", &airbyte.DestinationAstraArgs{
Configuration: &.DestinationAstraConfigurationArgs{
Embedding: &.DestinationAstraConfigurationEmbeddingArgs{
AzureOpenAi: &.DestinationAstraConfigurationEmbeddingAzureOpenAiArgs{
ApiBase: pulumi.String("string"),
Deployment: pulumi.String("string"),
OpenaiKey: pulumi.String("string"),
},
Cohere: &.DestinationAstraConfigurationEmbeddingCohereArgs{
CohereKey: pulumi.String("string"),
},
Fake: &.DestinationAstraConfigurationEmbeddingFakeArgs{
},
OpenAi: &.DestinationAstraConfigurationEmbeddingOpenAiArgs{
OpenaiKey: pulumi.String("string"),
},
OpenAiCompatible: &.DestinationAstraConfigurationEmbeddingOpenAiCompatibleArgs{
BaseUrl: pulumi.String("string"),
Dimensions: pulumi.Float64(0),
ApiKey: pulumi.String("string"),
ModelName: pulumi.String("string"),
},
},
Indexing: &.DestinationAstraConfigurationIndexingArgs{
AstraDbAppToken: pulumi.String("string"),
AstraDbEndpoint: pulumi.String("string"),
AstraDbKeyspace: pulumi.String("string"),
Collection: pulumi.String("string"),
},
Processing: &.DestinationAstraConfigurationProcessingArgs{
ChunkSize: pulumi.Float64(0),
ChunkOverlap: pulumi.Float64(0),
FieldNameMappings: .DestinationAstraConfigurationProcessingFieldNameMappingArray{
&.DestinationAstraConfigurationProcessingFieldNameMappingArgs{
FromField: pulumi.String("string"),
ToField: pulumi.String("string"),
},
},
MetadataFields: pulumi.StringArray{
pulumi.String("string"),
},
TextFields: pulumi.StringArray{
pulumi.String("string"),
},
TextSplitter: &.DestinationAstraConfigurationProcessingTextSplitterArgs{
ByMarkdownHeader: &.DestinationAstraConfigurationProcessingTextSplitterByMarkdownHeaderArgs{
SplitLevel: pulumi.Float64(0),
},
ByProgrammingLanguage: &.DestinationAstraConfigurationProcessingTextSplitterByProgrammingLanguageArgs{
Language: pulumi.String("string"),
},
BySeparator: &.DestinationAstraConfigurationProcessingTextSplitterBySeparatorArgs{
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 destinationAstraResource = new DestinationAstra("destinationAstraResource", DestinationAstraArgs.builder()
.configuration(DestinationAstraConfigurationArgs.builder()
.embedding(DestinationAstraConfigurationEmbeddingArgs.builder()
.azureOpenAi(DestinationAstraConfigurationEmbeddingAzureOpenAiArgs.builder()
.apiBase("string")
.deployment("string")
.openaiKey("string")
.build())
.cohere(DestinationAstraConfigurationEmbeddingCohereArgs.builder()
.cohereKey("string")
.build())
.fake()
.openAi(DestinationAstraConfigurationEmbeddingOpenAiArgs.builder()
.openaiKey("string")
.build())
.openAiCompatible(DestinationAstraConfigurationEmbeddingOpenAiCompatibleArgs.builder()
.baseUrl("string")
.dimensions(0)
.apiKey("string")
.modelName("string")
.build())
.build())
.indexing(DestinationAstraConfigurationIndexingArgs.builder()
.astraDbAppToken("string")
.astraDbEndpoint("string")
.astraDbKeyspace("string")
.collection("string")
.build())
.processing(DestinationAstraConfigurationProcessingArgs.builder()
.chunkSize(0)
.chunkOverlap(0)
.fieldNameMappings(DestinationAstraConfigurationProcessingFieldNameMappingArgs.builder()
.fromField("string")
.toField("string")
.build())
.metadataFields("string")
.textFields("string")
.textSplitter(DestinationAstraConfigurationProcessingTextSplitterArgs.builder()
.byMarkdownHeader(DestinationAstraConfigurationProcessingTextSplitterByMarkdownHeaderArgs.builder()
.splitLevel(0)
.build())
.byProgrammingLanguage(DestinationAstraConfigurationProcessingTextSplitterByProgrammingLanguageArgs.builder()
.language("string")
.build())
.bySeparator(DestinationAstraConfigurationProcessingTextSplitterBySeparatorArgs.builder()
.keepSeparator(false)
.separators("string")
.build())
.build())
.build())
.omitRawText(false)
.build())
.workspaceId("string")
.definitionId("string")
.name("string")
.build());
destination_astra_resource = airbyte.DestinationAstra("destinationAstraResource",
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": {
"astra_db_app_token": "string",
"astra_db_endpoint": "string",
"astra_db_keyspace": "string",
"collection": "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 destinationAstraResource = new airbyte.DestinationAstra("destinationAstraResource", {
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: {
astraDbAppToken: "string",
astraDbEndpoint: "string",
astraDbKeyspace: "string",
collection: "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:DestinationAstra
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:
astraDbAppToken: string
astraDbEndpoint: string
astraDbKeyspace: string
collection: 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
DestinationAstra 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 DestinationAstra resource accepts the following input properties:
- Configuration
Destination
Astra Configuration - 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 string - Definition
Id 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
Destination
Astra Configuration Args - 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 string - Definition
Id 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
Destination
Astra Configuration - 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 String - definition
Id 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
Destination
Astra Configuration - 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 string - definition
Id 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
Destination
Astra Configuration Args - 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.
- workspace
Id String - definition
Id 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 DestinationAstra resource produces the following output properties:
- Created
At double - Destination
Id string - Destination
Type string - Id string
- The provider-assigned unique ID for this managed resource.
- Resource
Allocation DestinationAstra Resource Allocation - actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
- Created
At float64 - Destination
Id string - Destination
Type string - Id string
- The provider-assigned unique ID for this managed resource.
- Resource
Allocation DestinationAstra Resource Allocation - actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
- created
At Double - destination
Id String - destination
Type String - id String
- The provider-assigned unique ID for this managed resource.
- resource
Allocation DestinationAstra Resource Allocation - actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
- created
At number - destination
Id string - destination
Type string - id string
- The provider-assigned unique ID for this managed resource.
- resource
Allocation DestinationAstra Resource Allocation - actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
- created_
at float - destination_
id str - destination_
type str - id str
- The provider-assigned unique ID for this managed resource.
- resource_
allocation DestinationAstra Resource Allocation - actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
- created
At Number - destination
Id String - destination
Type String - id String
- The provider-assigned unique ID for this managed resource.
- resource
Allocation Property Map - actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
Look up Existing DestinationAstra Resource
Get an existing DestinationAstra 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?: DestinationAstraState, opts?: CustomResourceOptions): DestinationAstra
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
configuration: Optional[DestinationAstraConfigurationArgs] = 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[DestinationAstraResourceAllocationArgs] = None,
workspace_id: Optional[str] = None) -> DestinationAstra
func GetDestinationAstra(ctx *Context, name string, id IDInput, state *DestinationAstraState, opts ...ResourceOption) (*DestinationAstra, error)
public static DestinationAstra Get(string name, Input<string> id, DestinationAstraState? state, CustomResourceOptions? opts = null)
public static DestinationAstra get(String name, Output<String> id, DestinationAstraState state, CustomResourceOptions options)
resources: _: type: airbyte:DestinationAstra get: id: ${id}
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Configuration
Destination
Astra Configuration - 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 double - Definition
Id string - The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
- Destination
Id string - Destination
Type string - Name string
- Name of the destination e.g. dev-mysql-instance.
- Resource
Allocation DestinationAstra Resource Allocation - actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
- Workspace
Id string
- Configuration
Destination
Astra Configuration Args - 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 float64 - Definition
Id string - The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
- Destination
Id string - Destination
Type string - Name string
- Name of the destination e.g. dev-mysql-instance.
- Resource
Allocation DestinationAstra Resource Allocation Args - actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
- Workspace
Id string
- configuration
Destination
Astra Configuration - 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 Double - definition
Id String - The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
- destination
Id String - destination
Type String - name String
- Name of the destination e.g. dev-mysql-instance.
- resource
Allocation DestinationAstra Resource Allocation - actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
- workspace
Id String
- configuration
Destination
Astra Configuration - 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 number - definition
Id string - The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
- destination
Id string - destination
Type string - name string
- Name of the destination e.g. dev-mysql-instance.
- resource
Allocation DestinationAstra Resource Allocation - actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
- workspace
Id string
- configuration
Destination
Astra Configuration Args - 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.
- resource_
allocation DestinationAstra Resource Allocation Args - actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
- 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.
- created
At Number - definition
Id String - The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
- destination
Id String - destination
Type String - name String
- Name of the destination e.g. dev-mysql-instance.
- resource
Allocation Property Map - actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
- workspace
Id String
Supporting Types
DestinationAstraConfiguration, DestinationAstraConfigurationArgs
- Embedding
Destination
Astra Configuration Embedding - Embedding configuration
- Indexing
Destination
Astra Configuration Indexing - Astra DB gives developers the APIs, real-time data and ecosystem integrations to put accurate RAG and Gen AI apps with fewer hallucinations in production.
- Processing
Destination
Astra Configuration Processing - Omit
Raw boolText - 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
Destination
Astra Configuration Embedding - Embedding configuration
- Indexing
Destination
Astra Configuration Indexing - Astra DB gives developers the APIs, real-time data and ecosystem integrations to put accurate RAG and Gen AI apps with fewer hallucinations in production.
- Processing
Destination
Astra Configuration Processing - Omit
Raw boolText - 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
Destination
Astra Configuration Embedding - Embedding configuration
- indexing
Destination
Astra Configuration Indexing - Astra DB gives developers the APIs, real-time data and ecosystem integrations to put accurate RAG and Gen AI apps with fewer hallucinations in production.
- processing
Destination
Astra Configuration Processing - omit
Raw BooleanText - 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
Destination
Astra Configuration Embedding - Embedding configuration
- indexing
Destination
Astra Configuration Indexing - Astra DB gives developers the APIs, real-time data and ecosystem integrations to put accurate RAG and Gen AI apps with fewer hallucinations in production.
- processing
Destination
Astra Configuration Processing - omit
Raw booleanText - 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
Destination
Astra Configuration Embedding - Embedding configuration
- indexing
Destination
Astra Configuration Indexing - Astra DB gives developers the APIs, real-time data and ecosystem integrations to put accurate RAG and Gen AI apps with fewer hallucinations in production.
- processing
Destination
Astra Configuration Processing - omit_
raw_ booltext - 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
- Astra DB gives developers the APIs, real-time data and ecosystem integrations to put accurate RAG and Gen AI apps with fewer hallucinations in production.
- processing Property Map
- omit
Raw BooleanText - 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
DestinationAstraConfigurationEmbedding, DestinationAstraConfigurationEmbeddingArgs
- Azure
Open DestinationAi Astra Configuration Embedding Azure Open Ai - Use the Azure-hosted OpenAI API to embed text. This option is using the text-embedding-ada-002 model with 1536 embedding dimensions.
- Cohere
Destination
Astra Configuration Embedding Cohere - Use the Cohere API to embed text.
- Fake
Destination
Astra Configuration Embedding Fake - 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 DestinationAstra Configuration Embedding Open Ai - Use the OpenAI API to embed text. This option is using the text-embedding-ada-002 model with 1536 embedding dimensions.
- Open
Ai DestinationCompatible Astra Configuration Embedding Open Ai Compatible - Use a service that's compatible with the OpenAI API to embed text.
- Azure
Open DestinationAi Astra Configuration Embedding Azure Open Ai - Use the Azure-hosted OpenAI API to embed text. This option is using the text-embedding-ada-002 model with 1536 embedding dimensions.
- Cohere
Destination
Astra Configuration Embedding Cohere - Use the Cohere API to embed text.
- Fake
Destination
Astra Configuration Embedding Fake - 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 DestinationAstra Configuration Embedding Open Ai - Use the OpenAI API to embed text. This option is using the text-embedding-ada-002 model with 1536 embedding dimensions.
- Open
Ai DestinationCompatible Astra Configuration Embedding Open Ai Compatible - Use a service that's compatible with the OpenAI API to embed text.
- azure
Open DestinationAi Astra Configuration Embedding Azure Open Ai - Use the Azure-hosted OpenAI API to embed text. This option is using the text-embedding-ada-002 model with 1536 embedding dimensions.
- cohere
Destination
Astra Configuration Embedding Cohere - Use the Cohere API to embed text.
- fake
Destination
Astra Configuration Embedding Fake - 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 DestinationAstra Configuration Embedding Open Ai - Use the OpenAI API to embed text. This option is using the text-embedding-ada-002 model with 1536 embedding dimensions.
- open
Ai DestinationCompatible Astra Configuration Embedding Open Ai Compatible - Use a service that's compatible with the OpenAI API to embed text.
- azure
Open DestinationAi Astra Configuration Embedding Azure Open Ai - Use the Azure-hosted OpenAI API to embed text. This option is using the text-embedding-ada-002 model with 1536 embedding dimensions.
- cohere
Destination
Astra Configuration Embedding Cohere - Use the Cohere API to embed text.
- fake
Destination
Astra Configuration Embedding Fake - 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 DestinationAstra Configuration Embedding Open Ai - Use the OpenAI API to embed text. This option is using the text-embedding-ada-002 model with 1536 embedding dimensions.
- open
Ai DestinationCompatible Astra Configuration Embedding Open Ai Compatible - Use a service that's compatible with the OpenAI API to embed text.
- azure_
open_ Destinationai Astra Configuration Embedding Azure Open Ai - Use the Azure-hosted OpenAI API to embed text. This option is using the text-embedding-ada-002 model with 1536 embedding dimensions.
- cohere
Destination
Astra Configuration Embedding Cohere - Use the Cohere API to embed text.
- fake
Destination
Astra Configuration Embedding Fake - 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 DestinationAstra Configuration Embedding Open Ai - Use the OpenAI API to embed text. This option is using the text-embedding-ada-002 model with 1536 embedding dimensions.
- open_
ai_ Destinationcompatible Astra Configuration Embedding Open Ai Compatible - Use a service that's compatible with the OpenAI API to embed text.
- azure
Open Property MapAi - 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.
- open
Ai Property Map - Use the OpenAI API to embed text. This option is using the text-embedding-ada-002 model with 1536 embedding dimensions.
- open
Ai Property MapCompatible - Use a service that's compatible with the OpenAI API to embed text.
DestinationAstraConfigurationEmbeddingAzureOpenAi, DestinationAstraConfigurationEmbeddingAzureOpenAiArgs
- Api
Base 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
- Openai
Key string - The API key for your Azure OpenAI resource. You can find this in the Azure portal under your Azure OpenAI resource
- Api
Base 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
- Openai
Key string - The API key for your Azure OpenAI resource. You can find this in the Azure portal under your Azure OpenAI resource
- api
Base 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
- openai
Key String - The API key for your Azure OpenAI resource. You can find this in the Azure portal under your Azure OpenAI resource
- api
Base 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
- openai
Key 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
- api
Base 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
- openai
Key String - The API key for your Azure OpenAI resource. You can find this in the Azure portal under your Azure OpenAI resource
DestinationAstraConfigurationEmbeddingCohere, DestinationAstraConfigurationEmbeddingCohereArgs
- Cohere
Key string
- Cohere
Key string
- cohere
Key String
- cohere
Key string
- cohere_
key str
- cohere
Key String
DestinationAstraConfigurationEmbeddingOpenAi, DestinationAstraConfigurationEmbeddingOpenAiArgs
- Openai
Key string
- Openai
Key string
- openai
Key String
- openai
Key string
- openai_
key str
- openai
Key String
DestinationAstraConfigurationEmbeddingOpenAiCompatible, DestinationAstraConfigurationEmbeddingOpenAiCompatibleArgs
- Base
Url string - The base URL for your OpenAI-compatible service
- Dimensions double
- The number of dimensions the embedding model is generating
- Api
Key string - Default: ""
- Model
Name string - The name of the model to use for embedding. Default: "text-embedding-ada-002"
- Base
Url string - The base URL for your OpenAI-compatible service
- Dimensions float64
- The number of dimensions the embedding model is generating
- Api
Key string - Default: ""
- Model
Name string - The name of the model to use for embedding. Default: "text-embedding-ada-002"
- base
Url String - The base URL for your OpenAI-compatible service
- dimensions Double
- The number of dimensions the embedding model is generating
- api
Key String - Default: ""
- model
Name String - The name of the model to use for embedding. Default: "text-embedding-ada-002"
- base
Url string - The base URL for your OpenAI-compatible service
- dimensions number
- The number of dimensions the embedding model is generating
- api
Key string - Default: ""
- model
Name 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"
- base
Url String - The base URL for your OpenAI-compatible service
- dimensions Number
- The number of dimensions the embedding model is generating
- api
Key String - Default: ""
- model
Name String - The name of the model to use for embedding. Default: "text-embedding-ada-002"
DestinationAstraConfigurationIndexing, DestinationAstraConfigurationIndexingArgs
- Astra
Db stringApp Token - The application token authorizes a user to connect to a specific Astra DB database. It is created when the user clicks the Generate Token button on the Overview tab of the Database page in the Astra UI.
- Astra
Db stringEndpoint - The endpoint specifies which Astra DB database queries are sent to. It can be copied from the Database Details section of the Overview tab of the Database page in the Astra UI.
- Astra
Db stringKeyspace - Keyspaces (or Namespaces) serve as containers for organizing data within a database. You can create a new keyspace uisng the Data Explorer tab in the Astra UI. The keyspace default_keyspace is created for you when you create a Vector Database in Astra DB.
- Collection string
- Collections hold data. They are analagous to tables in traditional Cassandra terminology. This tool will create the collection with the provided name automatically if it does not already exist. Alternatively, you can create one thorugh the Data Explorer tab in the Astra UI.
- Astra
Db stringApp Token - The application token authorizes a user to connect to a specific Astra DB database. It is created when the user clicks the Generate Token button on the Overview tab of the Database page in the Astra UI.
- Astra
Db stringEndpoint - The endpoint specifies which Astra DB database queries are sent to. It can be copied from the Database Details section of the Overview tab of the Database page in the Astra UI.
- Astra
Db stringKeyspace - Keyspaces (or Namespaces) serve as containers for organizing data within a database. You can create a new keyspace uisng the Data Explorer tab in the Astra UI. The keyspace default_keyspace is created for you when you create a Vector Database in Astra DB.
- Collection string
- Collections hold data. They are analagous to tables in traditional Cassandra terminology. This tool will create the collection with the provided name automatically if it does not already exist. Alternatively, you can create one thorugh the Data Explorer tab in the Astra UI.
- astra
Db StringApp Token - The application token authorizes a user to connect to a specific Astra DB database. It is created when the user clicks the Generate Token button on the Overview tab of the Database page in the Astra UI.
- astra
Db StringEndpoint - The endpoint specifies which Astra DB database queries are sent to. It can be copied from the Database Details section of the Overview tab of the Database page in the Astra UI.
- astra
Db StringKeyspace - Keyspaces (or Namespaces) serve as containers for organizing data within a database. You can create a new keyspace uisng the Data Explorer tab in the Astra UI. The keyspace default_keyspace is created for you when you create a Vector Database in Astra DB.
- collection String
- Collections hold data. They are analagous to tables in traditional Cassandra terminology. This tool will create the collection with the provided name automatically if it does not already exist. Alternatively, you can create one thorugh the Data Explorer tab in the Astra UI.
- astra
Db stringApp Token - The application token authorizes a user to connect to a specific Astra DB database. It is created when the user clicks the Generate Token button on the Overview tab of the Database page in the Astra UI.
- astra
Db stringEndpoint - The endpoint specifies which Astra DB database queries are sent to. It can be copied from the Database Details section of the Overview tab of the Database page in the Astra UI.
- astra
Db stringKeyspace - Keyspaces (or Namespaces) serve as containers for organizing data within a database. You can create a new keyspace uisng the Data Explorer tab in the Astra UI. The keyspace default_keyspace is created for you when you create a Vector Database in Astra DB.
- collection string
- Collections hold data. They are analagous to tables in traditional Cassandra terminology. This tool will create the collection with the provided name automatically if it does not already exist. Alternatively, you can create one thorugh the Data Explorer tab in the Astra UI.
- astra_
db_ strapp_ token - The application token authorizes a user to connect to a specific Astra DB database. It is created when the user clicks the Generate Token button on the Overview tab of the Database page in the Astra UI.
- astra_
db_ strendpoint - The endpoint specifies which Astra DB database queries are sent to. It can be copied from the Database Details section of the Overview tab of the Database page in the Astra UI.
- astra_
db_ strkeyspace - Keyspaces (or Namespaces) serve as containers for organizing data within a database. You can create a new keyspace uisng the Data Explorer tab in the Astra UI. The keyspace default_keyspace is created for you when you create a Vector Database in Astra DB.
- collection str
- Collections hold data. They are analagous to tables in traditional Cassandra terminology. This tool will create the collection with the provided name automatically if it does not already exist. Alternatively, you can create one thorugh the Data Explorer tab in the Astra UI.
- astra
Db StringApp Token - The application token authorizes a user to connect to a specific Astra DB database. It is created when the user clicks the Generate Token button on the Overview tab of the Database page in the Astra UI.
- astra
Db StringEndpoint - The endpoint specifies which Astra DB database queries are sent to. It can be copied from the Database Details section of the Overview tab of the Database page in the Astra UI.
- astra
Db StringKeyspace - Keyspaces (or Namespaces) serve as containers for organizing data within a database. You can create a new keyspace uisng the Data Explorer tab in the Astra UI. The keyspace default_keyspace is created for you when you create a Vector Database in Astra DB.
- collection String
- Collections hold data. They are analagous to tables in traditional Cassandra terminology. This tool will create the collection with the provided name automatically if it does not already exist. Alternatively, you can create one thorugh the Data Explorer tab in the Astra UI.
DestinationAstraConfigurationProcessing, DestinationAstraConfigurationProcessingArgs
- Chunk
Size double - 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 double - Size of overlap between chunks in tokens to store in vector store to better capture relevant context. Default: 0
- Field
Name List<DestinationMappings Astra Configuration Processing Field Name Mapping> - List of fields to rename. Not applicable for nested fields, but can be used to rename fields already flattened via dot notation.
- Metadata
Fields 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 thename
field in theuser
object. It's also possible to use wildcards to access all fields in an object, e.g.users.*.name
will access allnames
fields in all entries of theusers
array. When specifying nested paths, all matching values are flattened into an array set to a field named by the path. - Text
Fields 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 thename
field in theuser
object. It's also possible to use wildcards to access all fields in an object, e.g.users.*.name
will access allnames
fields in all entries of theusers
array. - Text
Splitter DestinationAstra Configuration Processing Text Splitter - Split text fields into chunks based on the specified method.
- Chunk
Size float64 - 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 float64 - Size of overlap between chunks in tokens to store in vector store to better capture relevant context. Default: 0
- Field
Name []DestinationMappings Astra Configuration Processing Field Name Mapping - List of fields to rename. Not applicable for nested fields, but can be used to rename fields already flattened via dot notation.
- Metadata
Fields []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 thename
field in theuser
object. It's also possible to use wildcards to access all fields in an object, e.g.users.*.name
will access allnames
fields in all entries of theusers
array. When specifying nested paths, all matching values are flattened into an array set to a field named by the path. - Text
Fields []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 thename
field in theuser
object. It's also possible to use wildcards to access all fields in an object, e.g.users.*.name
will access allnames
fields in all entries of theusers
array. - Text
Splitter DestinationAstra Configuration Processing Text Splitter - Split text fields into chunks based on the specified method.
- chunk
Size Double - 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 Double - Size of overlap between chunks in tokens to store in vector store to better capture relevant context. Default: 0
- field
Name List<DestinationMappings Astra Configuration Processing Field Name Mapping> - List of fields to rename. Not applicable for nested fields, but can be used to rename fields already flattened via dot notation.
- metadata
Fields 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 thename
field in theuser
object. It's also possible to use wildcards to access all fields in an object, e.g.users.*.name
will access allnames
fields in all entries of theusers
array. When specifying nested paths, all matching values are flattened into an array set to a field named by the path. - text
Fields 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 thename
field in theuser
object. It's also possible to use wildcards to access all fields in an object, e.g.users.*.name
will access allnames
fields in all entries of theusers
array. - text
Splitter DestinationAstra Configuration Processing Text Splitter - Split text fields into chunks based on the specified method.
- chunk
Size number - 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 number - Size of overlap between chunks in tokens to store in vector store to better capture relevant context. Default: 0
- field
Name DestinationMappings Astra Configuration Processing Field Name Mapping[] - List of fields to rename. Not applicable for nested fields, but can be used to rename fields already flattened via dot notation.
- metadata
Fields 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 thename
field in theuser
object. It's also possible to use wildcards to access all fields in an object, e.g.users.*.name
will access allnames
fields in all entries of theusers
array. When specifying nested paths, all matching values are flattened into an array set to a field named by the path. - text
Fields 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 thename
field in theuser
object. It's also possible to use wildcards to access all fields in an object, e.g.users.*.name
will access allnames
fields in all entries of theusers
array. - text
Splitter DestinationAstra Configuration Processing Text Splitter - 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_ Sequence[Destinationmappings Astra Configuration Processing Field Name Mapping] - 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 thename
field in theuser
object. It's also possible to use wildcards to access all fields in an object, e.g.users.*.name
will access allnames
fields in all entries of theusers
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 thename
field in theuser
object. It's also possible to use wildcards to access all fields in an object, e.g.users.*.name
will access allnames
fields in all entries of theusers
array. - text_
splitter DestinationAstra Configuration Processing Text Splitter - Split text fields into chunks based on the specified method.
- chunk
Size Number - 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 Number - Size of overlap between chunks in tokens to store in vector store to better capture relevant context. Default: 0
- field
Name List<Property Map>Mappings - List of fields to rename. Not applicable for nested fields, but can be used to rename fields already flattened via dot notation.
- metadata
Fields 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 thename
field in theuser
object. It's also possible to use wildcards to access all fields in an object, e.g.users.*.name
will access allnames
fields in all entries of theusers
array. When specifying nested paths, all matching values are flattened into an array set to a field named by the path. - text
Fields 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 thename
field in theuser
object. It's also possible to use wildcards to access all fields in an object, e.g.users.*.name
will access allnames
fields in all entries of theusers
array. - text
Splitter Property Map - Split text fields into chunks based on the specified method.
DestinationAstraConfigurationProcessingFieldNameMapping, DestinationAstraConfigurationProcessingFieldNameMappingArgs
- from_
field str - The field name in the source
- to_
field str - The field name to use in the destination
DestinationAstraConfigurationProcessingTextSplitter, DestinationAstraConfigurationProcessingTextSplitterArgs
- By
Markdown DestinationHeader Astra Configuration Processing Text Splitter By Markdown Header - 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 DestinationLanguage Astra Configuration Processing Text Splitter By Programming Language - Split the text by suitable delimiters based on the programming language. This is useful for splitting code into chunks.
- By
Separator DestinationAstra Configuration Processing Text Splitter By Separator - 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 DestinationHeader Astra Configuration Processing Text Splitter By Markdown Header - 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 DestinationLanguage Astra Configuration Processing Text Splitter By Programming Language - Split the text by suitable delimiters based on the programming language. This is useful for splitting code into chunks.
- By
Separator DestinationAstra Configuration Processing Text Splitter By Separator - 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 DestinationHeader Astra Configuration Processing Text Splitter By Markdown Header - 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 DestinationLanguage Astra Configuration Processing Text Splitter By Programming Language - Split the text by suitable delimiters based on the programming language. This is useful for splitting code into chunks.
- by
Separator DestinationAstra Configuration Processing Text Splitter By Separator - 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 DestinationHeader Astra Configuration Processing Text Splitter By Markdown Header - 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 DestinationLanguage Astra Configuration Processing Text Splitter By Programming Language - Split the text by suitable delimiters based on the programming language. This is useful for splitting code into chunks.
- by
Separator DestinationAstra Configuration Processing Text Splitter By Separator - 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_ Destinationheader Astra Configuration Processing Text Splitter By Markdown Header - 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_ Destinationlanguage Astra Configuration Processing Text Splitter By Programming Language - Split the text by suitable delimiters based on the programming language. This is useful for splitting code into chunks.
- by_
separator DestinationAstra Configuration Processing Text Splitter By Separator - 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 Property MapHeader - 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 Property MapLanguage - Split the text by suitable delimiters based on the programming language. This is useful for splitting code into chunks.
- by
Separator 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.
DestinationAstraConfigurationProcessingTextSplitterByMarkdownHeader, DestinationAstraConfigurationProcessingTextSplitterByMarkdownHeaderArgs
- Split
Level double - 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 float64 - 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 Double - 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 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
- split
Level Number - Level of markdown headers to split text fields by. Headings down to the specified level will be used as split points. Default: 1
DestinationAstraConfigurationProcessingTextSplitterByProgrammingLanguage, DestinationAstraConfigurationProcessingTextSplitterByProgrammingLanguageArgs
- 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"]
DestinationAstraConfigurationProcessingTextSplitterBySeparator, DestinationAstraConfigurationProcessingTextSplitterBySeparatorArgs
- Keep
Separator 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".
- Keep
Separator 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".
- keep
Separator 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".
- keep
Separator 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".
- keep
Separator 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".
DestinationAstraResourceAllocation, DestinationAstraResourceAllocationArgs
- Default
Destination
Astra Resource Allocation Default - optional resource requirements to run workers (blank for unbounded allocations)
- Job
Specifics List<DestinationAstra Resource Allocation Job Specific>
- Default
Destination
Astra Resource Allocation Default - optional resource requirements to run workers (blank for unbounded allocations)
- Job
Specifics []DestinationAstra Resource Allocation Job Specific
- default_
Destination
Astra Resource Allocation Default - optional resource requirements to run workers (blank for unbounded allocations)
- job
Specifics List<DestinationAstra Resource Allocation Job Specific>
- default
Destination
Astra Resource Allocation Default - optional resource requirements to run workers (blank for unbounded allocations)
- job
Specifics DestinationAstra Resource Allocation Job Specific[]
- default
Destination
Astra Resource Allocation Default - optional resource requirements to run workers (blank for unbounded allocations)
- job_
specifics Sequence[DestinationAstra Resource Allocation Job Specific]
- default Property Map
- optional resource requirements to run workers (blank for unbounded allocations)
- job
Specifics List<Property Map>
DestinationAstraResourceAllocationDefault, DestinationAstraResourceAllocationDefaultArgs
- Cpu
Limit string - Cpu
Request string - Ephemeral
Storage stringLimit - Ephemeral
Storage stringRequest - Memory
Limit string - Memory
Request string
- Cpu
Limit string - Cpu
Request string - Ephemeral
Storage stringLimit - Ephemeral
Storage stringRequest - Memory
Limit string - Memory
Request string
- cpu
Limit String - cpu
Request String - ephemeral
Storage StringLimit - ephemeral
Storage StringRequest - memory
Limit String - memory
Request String
- cpu
Limit string - cpu
Request string - ephemeral
Storage stringLimit - ephemeral
Storage stringRequest - memory
Limit string - memory
Request string
- cpu_
limit str - cpu_
request str - ephemeral_
storage_ strlimit - ephemeral_
storage_ strrequest - memory_
limit str - memory_
request str
- cpu
Limit String - cpu
Request String - ephemeral
Storage StringLimit - ephemeral
Storage StringRequest - memory
Limit String - memory
Request String
DestinationAstraResourceAllocationJobSpecific, DestinationAstraResourceAllocationJobSpecificArgs
- Job
Type string - enum that describes the different types of jobs that the platform runs. must be one of ["getspec", "checkconnection", "discoverschema", "sync", "resetconnection", "connection_updater", "replicate"]
- Resource
Requirements DestinationAstra Resource Allocation Job Specific Resource Requirements - optional resource requirements to run workers (blank for unbounded allocations)
- Job
Type string - enum that describes the different types of jobs that the platform runs. must be one of ["getspec", "checkconnection", "discoverschema", "sync", "resetconnection", "connection_updater", "replicate"]
- Resource
Requirements DestinationAstra Resource Allocation Job Specific Resource Requirements - optional resource requirements to run workers (blank for unbounded allocations)
- job
Type String - enum that describes the different types of jobs that the platform runs. must be one of ["getspec", "checkconnection", "discoverschema", "sync", "resetconnection", "connection_updater", "replicate"]
- resource
Requirements DestinationAstra Resource Allocation Job Specific Resource Requirements - optional resource requirements to run workers (blank for unbounded allocations)
- job
Type string - enum that describes the different types of jobs that the platform runs. must be one of ["getspec", "checkconnection", "discoverschema", "sync", "resetconnection", "connection_updater", "replicate"]
- resource
Requirements DestinationAstra Resource Allocation Job Specific Resource Requirements - optional resource requirements to run workers (blank for unbounded allocations)
- job_
type str - enum that describes the different types of jobs that the platform runs. must be one of ["getspec", "checkconnection", "discoverschema", "sync", "resetconnection", "connection_updater", "replicate"]
- resource_
requirements DestinationAstra Resource Allocation Job Specific Resource Requirements - optional resource requirements to run workers (blank for unbounded allocations)
- job
Type String - enum that describes the different types of jobs that the platform runs. must be one of ["getspec", "checkconnection", "discoverschema", "sync", "resetconnection", "connection_updater", "replicate"]
- resource
Requirements Property Map - optional resource requirements to run workers (blank for unbounded allocations)
DestinationAstraResourceAllocationJobSpecificResourceRequirements, DestinationAstraResourceAllocationJobSpecificResourceRequirementsArgs
- Cpu
Limit string - Cpu
Request string - Ephemeral
Storage stringLimit - Ephemeral
Storage stringRequest - Memory
Limit string - Memory
Request string
- Cpu
Limit string - Cpu
Request string - Ephemeral
Storage stringLimit - Ephemeral
Storage stringRequest - Memory
Limit string - Memory
Request string
- cpu
Limit String - cpu
Request String - ephemeral
Storage StringLimit - ephemeral
Storage StringRequest - memory
Limit String - memory
Request String
- cpu
Limit string - cpu
Request string - ephemeral
Storage stringLimit - ephemeral
Storage stringRequest - memory
Limit string - memory
Request string
- cpu_
limit str - cpu_
request str - ephemeral_
storage_ strlimit - ephemeral_
storage_ strrequest - memory_
limit str - memory_
request str
- cpu
Limit String - cpu
Request String - ephemeral
Storage StringLimit - ephemeral
Storage StringRequest - memory
Limit String - memory
Request String
Import
$ pulumi import airbyte:index/destinationAstra:DestinationAstra my_airbyte_destination_astra ""
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.