ImageManifestSummarySize

@Serializable
data class ImageManifestSummarySize(val total: Long, val content: Long)

Parameters

total

Total is the total size (in bytes) of all the locally present data (both distributable and non-distributable) that's related to this manifest and its children. This equal to the sum of Content size AND all the sizes in the Size struct present in the Kind-specific data struct. For example, for an image kind (Kind == \"image\") this would include the size of the image content and unpacked image snapshots (Size.Content + ImageData.Size.Unpacked).

content

Content is the size (in bytes) of all the locally present content in the content store (e.g. image config, layers) referenced by this manifest and its children. This only includes blobs in the content store.

Constructors

Link copied to clipboard
constructor(total: Long, content: Long)

Properties

Link copied to clipboard
@SerialName(value = "Content")
@Required
val content: Long
Link copied to clipboard
@SerialName(value = "Total")
@Required
val total: Long