omitempty for URL schema.
This commit is contained in:
parent
275013bd15
commit
764ebce42b
1 changed files with 13 additions and 13 deletions
|
@ -93,19 +93,19 @@ type InterfaceFilter struct {
|
||||||
ConnectionStatus string `schema:"connection_status,omitempty"`
|
ConnectionStatus string `schema:"connection_status,omitempty"`
|
||||||
Type string `schema:"type,omitempty"`
|
Type string `schema:"type,omitempty"`
|
||||||
Mtu string `schema:"mtu,omitempty"`
|
Mtu string `schema:"mtu,omitempty"`
|
||||||
MgmtOnly string `schema:"mgmt_only"`
|
MgmtOnly string `schema:"mgmt_only,omitempty"`
|
||||||
Mode string `schema:"mode"`
|
Mode string `schema:"mode,omitempty"`
|
||||||
Description string `schema:"description"`
|
Description string `schema:"description,omitempty"`
|
||||||
Q string `schema:"q"`
|
Q string `schema:"q,omitempty"`
|
||||||
Device string `schema:"device"`
|
Device string `schema:"device,omitempty"`
|
||||||
DeviceId string `schema:"device_id"`
|
DeviceId string `schema:"device_id,omitempty"`
|
||||||
Cabled string `schema:"cabled"`
|
Cabled string `schema:"cabled,omitempty"`
|
||||||
Kind string `schema:"kind"`
|
Kind string `schema:"kind,omitempty"`
|
||||||
LagId string `schema:"lag_id"`
|
LagId string `schema:"lag_id,omitempty"`
|
||||||
MacAddress string `schema:"mac_address"`
|
MacAddress string `schema:"mac_address,omitempty"`
|
||||||
Tag string `schema:"tag"`
|
Tag string `schema:"tag,omitempty"`
|
||||||
VlanId string `schema:"vlan_id"`
|
VlanId string `schema:"vlan_id,omitempty"`
|
||||||
Vlan string `schema:"vlan"`
|
Vlan string `schema:"vlan,omitempty"`
|
||||||
}
|
}
|
||||||
|
|
||||||
func (i *Dcim_Interfaces_List) ListInterfaces(n *NetBox, f *InterfaceFilter) error {
|
func (i *Dcim_Interfaces_List) ListInterfaces(n *NetBox, f *InterfaceFilter) error {
|
||||||
|
|
Loading…
Reference in a new issue