snapshot

package
v0.3.1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Aug 21, 2026 License: Apache-2.0 Imports: 3 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var ErrNotFound = errors.New("snapshot: not found")

ErrNotFound is returned by Store.Get when a Snapshot doesn't exist.

Functions

This section is empty.

Types

type Snapshot

type Snapshot struct {
	SnapshotID     string
	ResourceURI    string
	SourceRevision string
	// ContentHash is "sha256:<hex>" and content-addresses the blob store.
	ContentHash string
	ObservedAt  time.Time
	CreatedAt   time.Time
	ContentType string
	Bytes       int64
	Provenance  map[string]string
}

Snapshot is an immutable representation of a Resource at an observed point in time. It must never mutate after creation.

type Store

type Store interface {
	Create(ctx context.Context, s Snapshot) error
	Get(ctx context.Context, id string) (Snapshot, error)
	// ListByResource returns snapshots newest-first.
	ListByResource(ctx context.Context, uri string) ([]Snapshot, error)
}

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL