fix: missing settings
property on servers API
This commit is contained in:
@@ -44,6 +44,7 @@ use Symfony\Component\Yaml\Yaml;
|
|||||||
'swarm_cluster' => ['type' => 'string', 'description' => 'The swarm cluster configuration.'],
|
'swarm_cluster' => ['type' => 'string', 'description' => 'The swarm cluster configuration.'],
|
||||||
'delete_unused_volumes' => ['type' => 'boolean', 'description' => 'The flag to indicate if the unused volumes should be deleted.'],
|
'delete_unused_volumes' => ['type' => 'boolean', 'description' => 'The flag to indicate if the unused volumes should be deleted.'],
|
||||||
'delete_unused_networks' => ['type' => 'boolean', 'description' => 'The flag to indicate if the unused networks should be deleted.'],
|
'delete_unused_networks' => ['type' => 'boolean', 'description' => 'The flag to indicate if the unused networks should be deleted.'],
|
||||||
|
'settings' => ['$ref' => '#/components/schemas/ServerSetting'],
|
||||||
]
|
]
|
||||||
)]
|
)]
|
||||||
|
|
||||||
|
@@ -7456,6 +7456,9 @@
|
|||||||
"delete_unused_networks": {
|
"delete_unused_networks": {
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"description": "The flag to indicate if the unused networks should be deleted."
|
"description": "The flag to indicate if the unused networks should be deleted."
|
||||||
|
},
|
||||||
|
"settings": {
|
||||||
|
"$ref": "#\/components\/schemas\/ServerSetting"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"type": "object"
|
"type": "object"
|
||||||
|
@@ -4979,6 +4979,8 @@ components:
|
|||||||
delete_unused_networks:
|
delete_unused_networks:
|
||||||
type: boolean
|
type: boolean
|
||||||
description: 'The flag to indicate if the unused networks should be deleted.'
|
description: 'The flag to indicate if the unused networks should be deleted.'
|
||||||
|
settings:
|
||||||
|
$ref: '#/components/schemas/ServerSetting'
|
||||||
type: object
|
type: object
|
||||||
ServerSetting:
|
ServerSetting:
|
||||||
description: 'Server Settings model'
|
description: 'Server Settings model'
|
||||||
|
Reference in New Issue
Block a user