1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

api/types: add missing GoDoc for BuildCache fields.

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
Sebastiaan van Stijn 2022-05-23 12:30:35 +02:00
parent dc2b34af6a
commit e0286d7f4e
No known key found for this signature in database
GPG key ID: 76698F39D527CE8C

View file

@ -772,18 +772,27 @@ type BuildResult struct {
ID string ID string
} }
// BuildCache contains information about a build cache record // BuildCache contains information about a build cache record.
type BuildCache struct { type BuildCache struct {
ID string // ID is the unique ID of the build cache record.
Parent string ID string
Type string // Parent is the ID of the parent build cache record.
Parent string
// Type is the cache record type.
Type string
// Description is a description of the build-step that produced the build cache.
Description string Description string
InUse bool // InUse indicates if the build cache is in use.
Shared bool InUse bool
Size int64 // Shared indicates if the build cache is shared.
CreatedAt time.Time Shared bool
LastUsedAt *time.Time // Size is the amount of disk space used by the build cache (in bytes).
UsageCount int Size int64
// CreatedAt is the date and time at which the build cache was created.
CreatedAt time.Time
// LastUsedAt is the date and time at which the build cache was last used.
LastUsedAt *time.Time
UsageCount int
} }
// BuildCachePruneOptions hold parameters to prune the build cache // BuildCachePruneOptions hold parameters to prune the build cache