signaloid-cli drives get
Get details of a specific drive.
Synopsis
signaloid-cli drives get --drive-id <id>
Description
Retrieves detailed information about a specific virtual drive, including its configuration, data sources, and metadata.
Options
| Option | Description |
|---|---|
--drive-id <id> | Drive ID (required) |
Output
Returns a JSON object with complete drive details:
{
"DriveID": "drive-abc123",
"Name": "Production Drive",
"DataSources": [
{
"ResourceID": "bucket-xyz789",
"ResourceType": "Bucket",
"Location": "/data/"
},
{
"ResourceID": "gateway-sensor01",
"ResourceType": "Gateway",
"Location": "/sensors/"
}
],
"CreatedAt": "2025-01-15T10:30:00Z",
"UpdatedAt": "2025-01-20T14:45:00Z",
"Owner": "user-123"
}
Examples
Get Drive Details
signaloid-cli drives get --drive-id drive-abc123
Exit Codes
| Code | Description |
|---|---|
0 | Success |
1 | Failed to get drive (drive not found, authentication error) |
See Also
- signaloid-cli drives list - List all drives
- signaloid-cli drives create - Create a drive
- signaloid-cli drives update - Update a drive