airbyte_update_destination
Update an existing destination connector by changing its name or configuration fields. Only modified fields need to be provided, using PATCH semantics.
Instructions
Update an existing destination connector's name or configuration.
Uses PATCH semantics: only the fields you provide are changed.
When to Use: - Change connection credentials (e.g. rotate a service account). - Rename a destination for clarity. - Update connector settings (e.g. change dataset or bucket).
Recommended Workflow: 1. Call airbyte_get_destination to see the current configuration. 2. Build the updated configuration with only the changed fields. 3. Call this tool.
Returns: The updated destination details.
Examples: Rename a destination: params = { "destination_id": "a1b2c3d4-...", "name": "New Name" } Update configuration: params = { "destination_id": "a1b2c3d4-...", "configuration": { "dataset_id": "new_dataset" } }
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| params | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |