From 6141b7114c973796f6ffb485808196445b55430b Mon Sep 17 00:00:00 2001 From: Kim Streich Date: Mon, 30 Sep 2024 19:01:18 -0600 Subject: [PATCH] Add updated_at to the allowed params for get_net_devices --- ncm/ncm/ncm.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ncm/ncm/ncm.py b/ncm/ncm/ncm.py index fba7f25..22b5b6d 100644 --- a/ncm/ncm/ncm.py +++ b/ncm/ncm/ncm.py @@ -1159,7 +1159,7 @@ def get_net_devices(self, **kwargs): 'connection_state__in', 'fields', 'id', 'id__in', 'is_asset', 'ipv4_address', 'ipv4_address__in', 'mode', 'mode__in', 'router', 'router__in', - 'expand', 'limit', 'offset'] + 'expand', 'limit', 'offset', 'updated_at__gt', 'updated_at__lt'] params = self.__parse_kwargs(kwargs, allowed_params) return self.__get_json(get_url, call_type, params=params)