diff --git a/ipfabric/models.py b/ipfabric/models.py index 999a8f6..7a932de 100644 --- a/ipfabric/models.py +++ b/ipfabric/models.py @@ -124,6 +124,18 @@ def devices(self): def models(self): return Table(client=self.client, endpoint="/tables/inventory/summary/models") + @property + def os_version_consistency(self): + return Table(client=self.client, endpoint="tables/management/osver-consistency") + + @property + def eol_summary(self): + return Table(client=self.client, endpoint="tables/reports/eof/summary") + + @property + def eol_details(self): + return Table(client=self.client, endpoint="tables/reports/eof/detail") + @property def platforms(self): return Table(client=self.client, endpoint="/tables/inventory/summary/platforms")