Merge pull request #43372 from fussybeaver/43292-swagger-add-ipamconfig
api: swagger: add IPAMConfig on IPAM
This commit is contained in:
commit
efde293231
2 changed files with 30 additions and 6 deletions
|
@ -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"
|
||||||
|
|
|
@ -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"
|
||||||
|
|
Loading…
Reference in a new issue