Update NewInterface
To match Netbox version
This commit is contained in:
parent
236a9bb23e
commit
2bd3658b60
1 changed files with 136 additions and 120 deletions
256
interfaces.go
256
interfaces.go
|
@ -16,23 +16,39 @@ type InterfacesService service
|
||||||
|
|
||||||
// NewInterface is used for creating a new interface
|
// NewInterface is used for creating a new interface
|
||||||
type NewInterface struct {
|
type NewInterface struct {
|
||||||
MacAddress string `json:"mac_address,omitempty"`
|
CustomFields interface{} `json:"custom_fields"`
|
||||||
Name string `json:"name"`
|
WWN string `json:"wwn"`
|
||||||
Cable struct {
|
Label string `json:"label"`
|
||||||
Label string `json:"label,omitempty"`
|
Type string `json:"type"`
|
||||||
} `json:"cable,omitempty"`
|
Cable struct {
|
||||||
Description string `json:"description,omitempty"`
|
Label string `json:"label"`
|
||||||
TaggedVLANs []int `json:"tagged_vlans,omitempty"`
|
} `json:"cable"`
|
||||||
Tags []string `json:"tags,omitempty"`
|
RFChannel string `json:"rf_channel"`
|
||||||
Device int `json:"device"`
|
RFRole string `json:"rf_role"`
|
||||||
Mtu int `json:"mtu,omitempty"`
|
Name string `json:"name"`
|
||||||
Lag int `json:"lag,omitempty"`
|
Description string `json:"description"`
|
||||||
UntaggedVLAN int `json:"untagged_vlan,omitempty"`
|
MACAddress string `json:"mac_address"`
|
||||||
Type int `json:"type,omitempty"`
|
Mode string `json:"mode"`
|
||||||
Mode int `json:"mode,omitempty"`
|
TaggedVLANs []int `json:"tagged_vlans"`
|
||||||
ConnectionStatus bool `json:"connection_status,omitempty"`
|
WirelessLANs []int `json:"wireless_lans"`
|
||||||
Enabled bool `json:"enabled,omitempty"`
|
Tags []struct {
|
||||||
MgmtOnly bool `json:"mgmt_only,omitempty"`
|
Name string `json:"name"`
|
||||||
|
Slug string `json:"slug"`
|
||||||
|
Color string `json:"color"`
|
||||||
|
} `json:"tags"`
|
||||||
|
Device int `json:"device"`
|
||||||
|
Parent int `json:"parent"`
|
||||||
|
RFChannelFrequency int `json:"rf_channel_frequency"`
|
||||||
|
RFChannelWidth int `json:"rf_channel_width"`
|
||||||
|
TXPower int `json:"tx_power"`
|
||||||
|
UntaggedVLAN int `json:"untagged_vlan"`
|
||||||
|
Bridge int `json:"bridge"`
|
||||||
|
LAG int `json:"lag"`
|
||||||
|
MTU int `json:"mtu"`
|
||||||
|
WirelessLink int `json:"wireless_link"`
|
||||||
|
Enabled bool `json:"enabled"`
|
||||||
|
MarkConnected bool `json:"mark_connected"`
|
||||||
|
MGMTOnly bool `json:"mgmt_only"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// Interfaces is a list of interfaces
|
// Interfaces is a list of interfaces
|
||||||
|
@ -45,136 +61,136 @@ type Interfaces struct {
|
||||||
|
|
||||||
// Interface is one interface
|
// Interface is one interface
|
||||||
type Interface struct {
|
type Interface struct {
|
||||||
ID int `json:"id"`
|
CustomFields struct{} `json:"custom_fields"`
|
||||||
URL string `json:"url"`
|
LastUpdated time.Time `json:"last_updated"`
|
||||||
Display string `json:"display"`
|
LinkPeer interface{} `json:"link_peer"`
|
||||||
Device struct {
|
ConnectedEndpoint interface{} `json:"connected_endpoint"`
|
||||||
ID int `json:"id"`
|
Parent struct {
|
||||||
|
Occupied string `json:"_occupied"`
|
||||||
|
URL string `json:"url"`
|
||||||
|
Display string `json:"display"`
|
||||||
|
Name string `json:"name"`
|
||||||
|
Device struct {
|
||||||
|
URL string `json:"url"`
|
||||||
|
Display string `json:"display"`
|
||||||
|
Name string `json:"name"`
|
||||||
|
ID int `json:"id"`
|
||||||
|
} `json:"device"`
|
||||||
|
Cable int `json:"cable"`
|
||||||
|
ID int `json:"id"`
|
||||||
|
} `json:"parent"`
|
||||||
|
Device struct {
|
||||||
URL string `json:"url"`
|
URL string `json:"url"`
|
||||||
Display string `json:"display"`
|
Display string `json:"display"`
|
||||||
Name string `json:"name"`
|
Name string `json:"name"`
|
||||||
|
ID int `json:"id"`
|
||||||
} `json:"device"`
|
} `json:"device"`
|
||||||
Name string `json:"name"`
|
|
||||||
Label string `json:"label"`
|
|
||||||
Type struct {
|
|
||||||
Label string `json:"label"`
|
|
||||||
Value string `json:"value"`
|
|
||||||
} `json:"type"`
|
|
||||||
Enabled bool `json:"enabled"`
|
|
||||||
Parent struct {
|
|
||||||
ID int `json:"id"`
|
|
||||||
URL string `json:"url"`
|
|
||||||
Display string `json:"display"`
|
|
||||||
Device struct {
|
|
||||||
ID int `json:"id"`
|
|
||||||
URL string `json:"url"`
|
|
||||||
Display string `json:"display"`
|
|
||||||
Name string `json:"name"`
|
|
||||||
} `json:"device"`
|
|
||||||
Name string `json:"name"`
|
|
||||||
Cable int `json:"cable"`
|
|
||||||
Occupied string `json:"_occupied"`
|
|
||||||
} `json:"parent"`
|
|
||||||
Bridge struct {
|
|
||||||
ID int `json:"id"`
|
|
||||||
URL string `json:"url"`
|
|
||||||
Display string `json:"display"`
|
|
||||||
Device struct {
|
|
||||||
ID int `json:"id"`
|
|
||||||
URL string `json:"url"`
|
|
||||||
Display string `json:"display"`
|
|
||||||
Name string `json:"name"`
|
|
||||||
} `json:"device"`
|
|
||||||
Name string `json:"name"`
|
|
||||||
Cable int `json:"cable"`
|
|
||||||
Occupied string `json:"_occupied"`
|
|
||||||
} `json:"bridge"`
|
|
||||||
Lag struct {
|
|
||||||
ID int `json:"id"`
|
|
||||||
URL string `json:"url"`
|
|
||||||
Display string `json:"display"`
|
|
||||||
Device struct {
|
|
||||||
ID int `json:"id"`
|
|
||||||
URL string `json:"url"`
|
|
||||||
Display string `json:"display"`
|
|
||||||
Name string `json:"name"`
|
|
||||||
} `json:"device"`
|
|
||||||
Name string `json:"name"`
|
|
||||||
Cable int `json:"cable"`
|
|
||||||
Occupied string `json:"_occupied"`
|
|
||||||
} `json:"lag"`
|
|
||||||
Mtu int `json:"mtu"`
|
|
||||||
MacAddress string `json:"mac_address"`
|
|
||||||
Wwn string `json:"wwn"`
|
|
||||||
MgmtOnly bool `json:"mgmt_only"`
|
|
||||||
Description string `json:"description"`
|
|
||||||
Mode struct {
|
|
||||||
Label string `json:"label"`
|
|
||||||
Value string `json:"value"`
|
|
||||||
} `json:"mode"`
|
|
||||||
RFRole struct {
|
|
||||||
Label string `json:"label"`
|
|
||||||
Value string `json:"value"`
|
|
||||||
} `json:"rf_role"`
|
|
||||||
RFChannel struct {
|
RFChannel struct {
|
||||||
Label string `json:"label"`
|
Label string `json:"label"`
|
||||||
Value string `json:"value"`
|
Value string `json:"value"`
|
||||||
} `json:"rf_channel"`
|
} `json:"rf_channel"`
|
||||||
RFChannelFrequency int `json:"rf_channel_frequency"`
|
RFRole struct {
|
||||||
RFChannelWidth int `json:"rf_channel_width"`
|
Label string `json:"label"`
|
||||||
TXPower int `json:"tx_power"`
|
Value string `json:"value"`
|
||||||
UntaggedVlan struct {
|
} `json:"rf_role"`
|
||||||
ID int `json:"id"`
|
Type struct {
|
||||||
URL string `json:"url"`
|
Label string `json:"label"`
|
||||||
Display string `json:"display"`
|
Value string `json:"value"`
|
||||||
Vid int `json:"vid"`
|
} `json:"type"`
|
||||||
Name string `json:"name"`
|
Mode struct {
|
||||||
} `json:"untagged_vlan"`
|
Label string `json:"label"`
|
||||||
TaggedVlans []struct {
|
Value string `json:"value"`
|
||||||
ID int `json:"id"`
|
} `json:"mode"`
|
||||||
URL string `json:"url"`
|
Display string `json:"display"`
|
||||||
Display string `json:"display"`
|
LinkPeerType string `json:"link_peer_type"`
|
||||||
Vid int `json:"vid"`
|
MACAddress string `json:"mac_address"`
|
||||||
Name string `json:"name"`
|
WWN string `json:"wwn"`
|
||||||
} `json:"tagged_vlans"`
|
URL string `json:"url"`
|
||||||
MarkConnected bool `json:"mark_connected"`
|
Description string `json:"description"`
|
||||||
Cable struct {
|
ConnectedEndpointType string `json:"connected_endpoint_type"`
|
||||||
ID int `json:"id"`
|
Label string `json:"label"`
|
||||||
|
Name string `json:"name"`
|
||||||
|
Created string `json:"created"`
|
||||||
|
Cable struct {
|
||||||
URL string `json:"url"`
|
URL string `json:"url"`
|
||||||
Display string `json:"display"`
|
Display string `json:"display"`
|
||||||
Label string `json:"label"`
|
Label string `json:"label"`
|
||||||
|
ID int `json:"id"`
|
||||||
} `json:"cable"`
|
} `json:"cable"`
|
||||||
WirelessLink struct {
|
WirelessLink struct {
|
||||||
ID int `json:"id"`
|
|
||||||
URL string `json:"url"`
|
URL string `json:"url"`
|
||||||
Display string `json:"display"`
|
Display string `json:"display"`
|
||||||
Ssid string `json:"ssid"`
|
Ssid string `json:"ssid"`
|
||||||
|
ID int `json:"id"`
|
||||||
} `json:"wireless_link"`
|
} `json:"wireless_link"`
|
||||||
LinkPeer interface{} `json:"link_peer"`
|
WirelessLANs []struct {
|
||||||
LinkPeerType string `json:"link_peer_type"`
|
|
||||||
WirelessLans []struct {
|
|
||||||
ID int `json:"id"`
|
|
||||||
URL string `json:"url"`
|
URL string `json:"url"`
|
||||||
Display string `json:"display"`
|
Display string `json:"display"`
|
||||||
Ssid string `json:"ssid"`
|
Ssid string `json:"ssid"`
|
||||||
} `json:"wireless_lans"`
|
|
||||||
ConnectedEndpoint interface{} `json:"connected_endpoint"`
|
|
||||||
ConnectedEndpointType string `json:"connected_endpoint_type"`
|
|
||||||
ConnectedEndpointReachable bool `json:"connected_endpoint_reachable"`
|
|
||||||
Tags []struct {
|
|
||||||
ID int `json:"id"`
|
ID int `json:"id"`
|
||||||
|
} `json:"wireless_lans"`
|
||||||
|
TaggedVLANs []struct {
|
||||||
|
URL string `json:"url"`
|
||||||
|
Display string `json:"display"`
|
||||||
|
Name string `json:"name"`
|
||||||
|
ID int `json:"id"`
|
||||||
|
Vid int `json:"vid"`
|
||||||
|
} `json:"tagged_vlans"`
|
||||||
|
Tags []struct {
|
||||||
URL string `json:"url"`
|
URL string `json:"url"`
|
||||||
Display string `json:"display"`
|
Display string `json:"display"`
|
||||||
Name string `json:"name"`
|
Name string `json:"name"`
|
||||||
Slug string `json:"slug"`
|
Slug string `json:"slug"`
|
||||||
Color string `json:"color"`
|
Color string `json:"color"`
|
||||||
|
ID int `json:"id"`
|
||||||
} `json:"tags"`
|
} `json:"tags"`
|
||||||
CustomFields struct{} `json:"custom_fields"`
|
UntaggedVLAN struct {
|
||||||
Created string `json:"created"`
|
URL string `json:"url"`
|
||||||
LastUpdated time.Time `json:"last_updated"`
|
Display string `json:"display"`
|
||||||
CountIpaddresses int `json:"count_ipaddresses"`
|
Name string `json:"name"`
|
||||||
CountFhrpGroups int `json:"count_fhrp_groups"`
|
ID int `json:"id"`
|
||||||
Occupied bool `json:"_occupied"`
|
Vid int `json:"vid"`
|
||||||
|
} `json:"untagged_vlan"`
|
||||||
|
LAG struct {
|
||||||
|
Occupied string `json:"_occupied"`
|
||||||
|
URL string `json:"url"`
|
||||||
|
Display string `json:"display"`
|
||||||
|
Name string `json:"name"`
|
||||||
|
Device struct {
|
||||||
|
URL string `json:"url"`
|
||||||
|
Display string `json:"display"`
|
||||||
|
Name string `json:"name"`
|
||||||
|
ID int `json:"id"`
|
||||||
|
} `json:"device"`
|
||||||
|
Cable int `json:"cable"`
|
||||||
|
ID int `json:"id"`
|
||||||
|
} `json:"lag"`
|
||||||
|
Bridge struct {
|
||||||
|
Occupied string `json:"_occupied"`
|
||||||
|
URL string `json:"url"`
|
||||||
|
Display string `json:"display"`
|
||||||
|
Name string `json:"name"`
|
||||||
|
Device struct {
|
||||||
|
URL string `json:"url"`
|
||||||
|
Display string `json:"display"`
|
||||||
|
Name string `json:"name"`
|
||||||
|
ID int `json:"id"`
|
||||||
|
} `json:"device"`
|
||||||
|
Cable int `json:"cable"`
|
||||||
|
ID int `json:"id"`
|
||||||
|
} `json:"bridge"`
|
||||||
|
CountIPAddresses int `json:"count_ipaddresses"`
|
||||||
|
MTU int `json:"mtu"`
|
||||||
|
TXPower int `json:"tx_power"`
|
||||||
|
CountFHRPGroups int `json:"count_fhrp_groups"`
|
||||||
|
RFChannelFrequency int `json:"rf_channel_frequency"`
|
||||||
|
ID int `json:"id"`
|
||||||
|
RFChannelWidth int `json:"rf_channel_width"`
|
||||||
|
ConnectedEndpointReachable bool `json:"connected_endpoint_reachable"`
|
||||||
|
MarkConnected bool `json:"mark_connected"`
|
||||||
|
MGMTOnly bool `json:"mgmt_only"`
|
||||||
|
Enabled bool `json:"enabled"`
|
||||||
|
Occupied bool `json:"_occupied"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// InterfaceFilter is used to filter out returned object from Netbox API dcim_interfaces_list
|
// InterfaceFilter is used to filter out returned object from Netbox API dcim_interfaces_list
|
||||||
|
|
Loading…
Reference in a new issue