github.com/zhuohuang-hust/src-cbuild@v0.0.0-20230105071821-c7aab3e7c840/api/types/image_summary.go (about)

     1  package types
     2  
     3  // This file was generated by the swagger tool.
     4  // Editing this file might prove futile when you re-run the swagger generate command
     5  
     6  // ImageSummary image summary
     7  // swagger:model ImageSummary
     8  type ImageSummary struct {
     9  
    10  	// containers
    11  	// Required: true
    12  	Containers int64 `json:"Containers"`
    13  
    14  	// created
    15  	// Required: true
    16  	Created int64 `json:"Created"`
    17  
    18  	// Id
    19  	// Required: true
    20  	ID string `json:"Id"`
    21  
    22  	// labels
    23  	// Required: true
    24  	Labels map[string]string `json:"Labels"`
    25  
    26  	// parent Id
    27  	// Required: true
    28  	ParentID string `json:"ParentId"`
    29  
    30  	// repo digests
    31  	// Required: true
    32  	RepoDigests []string `json:"RepoDigests"`
    33  
    34  	// repo tags
    35  	// Required: true
    36  	RepoTags []string `json:"RepoTags"`
    37  
    38  	// shared size
    39  	// Required: true
    40  	SharedSize int64 `json:"SharedSize"`
    41  
    42  	// size
    43  	// Required: true
    44  	Size int64 `json:"Size"`
    45  
    46  	// virtual size
    47  	// Required: true
    48  	VirtualSize int64 `json:"VirtualSize"`
    49  }