We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8645e5f commit 7e946e8Copy full SHA for 7e946e8
api-model-v1-41/docker-engine-api-v1.41.yaml
@@ -5733,7 +5733,7 @@ paths:
5733
Warnings:
5734
description: "Warnings encountered when creating the container"
5735
type: "array"
5736
- x-nullable: false
+ x-nullable: true
5737
items:
5738
type: "string"
5739
examples:
api-model-v1-41/src/main/kotlin/de/gesellix/docker/remote/api/ContainerCreateResponse.kt
@@ -26,5 +26,5 @@ data class ContainerCreateResponse(
26
var id: kotlin.String,
27
/* Warnings encountered when creating the container */
28
@Json(name = "Warnings")
29
- var warnings: kotlin.collections.List<kotlin.String>
+ var warnings: kotlin.collections.List<kotlin.String>?
30
)
0 commit comments