Yamcs HTTP API
- Activities
- Alarms
- Audit
- Buckets
- Clearance
- Commands
- COP-1
- Database
- Events
- File Transfer
- IAM
- Indexes
- Instances
- Links
- MDB Override
- MDB
- Packets
- Parameter Archive
- Parameter Lists
- Parameter Values
- Processing
- Queues
- Replication
- RocksDB
- Server
- Services
- Sessions
- Stream Archive
- Table
- Time Correlation
- Time
- Timeline
Related
Yamcs Release Notes
Yamcs Server Manual
Source Code Documentation
Download this Document
Get Object InfoΒΆ
Get object info
URI Template
GET /api/storage/buckets/{bucketName}/objectInfo/{objectName*}
{bucketName}
Bucket name
{objectName*}
Object name
Response Type
interface ObjectInfo {
// Object name
name: string;
// Creation time
created: string; // RFC 3339 timestamp
// Size in bytes
size: string; // String decimal
metadata: {[key: string]: string};
}