create_ftps_repository
Set up a new FTPS evidence repository by specifying host, path, credentials, and SSL settings to securely store and manage forensic data.
Instructions
Create a new FTPS evidence repository
Input Schema
Name | Required | Description | Default |
---|---|---|---|
allowSelfSignedSSL | No | Whether to allow self-signed SSL certificates | |
host | Yes | FTPS server hostname or IP address | |
name | Yes | Name for the FTPS repository | |
organizationIds | No | Organization IDs to associate the repository with | |
password | Yes | Password for FTPS authentication | |
path | Yes | Path on the FTPS server (e.g. /) | |
port | No | FTPS server port (default: 22) | |
publicKey | No | Public key for FTPS authentication (optional) | |
username | Yes | Username for FTPS authentication |
Input Schema (JSON Schema)
{
"properties": {
"allowSelfSignedSSL": {
"description": "Whether to allow self-signed SSL certificates",
"type": "boolean"
},
"host": {
"description": "FTPS server hostname or IP address",
"type": "string"
},
"name": {
"description": "Name for the FTPS repository",
"type": "string"
},
"organizationIds": {
"description": "Organization IDs to associate the repository with",
"items": {
"type": "number"
},
"type": "array"
},
"password": {
"description": "Password for FTPS authentication",
"type": "string"
},
"path": {
"description": "Path on the FTPS server (e.g. /)",
"type": "string"
},
"port": {
"description": "FTPS server port (default: 22)",
"type": "number"
},
"publicKey": {
"description": "Public key for FTPS authentication (optional)",
"type": "string"
},
"username": {
"description": "Username for FTPS authentication",
"type": "string"
}
},
"required": [
"name",
"host",
"path",
"username",
"password"
],
"type": "object"
}