mirror of
https://github.com/moby/moby.git
synced 2026-01-11 18:51:37 +00:00
api/types/sytem: remove deprecated DiskUsage.BuilderSize
The `DiskUsage.BuilderSize` field was added as part of the, then experimental, BuildKit builder in [moby@5c3d2d5] (API v1.31). It was deprecated in API v1.32 (through [moby@b225258]) but that change still returned the field. Commit [moby@31348af] removed it in API v1.42. This field was never documented, and part of an experimental feature, so we can remove it altogether. [moby@5c3d2d5]:5c3d2d552b[moby@b225258]:b225258496[moby@31348af]:31348afa19Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
@@ -24,10 +24,9 @@ const (
|
||||
// DiskUsage contains response of Engine API:
|
||||
// GET "/system/df"
|
||||
type DiskUsage struct {
|
||||
LayersSize int64
|
||||
Images []*image.Summary
|
||||
Containers []*container.Summary
|
||||
Volumes []*volume.Volume
|
||||
BuildCache []*build.CacheRecord
|
||||
BuilderSize int64 `json:",omitempty"` // Deprecated: deprecated in API 1.38, and no longer used since API 1.40.
|
||||
LayersSize int64
|
||||
Images []*image.Summary
|
||||
Containers []*container.Summary
|
||||
Volumes []*volume.Volume
|
||||
BuildCache []*build.CacheRecord
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user