From 0e85a463f1b9c74f97897c156a52cbad25cb5af3 Mon Sep 17 00:00:00 2001 From: Sergei Lukianov Date: Wed, 28 Aug 2024 10:45:31 -0700 Subject: [PATCH] Update gen API ref --- docs/reference/api.md | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/docs/reference/api.md b/docs/reference/api.md index ac09528..b10bd4b 100644 --- a/docs/reference/api.md +++ b/docs/reference/api.md @@ -646,6 +646,9 @@ _Appears in:_ | `vrf` _string_ | VRF name to identify specific VPC (will be added to DHCP packets by DHCP relay in suboption 151), such as "VrfVvpc-1" as it's named on switch | | | | `circuitID` _string_ | VLAN ID to identify specific subnet withing the VPC, such as "Vlan1000" as it's named on switch | | | | `pxeURL` _string_ | PXEURL (optional) to identify the pxe server to use to boot hosts connected to this segment such as http://10.10.10.99/bootfilename or tftp://10.10.10.99/bootfilename, http query strings are not supported | | | +| `dnsServers` _string array_ | DNSservers (optional) to configure Domain Name Servers for this particular segment such as: 10.10.10.1, 10.10.10.2 | | | +| `timeServers` _string array_ | TimeServers (optional) NTP server addresses to configure for time servers for this particular segment such as: 10.10.10.1, 10.10.10.2 | | | +| `interfaceMTU` _integer_ | InterfaceMTU (optional) is the MTU setting that the dhcp server will send to the clients. It is dependent on the client to honor this option. | | | #### DHCPSubnetStatus @@ -1070,7 +1073,26 @@ _Appears in:_ | `relay` _string_ | Relay is the DHCP relay IP address, if specified, DHCP server will be disabled | | | | `enable` _boolean_ | Enable enables DHCP server for the subnet | | | | `range` _[VPCDHCPRange](#vpcdhcprange)_ | Range (optional) is the DHCP range for the subnet if DHCP server is enabled | | | +| `options` _[VPCDHCPOptions](#vpcdhcpoptions)_ | Options (optional) is the DHCP options for the subnet if DHCP server is enabled | | | + + +#### VPCDHCPOptions + + + +VPCDHCPOptions defines the DHCP options for the subnet if DHCP server is enabled + + + +_Appears in:_ +- [VPCDHCP](#vpcdhcp) + +| Field | Description | Default | Validation | +| --- | --- | --- | --- | | `pxeURL` _string_ | PXEURL (optional) to identify the pxe server to use to boot hosts connected to this segment such as http://10.10.10.99/bootfilename or tftp://10.10.10.99/bootfilename, http query strings are not supported | | | +| `dnsServers` _string array_ | DNSservers (optional) to configure Domain Name Servers for this particular segment such as: 10.10.10.1, 10.10.10.2 | | Optional: {}
| +| `timeServers` _string array_ | TimeServers (optional) NTP server addresses to configure for time servers for this particular segment such as: 10.10.10.1, 10.10.10.2 | | Optional: {}
| +| `interfaceMTU` _integer_ | InterfaceMTU (optional) is the MTU setting that the dhcp server will send to the clients. It is dependent on the client to honor this option. | | | #### VPCDHCPRange