netbox-community / pynetbox

Python API client library for Netbox.
Apache License 2.0
567 stars 168 forks source link

Support for netbox-acls? #532

Closed fansari closed 1 year ago

fansari commented 1 year ago

Does pynetbox support netbox-acls or is this planned?

https://github.com/ryanmerolle/netbox-acls

arthanson commented 1 year ago

Not currently. pynetbox is designed to support the core NetBox and currently doesn't support plugins as this could cause a lot of maintainability issues. Calling directly via the requests library would work.

abhi1693 commented 1 year ago

@arthanson was the Plugins class removed recently?

Kani999 commented 1 year ago

I believe you can access the plugin endpoint by: nb.plugins.<plugin_name>.<plugin_model>.<action (get, create, etc)>

At least I use it like that but with version 6.6.2 right now.