airbyte.DestinationMilvus
Explore with Pulumi AI
DestinationMilvus 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.DestinationMilvus;
import com.pulumi.airbyte.DestinationMilvusArgs;
import com.pulumi.airbyte.inputs.DestinationMilvusConfigurationArgs;
import com.pulumi.airbyte.inputs.DestinationMilvusConfigurationEmbeddingArgs;
import com.pulumi.airbyte.inputs.DestinationMilvusConfigurationEmbeddingAzureOpenAiArgs;
import com.pulumi.airbyte.inputs.DestinationMilvusConfigurationEmbeddingCohereArgs;
import com.pulumi.airbyte.inputs.DestinationMilvusConfigurationEmbeddingFakeArgs;
import com.pulumi.airbyte.inputs.DestinationMilvusConfigurationEmbeddingOpenAiArgs;
import com.pulumi.airbyte.inputs.DestinationMilvusConfigurationEmbeddingOpenAiCompatibleArgs;
import com.pulumi.airbyte.inputs.DestinationMilvusConfigurationIndexingArgs;
import com.pulumi.airbyte.inputs.DestinationMilvusConfigurationIndexingAuthArgs;
import com.pulumi.airbyte.inputs.DestinationMilvusConfigurationIndexingAuthApiTokenArgs;
import com.pulumi.airbyte.inputs.DestinationMilvusConfigurationIndexingAuthNoAuthArgs;
import com.pulumi.airbyte.inputs.DestinationMilvusConfigurationIndexingAuthUsernamePasswordArgs;
import com.pulumi.airbyte.inputs.DestinationMilvusConfigurationProcessingArgs;
import com.pulumi.airbyte.inputs.DestinationMilvusConfigurationProcessingTextSplitterArgs;
import com.pulumi.airbyte.inputs.DestinationMilvusConfigurationProcessingTextSplitterByMarkdownHeaderArgs;
import com.pulumi.airbyte.inputs.DestinationMilvusConfigurationProcessingTextSplitterByProgrammingLanguageArgs;
import com.pulumi.airbyte.inputs.DestinationMilvusConfigurationProcessingTextSplitterBySeparatorArgs;
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 myDestinationMilvus = new DestinationMilvus("myDestinationMilvus", DestinationMilvusArgs.builder()
.configuration(DestinationMilvusConfigurationArgs.builder()
.embedding(DestinationMilvusConfigurationEmbeddingArgs.builder()
.azureOpenAi(DestinationMilvusConfigurationEmbeddingAzureOpenAiArgs.builder()
.apiBase("https://your-resource-name.openai.azure.com")
.deployment("your-resource-name")
.openaiKey("...my_openai_key...")
.build())
.cohere(DestinationMilvusConfigurationEmbeddingCohereArgs.builder()
.cohereKey("...my_cohere_key...")
.build())
.fake()
.openAi(DestinationMilvusConfigurationEmbeddingOpenAiArgs.builder()
.openaiKey("...my_openai_key...")
.build())
.openAiCompatible(DestinationMilvusConfigurationEmbeddingOpenAiCompatibleArgs.builder()
.apiKey("...my_api_key...")
.baseUrl("https://your-service-name.com")
.dimensions(1536)
.modelName("text-embedding-ada-002")
.build())
.build())
.indexing(DestinationMilvusConfigurationIndexingArgs.builder()
.auth(DestinationMilvusConfigurationIndexingAuthArgs.builder()
.apiToken(DestinationMilvusConfigurationIndexingAuthApiTokenArgs.builder()
.token("...my_token...")
.build())
.noAuth()
.usernamePassword(DestinationMilvusConfigurationIndexingAuthUsernamePasswordArgs.builder()
.password("...my_password...")
.username("...my_username...")
.build())
.build())
.collection("...my_collection...")
.db("...my_db...")
.host("https://my-instance.zone.zillizcloud.com")
.textField("...my_text_field...")
.vectorField("...my_vector_field...")
.build())
.omit_raw_text(false)
.processing(DestinationMilvusConfigurationProcessingArgs.builder()
.chunkOverlap(4)
.chunkSize(7640)
.fieldNameMappings(DestinationMilvusConfigurationProcessingFieldNameMappingArgs.builder()
.fromField("...my_from_field...")
.toField("...my_to_field...")
.build())
.metadataFields("...")
.textFields("...")
.textSplitter(DestinationMilvusConfigurationProcessingTextSplitterArgs.builder()
.byMarkdownHeader(DestinationMilvusConfigurationProcessingTextSplitterByMarkdownHeaderArgs.builder()
.splitLevel(1)
.build())
.byProgrammingLanguage(DestinationMilvusConfigurationProcessingTextSplitterByProgrammingLanguageArgs.builder()
.language("ruby")
.build())
.bySeparator(DestinationMilvusConfigurationProcessingTextSplitterBySeparatorArgs.builder()
.keepSeparator(true)
.separators("...")
.build())
.build())
.build())
.build())
.definitionId("ef42b409-b99a-4d1e-b7d4-f74e61200199")
.workspaceId("1da00420-023b-48f0-a8d8-4c9079cc6179")
.build());
}
}
resources:
myDestinationMilvus:
type: airbyte:DestinationMilvus
properties:
configuration:
embedding:
azureOpenAi:
apiBase: https://your-resource-name.openai.azure.com
deployment: your-resource-name
openaiKey: '...my_openai_key...'
cohere:
cohereKey: '...my_cohere_key...'
fake: {}
openAi:
openaiKey: '...my_openai_key...'
openAiCompatible:
apiKey: '...my_api_key...'
baseUrl: https://your-service-name.com
dimensions: 1536
modelName: text-embedding-ada-002
indexing:
auth:
apiToken:
token: '...my_token...'
noAuth: {}
usernamePassword:
password: '...my_password...'
username: '...my_username...'
collection: '...my_collection...'
db: '...my_db...'
host: https://my-instance.zone.zillizcloud.com
textField: '...my_text_field...'
vectorField: '...my_vector_field...'
omit_raw_text: false
processing:
chunkOverlap: 4
chunkSize: 7640
fieldNameMappings:
- fromField: '...my_from_field...'
toField: '...my_to_field...'
metadataFields:
- '...'
textFields:
- '...'
textSplitter:
byMarkdownHeader:
splitLevel: 1
byProgrammingLanguage:
language: ruby
bySeparator:
keepSeparator: true
separators:
- '...'
definitionId: ef42b409-b99a-4d1e-b7d4-f74e61200199
workspaceId: 1da00420-023b-48f0-a8d8-4c9079cc6179
Create DestinationMilvus Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new DestinationMilvus(name: string, args: DestinationMilvusArgs, opts?: CustomResourceOptions);
@overload
def DestinationMilvus(resource_name: str,
args: DestinationMilvusArgs,
opts: Optional[ResourceOptions] = None)
@overload
def DestinationMilvus(resource_name: str,
opts: Optional[ResourceOptions] = None,
configuration: Optional[DestinationMilvusConfigurationArgs] = None,
workspace_id: Optional[str] = None,
definition_id: Optional[str] = None,
name: Optional[str] = None)
func NewDestinationMilvus(ctx *Context, name string, args DestinationMilvusArgs, opts ...ResourceOption) (*DestinationMilvus, error)
public DestinationMilvus(string name, DestinationMilvusArgs args, CustomResourceOptions? opts = null)
public DestinationMilvus(String name, DestinationMilvusArgs args)
public DestinationMilvus(String name, DestinationMilvusArgs args, CustomResourceOptions options)
type: airbyte:DestinationMilvus
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 DestinationMilvusArgs
- 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 DestinationMilvusArgs
- 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 DestinationMilvusArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args DestinationMilvusArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args DestinationMilvusArgs
- 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 destinationMilvusResource = new Airbyte.DestinationMilvus("destinationMilvusResource", new()
{
Configuration = new Airbyte.Inputs.DestinationMilvusConfigurationArgs
{
Embedding = new Airbyte.Inputs.DestinationMilvusConfigurationEmbeddingArgs
{
AzureOpenAi = new Airbyte.Inputs.DestinationMilvusConfigurationEmbeddingAzureOpenAiArgs
{
ApiBase = "string",
Deployment = "string",
OpenaiKey = "string",
},
Cohere = new Airbyte.Inputs.DestinationMilvusConfigurationEmbeddingCohereArgs
{
CohereKey = "string",
},
Fake = null,
OpenAi = new Airbyte.Inputs.DestinationMilvusConfigurationEmbeddingOpenAiArgs
{
OpenaiKey = "string",
},
OpenAiCompatible = new Airbyte.Inputs.DestinationMilvusConfigurationEmbeddingOpenAiCompatibleArgs
{
BaseUrl = "string",
Dimensions = 0,
ApiKey = "string",
ModelName = "string",
},
},
Indexing = new Airbyte.Inputs.DestinationMilvusConfigurationIndexingArgs
{
Auth = new Airbyte.Inputs.DestinationMilvusConfigurationIndexingAuthArgs
{
ApiToken = new Airbyte.Inputs.DestinationMilvusConfigurationIndexingAuthApiTokenArgs
{
Token = "string",
},
NoAuth = null,
UsernamePassword = new Airbyte.Inputs.DestinationMilvusConfigurationIndexingAuthUsernamePasswordArgs
{
Password = "string",
Username = "string",
},
},
Collection = "string",
Host = "string",
Db = "string",
TextField = "string",
VectorField = "string",
},
Processing = new Airbyte.Inputs.DestinationMilvusConfigurationProcessingArgs
{
ChunkSize = 0,
ChunkOverlap = 0,
FieldNameMappings = new[]
{
new Airbyte.Inputs.DestinationMilvusConfigurationProcessingFieldNameMappingArgs
{
FromField = "string",
ToField = "string",
},
},
MetadataFields = new[]
{
"string",
},
TextFields = new[]
{
"string",
},
TextSplitter = new Airbyte.Inputs.DestinationMilvusConfigurationProcessingTextSplitterArgs
{
ByMarkdownHeader = new Airbyte.Inputs.DestinationMilvusConfigurationProcessingTextSplitterByMarkdownHeaderArgs
{
SplitLevel = 0,
},
ByProgrammingLanguage = new Airbyte.Inputs.DestinationMilvusConfigurationProcessingTextSplitterByProgrammingLanguageArgs
{
Language = "string",
},
BySeparator = new Airbyte.Inputs.DestinationMilvusConfigurationProcessingTextSplitterBySeparatorArgs
{
KeepSeparator = false,
Separators = new[]
{
"string",
},
},
},
},
OmitRawText = false,
},
WorkspaceId = "string",
DefinitionId = "string",
Name = "string",
});
example, err := airbyte.NewDestinationMilvus(ctx, "destinationMilvusResource", &airbyte.DestinationMilvusArgs{
Configuration: &.DestinationMilvusConfigurationArgs{
Embedding: &.DestinationMilvusConfigurationEmbeddingArgs{
AzureOpenAi: &.DestinationMilvusConfigurationEmbeddingAzureOpenAiArgs{
ApiBase: pulumi.String("string"),
Deployment: pulumi.String("string"),
OpenaiKey: pulumi.String("string"),
},
Cohere: &.DestinationMilvusConfigurationEmbeddingCohereArgs{
CohereKey: pulumi.String("string"),
},
Fake: &.DestinationMilvusConfigurationEmbeddingFakeArgs{
},
OpenAi: &.DestinationMilvusConfigurationEmbeddingOpenAiArgs{
OpenaiKey: pulumi.String("string"),
},
OpenAiCompatible: &.DestinationMilvusConfigurationEmbeddingOpenAiCompatibleArgs{
BaseUrl: pulumi.String("string"),
Dimensions: pulumi.Float64(0),
ApiKey: pulumi.String("string"),
ModelName: pulumi.String("string"),
},
},
Indexing: &.DestinationMilvusConfigurationIndexingArgs{
Auth: &.DestinationMilvusConfigurationIndexingAuthArgs{
ApiToken: &.DestinationMilvusConfigurationIndexingAuthApiTokenArgs{
Token: pulumi.String("string"),
},
NoAuth: &.DestinationMilvusConfigurationIndexingAuthNoAuthArgs{
},
UsernamePassword: &.DestinationMilvusConfigurationIndexingAuthUsernamePasswordArgs{
Password: pulumi.String("string"),
Username: pulumi.String("string"),
},
},
Collection: pulumi.String("string"),
Host: pulumi.String("string"),
Db: pulumi.String("string"),
TextField: pulumi.String("string"),
VectorField: pulumi.String("string"),
},
Processing: &.DestinationMilvusConfigurationProcessingArgs{
ChunkSize: pulumi.Float64(0),
ChunkOverlap: pulumi.Float64(0),
FieldNameMappings: .DestinationMilvusConfigurationProcessingFieldNameMappingArray{
&.DestinationMilvusConfigurationProcessingFieldNameMappingArgs{
FromField: pulumi.String("string"),
ToField: pulumi.String("string"),
},
},
MetadataFields: pulumi.StringArray{
pulumi.String("string"),
},
TextFields: pulumi.StringArray{
pulumi.String("string"),
},
TextSplitter: &.DestinationMilvusConfigurationProcessingTextSplitterArgs{
ByMarkdownHeader: &.DestinationMilvusConfigurationProcessingTextSplitterByMarkdownHeaderArgs{
SplitLevel: pulumi.Float64(0),
},
ByProgrammingLanguage: &.DestinationMilvusConfigurationProcessingTextSplitterByProgrammingLanguageArgs{
Language: pulumi.String("string"),
},
BySeparator: &.DestinationMilvusConfigurationProcessingTextSplitterBySeparatorArgs{
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 destinationMilvusResource = new DestinationMilvus("destinationMilvusResource", DestinationMilvusArgs.builder()
.configuration(DestinationMilvusConfigurationArgs.builder()
.embedding(DestinationMilvusConfigurationEmbeddingArgs.builder()
.azureOpenAi(DestinationMilvusConfigurationEmbeddingAzureOpenAiArgs.builder()
.apiBase("string")
.deployment("string")
.openaiKey("string")
.build())
.cohere(DestinationMilvusConfigurationEmbeddingCohereArgs.builder()
.cohereKey("string")
.build())
.fake()
.openAi(DestinationMilvusConfigurationEmbeddingOpenAiArgs.builder()
.openaiKey("string")
.build())
.openAiCompatible(DestinationMilvusConfigurationEmbeddingOpenAiCompatibleArgs.builder()
.baseUrl("string")
.dimensions(0)
.apiKey("string")
.modelName("string")
.build())
.build())
.indexing(DestinationMilvusConfigurationIndexingArgs.builder()
.auth(DestinationMilvusConfigurationIndexingAuthArgs.builder()
.apiToken(DestinationMilvusConfigurationIndexingAuthApiTokenArgs.builder()
.token("string")
.build())
.noAuth()
.usernamePassword(DestinationMilvusConfigurationIndexingAuthUsernamePasswordArgs.builder()
.password("string")
.username("string")
.build())
.build())
.collection("string")
.host("string")
.db("string")
.textField("string")
.vectorField("string")
.build())
.processing(DestinationMilvusConfigurationProcessingArgs.builder()
.chunkSize(0)
.chunkOverlap(0)
.fieldNameMappings(DestinationMilvusConfigurationProcessingFieldNameMappingArgs.builder()
.fromField("string")
.toField("string")
.build())
.metadataFields("string")
.textFields("string")
.textSplitter(DestinationMilvusConfigurationProcessingTextSplitterArgs.builder()
.byMarkdownHeader(DestinationMilvusConfigurationProcessingTextSplitterByMarkdownHeaderArgs.builder()
.splitLevel(0)
.build())
.byProgrammingLanguage(DestinationMilvusConfigurationProcessingTextSplitterByProgrammingLanguageArgs.builder()
.language("string")
.build())
.bySeparator(DestinationMilvusConfigurationProcessingTextSplitterBySeparatorArgs.builder()
.keepSeparator(false)
.separators("string")
.build())
.build())
.build())
.omitRawText(false)
.build())
.workspaceId("string")
.definitionId("string")
.name("string")
.build());
destination_milvus_resource = airbyte.DestinationMilvus("destinationMilvusResource",
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": {
"auth": {
"api_token": {
"token": "string",
},
"no_auth": {},
"username_password": {
"password": "string",
"username": "string",
},
},
"collection": "string",
"host": "string",
"db": "string",
"text_field": "string",
"vector_field": "string",
},
"processing": {
"chunk_size": 0,
"chunk_overlap": 0,
"field_name_mappings": [{
"from_field": "string",
"to_field": "string",
}],
"metadata_fields": ["string"],
"text_fields": ["string"],
"text_splitter": {
"by_markdown_header": {
"split_level": 0,
},
"by_programming_language": {
"language": "string",
},
"by_separator": {
"keep_separator": False,
"separators": ["string"],
},
},
},
"omit_raw_text": False,
},
workspace_id="string",
definition_id="string",
name="string")
const destinationMilvusResource = new airbyte.DestinationMilvus("destinationMilvusResource", {
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: {
auth: {
apiToken: {
token: "string",
},
noAuth: {},
usernamePassword: {
password: "string",
username: "string",
},
},
collection: "string",
host: "string",
db: "string",
textField: "string",
vectorField: "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:DestinationMilvus
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:
auth:
apiToken:
token: string
noAuth: {}
usernamePassword:
password: string
username: string
collection: string
db: string
host: string
textField: string
vectorField: 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
DestinationMilvus 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 DestinationMilvus resource accepts the following input properties:
- Configuration
Destination
Milvus 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
Milvus 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
Milvus 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
Milvus 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
Milvus 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 DestinationMilvus 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.
- Created
At float64 - Destination
Id string - Destination
Type string - Id string
- The provider-assigned unique ID for this managed resource.
- created
At Double - destination
Id String - destination
Type String - id String
- The provider-assigned unique ID for this managed resource.
- created
At number - destination
Id string - destination
Type string - id string
- The provider-assigned unique ID for this managed resource.
- created_
at float - destination_
id str - destination_
type str - id str
- The provider-assigned unique ID for this managed resource.
- created
At Number - destination
Id String - destination
Type String - id String
- The provider-assigned unique ID for this managed resource.
Look up Existing DestinationMilvus Resource
Get an existing DestinationMilvus 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?: DestinationMilvusState, opts?: CustomResourceOptions): DestinationMilvus
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
configuration: Optional[DestinationMilvusConfigurationArgs] = None,
created_at: Optional[float] = None,
definition_id: Optional[str] = None,
destination_id: Optional[str] = None,
destination_type: Optional[str] = None,
name: Optional[str] = None,
workspace_id: Optional[str] = None) -> DestinationMilvus
func GetDestinationMilvus(ctx *Context, name string, id IDInput, state *DestinationMilvusState, opts ...ResourceOption) (*DestinationMilvus, error)
public static DestinationMilvus Get(string name, Input<string> id, DestinationMilvusState? state, CustomResourceOptions? opts = null)
public static DestinationMilvus get(String name, Output<String> id, DestinationMilvusState state, CustomResourceOptions options)
resources: _: type: airbyte:DestinationMilvus 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
Milvus 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.
- Workspace
Id string
- Configuration
Destination
Milvus 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.
- Workspace
Id string
- configuration
Destination
Milvus 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.
- workspace
Id String
- configuration
Destination
Milvus 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.
- workspace
Id string
- configuration
Destination
Milvus 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.
- 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.
- workspace
Id String
Supporting Types
DestinationMilvusConfiguration, DestinationMilvusConfigurationArgs
- Embedding
Destination
Milvus Configuration Embedding - Embedding configuration
- Indexing
Destination
Milvus Configuration Indexing - Indexing configuration
- Processing
Destination
Milvus 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
Milvus Configuration Embedding - Embedding configuration
- Indexing
Destination
Milvus Configuration Indexing - Indexing configuration
- Processing
Destination
Milvus 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
Milvus Configuration Embedding - Embedding configuration
- indexing
Destination
Milvus Configuration Indexing - Indexing configuration
- processing
Destination
Milvus 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
Milvus Configuration Embedding - Embedding configuration
- indexing
Destination
Milvus Configuration Indexing - Indexing configuration
- processing
Destination
Milvus 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
Milvus Configuration Embedding - Embedding configuration
- indexing
Destination
Milvus Configuration Indexing - Indexing configuration
- processing
Destination
Milvus 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
- Indexing configuration
- 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
DestinationMilvusConfigurationEmbedding, DestinationMilvusConfigurationEmbeddingArgs
- Azure
Open DestinationAi Milvus 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
Milvus Configuration Embedding Cohere - Use the Cohere API to embed text.
- Fake
Destination
Milvus 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 DestinationMilvus 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 Milvus Configuration Embedding Open Ai Compatible - Use a service that's compatible with the OpenAI API to embed text.
- Azure
Open DestinationAi Milvus 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
Milvus Configuration Embedding Cohere - Use the Cohere API to embed text.
- Fake
Destination
Milvus 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 DestinationMilvus 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 Milvus Configuration Embedding Open Ai Compatible - Use a service that's compatible with the OpenAI API to embed text.
- azure
Open DestinationAi Milvus 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
Milvus Configuration Embedding Cohere - Use the Cohere API to embed text.
- fake
Destination
Milvus 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 DestinationMilvus 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 Milvus Configuration Embedding Open Ai Compatible - Use a service that's compatible with the OpenAI API to embed text.
- azure
Open DestinationAi Milvus 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
Milvus Configuration Embedding Cohere - Use the Cohere API to embed text.
- fake
Destination
Milvus 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 DestinationMilvus 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 Milvus Configuration Embedding Open Ai Compatible - Use a service that's compatible with the OpenAI API to embed text.
- azure_
open_ Destinationai Milvus 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
Milvus Configuration Embedding Cohere - Use the Cohere API to embed text.
- fake
Destination
Milvus 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 DestinationMilvus 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 Milvus 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.
DestinationMilvusConfigurationEmbeddingAzureOpenAi, DestinationMilvusConfigurationEmbeddingAzureOpenAiArgs
- 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
DestinationMilvusConfigurationEmbeddingCohere, DestinationMilvusConfigurationEmbeddingCohereArgs
- Cohere
Key string
- Cohere
Key string
- cohere
Key String
- cohere
Key string
- cohere_
key str
- cohere
Key String
DestinationMilvusConfigurationEmbeddingOpenAi, DestinationMilvusConfigurationEmbeddingOpenAiArgs
- Openai
Key string
- Openai
Key string
- openai
Key String
- openai
Key string
- openai_
key str
- openai
Key String
DestinationMilvusConfigurationEmbeddingOpenAiCompatible, DestinationMilvusConfigurationEmbeddingOpenAiCompatibleArgs
- 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"
DestinationMilvusConfigurationIndexing, DestinationMilvusConfigurationIndexingArgs
- Auth
Destination
Milvus Configuration Indexing Auth - Authentication method
- Collection string
- The collection to load data into
- Host string
- The public endpoint of the Milvus instance.
- Db string
- The database to connect to. Default: ""
- Text
Field string - The field in the entity that contains the embedded text. Default: "text"
- Vector
Field string - The field in the entity that contains the vector. Default: "vector"
- Auth
Destination
Milvus Configuration Indexing Auth - Authentication method
- Collection string
- The collection to load data into
- Host string
- The public endpoint of the Milvus instance.
- Db string
- The database to connect to. Default: ""
- Text
Field string - The field in the entity that contains the embedded text. Default: "text"
- Vector
Field string - The field in the entity that contains the vector. Default: "vector"
- auth
Destination
Milvus Configuration Indexing Auth - Authentication method
- collection String
- The collection to load data into
- host String
- The public endpoint of the Milvus instance.
- db String
- The database to connect to. Default: ""
- text
Field String - The field in the entity that contains the embedded text. Default: "text"
- vector
Field String - The field in the entity that contains the vector. Default: "vector"
- auth
Destination
Milvus Configuration Indexing Auth - Authentication method
- collection string
- The collection to load data into
- host string
- The public endpoint of the Milvus instance.
- db string
- The database to connect to. Default: ""
- text
Field string - The field in the entity that contains the embedded text. Default: "text"
- vector
Field string - The field in the entity that contains the vector. Default: "vector"
- auth
Destination
Milvus Configuration Indexing Auth - Authentication method
- collection str
- The collection to load data into
- host str
- The public endpoint of the Milvus instance.
- db str
- The database to connect to. Default: ""
- text_
field str - The field in the entity that contains the embedded text. Default: "text"
- vector_
field str - The field in the entity that contains the vector. Default: "vector"
- auth Property Map
- Authentication method
- collection String
- The collection to load data into
- host String
- The public endpoint of the Milvus instance.
- db String
- The database to connect to. Default: ""
- text
Field String - The field in the entity that contains the embedded text. Default: "text"
- vector
Field String - The field in the entity that contains the vector. Default: "vector"
DestinationMilvusConfigurationIndexingAuth, DestinationMilvusConfigurationIndexingAuthArgs
- Api
Token DestinationMilvus Configuration Indexing Auth Api Token - Authenticate using an API token (suitable for Zilliz Cloud)
- No
Auth DestinationMilvus Configuration Indexing Auth No Auth - Do not authenticate (suitable for locally running test clusters, do not use for clusters with public IP addresses)
- Username
Password DestinationMilvus Configuration Indexing Auth Username Password - Authenticate using username and password (suitable for self-managed Milvus clusters)
- Api
Token DestinationMilvus Configuration Indexing Auth Api Token - Authenticate using an API token (suitable for Zilliz Cloud)
- No
Auth DestinationMilvus Configuration Indexing Auth No Auth - Do not authenticate (suitable for locally running test clusters, do not use for clusters with public IP addresses)
- Username
Password DestinationMilvus Configuration Indexing Auth Username Password - Authenticate using username and password (suitable for self-managed Milvus clusters)
- api
Token DestinationMilvus Configuration Indexing Auth Api Token - Authenticate using an API token (suitable for Zilliz Cloud)
- no
Auth DestinationMilvus Configuration Indexing Auth No Auth - Do not authenticate (suitable for locally running test clusters, do not use for clusters with public IP addresses)
- username
Password DestinationMilvus Configuration Indexing Auth Username Password - Authenticate using username and password (suitable for self-managed Milvus clusters)
- api
Token DestinationMilvus Configuration Indexing Auth Api Token - Authenticate using an API token (suitable for Zilliz Cloud)
- no
Auth DestinationMilvus Configuration Indexing Auth No Auth - Do not authenticate (suitable for locally running test clusters, do not use for clusters with public IP addresses)
- username
Password DestinationMilvus Configuration Indexing Auth Username Password - Authenticate using username and password (suitable for self-managed Milvus clusters)
- api_
token DestinationMilvus Configuration Indexing Auth Api Token - Authenticate using an API token (suitable for Zilliz Cloud)
- no_
auth DestinationMilvus Configuration Indexing Auth No Auth - Do not authenticate (suitable for locally running test clusters, do not use for clusters with public IP addresses)
- username_
password DestinationMilvus Configuration Indexing Auth Username Password - Authenticate using username and password (suitable for self-managed Milvus clusters)
- api
Token Property Map - Authenticate using an API token (suitable for Zilliz Cloud)
- no
Auth Property Map - Do not authenticate (suitable for locally running test clusters, do not use for clusters with public IP addresses)
- username
Password Property Map - Authenticate using username and password (suitable for self-managed Milvus clusters)
DestinationMilvusConfigurationIndexingAuthApiToken, DestinationMilvusConfigurationIndexingAuthApiTokenArgs
- Token string
- API Token for the Milvus instance
- Token string
- API Token for the Milvus instance
- token String
- API Token for the Milvus instance
- token string
- API Token for the Milvus instance
- token str
- API Token for the Milvus instance
- token String
- API Token for the Milvus instance
DestinationMilvusConfigurationIndexingAuthUsernamePassword, DestinationMilvusConfigurationIndexingAuthUsernamePasswordArgs
DestinationMilvusConfigurationProcessing, DestinationMilvusConfigurationProcessingArgs
- 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 Milvus 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 DestinationMilvus 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 Milvus 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 DestinationMilvus 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 Milvus 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 DestinationMilvus 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 Milvus 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 DestinationMilvus 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 Milvus 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 DestinationMilvus 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.
DestinationMilvusConfigurationProcessingFieldNameMapping, DestinationMilvusConfigurationProcessingFieldNameMappingArgs
- from_
field str - The field name in the source
- to_
field str - The field name to use in the destination
DestinationMilvusConfigurationProcessingTextSplitter, DestinationMilvusConfigurationProcessingTextSplitterArgs
- By
Markdown DestinationHeader Milvus 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 Milvus 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 DestinationMilvus 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 Milvus 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 Milvus 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 DestinationMilvus 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 Milvus 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 Milvus 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 DestinationMilvus 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 Milvus 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 Milvus 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 DestinationMilvus 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 Milvus 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 Milvus 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 DestinationMilvus 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.
DestinationMilvusConfigurationProcessingTextSplitterByMarkdownHeader, DestinationMilvusConfigurationProcessingTextSplitterByMarkdownHeaderArgs
- 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
DestinationMilvusConfigurationProcessingTextSplitterByProgrammingLanguage, DestinationMilvusConfigurationProcessingTextSplitterByProgrammingLanguageArgs
- 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"]
DestinationMilvusConfigurationProcessingTextSplitterBySeparator, DestinationMilvusConfigurationProcessingTextSplitterBySeparatorArgs
- 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".
Import
$ pulumi import airbyte:index/destinationMilvus:DestinationMilvus my_airbyte_destination_milvus ""
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.