2023-03-28 20:12:30 +01:00
|
|
|
// Copyright (c) HashiCorp, Inc.
|
|
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
|
2017-10-17 13:22:23 +02:00
|
|
|
package impexp
|
2017-10-11 14:51:28 +02:00
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/base64"
|
|
|
|
|
|
|
|
"github.com/hashicorp/consul/api"
|
|
|
|
)
|
|
|
|
|
|
|
|
type Entry struct {
|
2019-11-25 12:57:35 -05:00
|
|
|
Key string `json:"key"`
|
|
|
|
Flags uint64 `json:"flags"`
|
|
|
|
Value string `json:"value"`
|
|
|
|
Namespace string `json:"namespace,omitempty"`
|
2021-11-08 11:43:21 -05:00
|
|
|
Partition string `json:"partition,omitempty"`
|
2017-10-11 14:51:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func ToEntry(pair *api.KVPair) *Entry {
|
|
|
|
return &Entry{
|
2019-11-25 12:57:35 -05:00
|
|
|
Key: pair.Key,
|
|
|
|
Flags: pair.Flags,
|
|
|
|
Value: base64.StdEncoding.EncodeToString(pair.Value),
|
|
|
|
Namespace: pair.Namespace,
|
2021-11-08 11:43:21 -05:00
|
|
|
Partition: pair.Partition,
|
2017-10-11 14:51:28 +02:00
|
|
|
}
|
|
|
|
}
|