Skip to main content

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

OptionDescription
--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

CodeDescription
0Success
1Failed to get drive (drive not found, authentication error)

See Also