File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed
src/main/kotlin/de/gesellix/docker/remote/api Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -1625,10 +1625,10 @@ definitions:
16251625 type : " integer"
16261626 x-nullable : false
16271627 Size :
1628- type : " integer "
1628+ type : " number "
16291629 x-nullable : false
16301630 SharedSize :
1631- type : " integer "
1631+ type : " number "
16321632 x-nullable : false
16331633 VirtualSize :
16341634 type : " integer"
Original file line number Diff line number Diff line change @@ -9,8 +9,8 @@ Name | Type | Description | Notes
99** repoTags** | ** kotlin.collections.List< ; kotlin.String> ; ** | |
1010** repoDigests** | ** kotlin.collections.List< ; kotlin.String> ; ** | |
1111** created** | ** kotlin.Int** | |
12- ** size** | ** kotlin.Int ** | |
13- ** sharedSize** | ** kotlin.Int ** | |
12+ ** size** | [ ** java.math.BigDecimal ** ] ( java.math.BigDecimal.md ) | |
13+ ** sharedSize** | [ ** java.math.BigDecimal ** ] ( java.math.BigDecimal.md ) | |
1414** virtualSize** | ** kotlin.Int** | |
1515** labels** | ** kotlin.collections.Map< ; kotlin.String, kotlin.String> ; ** | |
1616** containers** | ** kotlin.Int** | |
Original file line number Diff line number Diff line change @@ -40,9 +40,9 @@ data class ImageSummary(
4040 @Json(name = " Created" )
4141 val created : kotlin.Int ,
4242 @Json(name = " Size" )
43- val size : kotlin. Int ,
43+ val size : java.math. BigDecimal ,
4444 @Json(name = " SharedSize" )
45- val sharedSize : kotlin. Int ,
45+ val sharedSize : java.math. BigDecimal ,
4646 @Json(name = " VirtualSize" )
4747 val virtualSize : kotlin.Int ,
4848 @Json(name = " Labels" )
You can’t perform that action at this time.
0 commit comments