Yamcs HTTP API
Methods
- 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
- Sdls
- Server
- Services
- Sessions
- Stream Archive
- Table
- Time Correlation
- Time
- Timeline
Related
Yamcs Release Notes
Yamcs Server Manual
Source Code Documentation
Download this Document
Get SaΒΆ
Get Security Association info for a given SPI on a link
URI Template
GET /api/sdls/{instance}/{linkName}/{spi}
{instance}The Yamcs instance
{linkName}The name of the encrypted link
{spi}The Security Parameter Index
Response Type
interface GetSaResponse {
// The current sequence number in big-endian order
seq: string; // Base64
// The name of the algorithm used in the Security Association
algorithm: string;
// The length of the secret key in bits
keyLen: number;
// The size of the security header
sdlsHeaderSize: number;
// The size of the security trailer
sdlsTrailerSize: number;
// The total SDLS overhead for the SA
sdlsOverhead: number;
}