update_azure_source
Modify an Azure source connector by updating its remote URL and recursive settings using the Unstructured API MCP Server, ensuring accurate data access configurations.
Instructions
Update an azure source connector.
Args:
source_id: ID of the source connector to update
remote_url: The Azure Storage remote URL, with the format
az://<container-name>/<path/to/file/or/folder/in/container/as/needed>
recursive: Whether to access subfolders within the bucket
Returns:
String containing the updated source connector information
Input Schema
Name | Required | Description | Default |
---|---|---|---|
recursive | No | ||
remote_url | No | ||
source_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"recursive": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "null"
}
],
"default": null,
"title": "Recursive"
},
"remote_url": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Remote Url"
},
"source_id": {
"title": "Source Id",
"type": "string"
}
},
"required": [
"source_id"
],
"title": "update_azure_sourceArguments",
"type": "object"
}