Documentation ¶
Index ¶
- func ReadAnnotations(bkt *bolt.Bucket) (map[string]string, error)
- func ReadAny(bkt *bolt.Bucket, name []byte) (*types.Any, error)
- func ReadExtensions(bkt *bolt.Bucket) (map[string]typeurl.Any, error)
- func ReadLabels(bkt *bolt.Bucket) (map[string]string, error)
- func ReadTimestamps(bkt *bolt.Bucket, created, updated *time.Time) error
- func WriteAnnotations(bkt *bolt.Bucket, labels map[string]string) error
- func WriteAny(bkt *bolt.Bucket, name []byte, any typeurl.Any) error
- func WriteExtensions(bkt *bolt.Bucket, extensions map[string]typeurl.Any) error
- func WriteLabels(bkt *bolt.Bucket, labels map[string]string) error
- func WriteTimestamps(bkt *bolt.Bucket, created, updated time.Time) error
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func ReadAnnotations ¶ added in v1.2.7
ReadAnnotations reads the OCI Descriptor Annotations key from the bucket Uses the key "annotations"
func ReadExtensions ¶ added in v1.5.0
ReadExtensions will read back a map of extensions from the given bucket, previously written by WriteExtensions
func ReadLabels ¶
ReadLabels reads the labels key from the bucket Uses the key "labels"
func ReadTimestamps ¶
ReadTimestamps reads created and updated timestamps from a bucket. Uses keys "createdat" and "updatedat"
func WriteAnnotations ¶ added in v1.2.7
WriteAnnotations writes the OCI Descriptor Annotations
func WriteExtensions ¶ added in v1.5.0
WriteExtensions will write a KV map to the given bucket, where `K` is a string key and `V` is a protobuf's Any type that represents a generic extension.
func WriteLabels ¶
WriteLabels will write a new labels bucket to the provided bucket at key bucketKeyLabels, replacing the contents of the bucket with the provided map.
The provide map labels will be modified to have the final contents of the bucket. Typically, this removes zero-value entries. Uses the key "labels"
Types ¶
This section is empty.