Merge pull request #43372 from fussybeaver/43292-swagger-add-ipamconfig

api: swagger: add IPAMConfig on IPAM
This commit is contained in:
Sebastiaan van Stijn 2022-03-16 12:26:05 +01:00 committed by GitHub
commit efde293231
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 30 additions and 6 deletions

View file

@ -2035,11 +2035,23 @@ definitions:
``` ```
type: "array" type: "array"
items: items:
$ref: "#/definitions/IPAMConfig"
Options:
description: "Driver-specific options, specified as a map."
type: "object" type: "object"
additionalProperties: additionalProperties:
type: "string" type: "string"
Options:
description: "Driver-specific options, specified as a map." IPAMConfig:
type: "object"
properties:
Subnet:
type: "string"
IPRange:
type: "string"
Gateway:
type: "string"
AuxiliaryAddresses:
type: "object" type: "object"
additionalProperties: additionalProperties:
type: "string" type: "string"

View file

@ -2035,11 +2035,23 @@ definitions:
``` ```
type: "array" type: "array"
items: items:
$ref: "#/definitions/IPAMConfig"
Options:
description: "Driver-specific options, specified as a map."
type: "object" type: "object"
additionalProperties: additionalProperties:
type: "string" type: "string"
Options:
description: "Driver-specific options, specified as a map." IPAMConfig:
type: "object"
properties:
Subnet:
type: "string"
IPRange:
type: "string"
Gateway:
type: "string"
AuxiliaryAddresses:
type: "object" type: "object"
additionalProperties: additionalProperties:
type: "string" type: "string"