Jayanth Othayoth | eea9814 | 2017-04-05 00:58:48 -0500 | [diff] [blame] | 1 | description: > |
| 2 | Implement to provide Dump attributes. |
| 3 | |
| 4 | Object which implements this interface must implement |
| 5 | xyz.openbmc_project.Time.EpochTime for the Dump |
| 6 | creation time. |
| 7 | Object which implements this interface should implement |
| 8 | xyz.openbmc_project.Object.Delete to allow the deletion of |
| 9 | individual Dump objects. |
| 10 | |
Dhruvaraj Subhashchandran | 86d1ab1 | 2020-01-24 01:03:52 -0600 | [diff] [blame] | 11 | methods: |
| 12 | - name: InitiateOffload |
| 13 | description: > |
| 14 | This method initiates the offload of the dump from the dump storage. |
| 15 | The transfer will be initiated to the target provide. The caller of |
| 16 | this function should set up a method to transfer and pass the URI to |
| 17 | to this function. If there is no exceptions the caller can assume the |
| 18 | transfer is successfully initiated. Once the transfer is completed. |
| 19 | The application which is transferring the dump should set offloaded |
| 20 | property to true to indicate offload is completed. |
| 21 | parameters: |
| 22 | - name: OffloadUri |
| 23 | type: string |
| 24 | description: > |
Dhruvaraj Subhashchandran | 39ceb2f | 2020-06-24 14:48:44 -0500 | [diff] [blame] | 25 | The location to offload dump file, error InvalidArgument will be |
| 26 | returned if the URI is not well formated. |
| 27 | errors: |
| 28 | - xyz.openbmc_project.Common.File.Error.Open |
| 29 | - xyz.openbmc_project.Common.File.Error.Write |
| 30 | - xyz.openbmc_project.Common.Error.InvalidArgument |
Dhruvaraj Subhashchandran | 4740912 | 2021-01-13 07:39:25 -0600 | [diff] [blame] | 31 | - xyz.openbmc_project.Common.Error.NotAllowed |
Dhruvaraj Subhashchandran | 39ceb2f | 2020-06-24 14:48:44 -0500 | [diff] [blame] | 32 | |
Jayanth Othayoth | eea9814 | 2017-04-05 00:58:48 -0500 | [diff] [blame] | 33 | properties: |
| 34 | - name: Size |
| 35 | type: uint64 |
| 36 | description: > |
| 37 | Size of the Dump. |
Dhruvaraj Subhashchandran | 5006cdf | 2020-01-20 04:08:10 -0600 | [diff] [blame] | 38 | - name: Offloaded |
| 39 | type: boolean |
| 40 | description: > |
| 41 | Indicates whether the dump is offloaded to a client. |
| 42 | The BMC application which knows the status of the offload |
| 43 | operation should set this to true once the entire dump is |
| 44 | offloaded. |
Dhruvaraj Subhashchandran | 86d1ab1 | 2020-01-24 01:03:52 -0600 | [diff] [blame] | 45 | - name: OffloadUri |
| 46 | type: string |
| 47 | description: > |
| 48 | The URI to write the dump file. |