create_azure_source
Create an Azure source connector to access and integrate Azure Storage data, enabling recursive access to subfolders and specifying remote URLs for efficient data handling.
Instructions
Create an Azure source connector.
Args:
name: A unique name for this connector
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 created source connector information
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes | ||
recursive | No | ||
remote_url | Yes |
Input Schema (JSON Schema)
{
"properties": {
"name": {
"title": "Name",
"type": "string"
},
"recursive": {
"default": false,
"title": "Recursive",
"type": "boolean"
},
"remote_url": {
"title": "Remote Url",
"type": "string"
}
},
"required": [
"name",
"remote_url"
],
"title": "create_azure_sourceArguments",
"type": "object"
}