go-netbox
go-netbox copied to clipboard
The official Go API client for Netbox IPAM and DCIM service.
The Swagger definition for the Scope field in a VLAN group is listed as a string, although it can be an object as well. Example: ``` "scope": { "id": 1,...
The data structure for an Ip Address AssignedObject (currently map[string]*string) causes a panic on un-marshalling Currently the return type from the API itself can be a mix of String, Int64...
Hello, When calling `IpamPrefixesAvailablePrefixesCreate` with a `/16` cidr block, this client library fails with the following error: ``` json: cannot unmarshal object into Go value of type []*models.Prefix ``` As...
Currently we are not tagging this library in a way that is compatible with what go mod suggests. It would be good to use semver. If we want to include...
I would like to add tags when creating for ClusterGroup. At the moment, there is no such possibility?
Hi All. I am pretty new to use golang client for netbox. I am trying to get the site list from Netbox and I would like to filter it using...
Hi Folks, I'd like to change just the status of a specific IP address but am having trouble with the golang client stubs sending too many address parameters. My code...
Hey guys, I have found a little bug while implementing a netbox based IP allocator. Example: ```go package main import ( "fmt" transport "github.com/go-openapi/runtime/client" "github.com/netbox-community/go-netbox/netbox/client" "github.com/netbox-community/go-netbox/netbox/client/ipam" "github.com/netbox-community/go-netbox/netbox/models" ) func main()...
When will a client for 2.10 be released ?
Hi, I currently want to write some struct data to a device's local_context_data. However since this parameter needs to be a *string ([local_context_data](https://github.com/netbox-community/go-netbox/blob/master/netbox/models/writable_device_with_config_context.go#L88)), I need to json.Marshal my go struct...