Skip to content
This repository has been archived by the owner on Feb 6, 2023. It is now read-only.

Commit

Permalink
Merge pull request #188 from community-fabric/183-adding-inv-tables
Browse files Browse the repository at this point in the history
adding inv tables
  • Loading branch information
Justin Jeffery authored Dec 1, 2022
2 parents 7a52e96 + 25ee59e commit ad2f84e
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions ipfabric/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down

0 comments on commit ad2f84e

Please sign in to comment.