Brad Bishop | a948d26 | 2016-10-05 19:51:48 -0400 | [diff] [blame] | 1 | description: > |
| 2 | Implement to provide inventory management features. |
| 3 | |
| 4 | An OpenBMC implementation providing inventory functions may provide zero |
Brad Bishop | 3b0cbc9 | 2017-01-18 08:25:51 -0500 | [diff] [blame] | 5 | or one implementation on the inventory namespace root. An implementing |
Brad Bishop | a948d26 | 2016-10-05 19:51:48 -0400 | [diff] [blame] | 6 | service should additionally implement org.freedesktop.DBus.ObjectManager |
| 7 | on the inventory namespace root. |
| 8 | methods: |
| 9 | - name: Notify |
| 10 | description: > |
| 11 | Signal the implementing service that an item is ready to have its |
| 12 | state managed. |
| 13 | parameters: |
Brad Bishop | a948d26 | 2016-10-05 19:51:48 -0400 | [diff] [blame] | 14 | - name: object |
Brad Bishop | 5d4f237 | 2017-01-22 11:23:56 -0500 | [diff] [blame] | 15 | type: dict[path,dict[string,dict[string,variant[boolean,int64,string]]]] |
Brad Bishop | a948d26 | 2016-10-05 19:51:48 -0400 | [diff] [blame] | 16 | description: > |
Brad Bishop | 5d4f237 | 2017-01-22 11:23:56 -0500 | [diff] [blame] | 17 | A dictionary of fully enumerated items to be managed. |
Brad Bishop | a948d26 | 2016-10-05 19:51:48 -0400 | [diff] [blame] | 18 | |
| 19 | # vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4 |