update_weaviate_destination
Modify a Weaviate destination connector by updating its cluster URL or collection using the specified destination ID. Returns updated connector details for integration.
Instructions
Update an weaviate destination connector.
Args:
destination_id: ID of the destination connector to update
cluster_url (optional): URL of the weaviate cluster
collection (optional): Name of the collection(like a file) to use in the weaviate cluster
Returns:
String containing the updated destination connector information
Input Schema
Name | Required | Description | Default |
---|---|---|---|
cluster_url | No | ||
collection | No | ||
destination_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"cluster_url": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Cluster Url"
},
"collection": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Collection"
},
"destination_id": {
"title": "Destination Id",
"type": "string"
}
},
"required": [
"destination_id"
],
"title": "update_weaviate_destinationArguments",
"type": "object"
}