mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2024-11-22 04:55:33 +03:00
* update openapi.yaml
This commit is contained in:
parent
c5ed6da5bd
commit
043e89a1a4
1 changed files with 24 additions and 5 deletions
|
@ -1142,14 +1142,33 @@ definitions:
|
|||
DhcpSearchResult:
|
||||
type: "object"
|
||||
description: "Information about a DHCP server discovered in the current network"
|
||||
required:
|
||||
- "found"
|
||||
properties:
|
||||
other_server:
|
||||
$ref: "#/definitions/DhcpSearchResultOtherServer"
|
||||
static_ip:
|
||||
$ref: "#/definitions/DhcpSearchResultStaticIP"
|
||||
DhcpSearchResultOtherServer:
|
||||
type: "object"
|
||||
properties:
|
||||
found:
|
||||
type: "boolean"
|
||||
gateway_ip:
|
||||
type: "string"
|
||||
example: "192.168.1.1"
|
||||
description: "yes|no|error"
|
||||
example: "no"
|
||||
error:
|
||||
type: "string"
|
||||
description: "Set if found=error"
|
||||
example: ""
|
||||
DhcpSearchResultStaticIP:
|
||||
type: "object"
|
||||
properties:
|
||||
static:
|
||||
type: "string"
|
||||
description: "yes|no|error"
|
||||
example: "yes"
|
||||
ip:
|
||||
type: "string"
|
||||
description: "Set if static=no"
|
||||
example: ""
|
||||
DnsAnswer:
|
||||
type: "object"
|
||||
description: "DNS answer section"
|
||||
|
|
Loading…
Reference in a new issue