Skip to content

Commit f4c099f

Browse files
committed
Fix deserialization on Windows Server
1 parent 852ef15 commit f4c099f

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

api-model-v1-41/docker-engine-api-v1.41.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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"

api-model-v1-41/docs/ImageSummary.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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** | |

api-model-v1-41/src/main/kotlin/de/gesellix/docker/remote/api/ImageSummary.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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")

0 commit comments

Comments
 (0)