netbox-community / pynetbox

Python API client library for Netbox.
Apache License 2.0
538 stars 165 forks source link

Add `vpn` app for NetBox 3.7 compatibility #596

Closed markkuleinio closed 6 months ago

markkuleinio commented 7 months ago

Fixes: #595

Adds support for vpn app.

Before this patch:

>>> nb.version
'3.7'
>>> list(nb.vpn.tunnels.filter())
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
AttributeError: 'Api' object has no attribute 'vpn'
>>>

After this patch:

>>> list(nb.vpn.tunnels.filter())
[Tunnel1]
>>>
markkuleinio commented 6 months ago

Now that NetBox 3.7.0 is out, any comments from @arthanson or @abhi1693 ?

kuhball commented 6 months ago

Hi, would it be possible to create a new release containing this merged PR? :)