You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
import pynetbox
from pynetbox.models.virtualization import VirtualMachines
nb = pynetbox.api(url="https://netbox.example.com", token="my-token")
vms = nb.virtualization.virtual_machines.filter(limit=1, offset=0)
for vm in vms:
assert isinstance(vm, VirtualMachines)
Expected Behavior
type of vm object should be VirtualMachines
Observed Behavior
type of vm object returned is Record
The text was updated successfully, but these errors were encountered:
pynetbox version
v7.4.1
NetBox version
v4.1.7
Python version
3.10
Steps to Reproduce
Expected Behavior
type of
vm
object should beVirtualMachines
Observed Behavior
type of
vm
object returned isRecord
The text was updated successfully, but these errors were encountered: