2017-10-17 11:22:23 +00:00
|
|
|
package impexp
|
2017-10-11 12:51:28 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/base64"
|
|
|
|
|
|
|
|
"github.com/hashicorp/consul/api"
|
|
|
|
)
|
|
|
|
|
|
|
|
type Entry struct {
|
2019-11-25 17:57:35 +00:00
|
|
|
Key string `json:"key"`
|
|
|
|
Flags uint64 `json:"flags"`
|
|
|
|
Value string `json:"value"`
|
|
|
|
Namespace string `json:"namespace,omitempty"`
|
2017-10-11 12:51:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func ToEntry(pair *api.KVPair) *Entry {
|
|
|
|
return &Entry{
|
2019-11-25 17:57:35 +00:00
|
|
|
Key: pair.Key,
|
|
|
|
Flags: pair.Flags,
|
|
|
|
Value: base64.StdEncoding.EncodeToString(pair.Value),
|
|
|
|
Namespace: pair.Namespace,
|
2017-10-11 12:51:28 +00:00
|
|
|
}
|
|
|
|
}
|