create_azure_storage_repository
Set up an Azure Storage repository by specifying a name, SAS URL, and associated organization IDs for integration with digital forensics and incident response workflows.
Instructions
Create a new Azure Storage repository
Input Schema
Name | Required | Description | Default |
---|---|---|---|
SASUrl | Yes | SAS URL for Azure Storage access | |
name | Yes | Name for the Azure Storage repository | |
organizationIds | No | Organization IDs to associate the repository with. Defaults to empty array. |
Input Schema (JSON Schema)
{
"properties": {
"SASUrl": {
"description": "SAS URL for Azure Storage access",
"type": "string"
},
"name": {
"description": "Name for the Azure Storage repository",
"type": "string"
},
"organizationIds": {
"description": "Organization IDs to associate the repository with. Defaults to empty array.",
"items": {
"type": "number"
},
"type": "array"
}
},
"required": [
"name",
"SASUrl"
],
"type": "object"
}