featurebase/dax/snapshot.go
2023-01-10 23:22:58 +00:00

22 lines
481 B
Go

package dax
type SnapshotShardDataRequest struct {
Address Address `json:"address"`
TableKey TableKey `json:"table-key"`
ShardNum ShardNum `json:"shard"`
}
type SnapshotTableKeysRequest struct {
Address Address `json:"address"`
TableKey TableKey `json:"table-key"`
PartitionNum PartitionNum `json:"partition"`
}
type SnapshotFieldKeysRequest struct {
Address Address `json:"address"`
TableKey TableKey `json:"table-key"`
Field FieldName `json:"field"`
}