1description: >
2    Implement this to pass additional parameters to the create dump. Each
3    required parameter for the dump in the ibm domain should be added here as an
4    enum.
5
6enumerations:
7    - name: CreateParameters
8      description: >
9          Additional parameters for creating the dump.
10      values:
11          - name: "VSPString"
12            description: >
13                The resource dump is collected from various host resources. The
14                resource to collect the dump is indicated by using the resource
15                selector. The resource selector string needs to be passed to
16                host to generate a resource dump.
17          - name: "Password"
18            description: >
19                The password for authenticating the resource dump request.
20          - name: "ErrorLogId"
21            description: >
22                The id of the log associated with action which triggered the
23                dump. The value should be a 32 bit unsigned integer.
24          - name: "DumpType"
25            description: >
26                Type of the dump to be collected
27          - name: "FailingUnitId"
28            description: >
29                A unique id of failing hardware unit which is causing the dump.
30                The value should be a 32 bit unsigned integer.
31
32    - name: DumpType
33      description: >
34          Type of the host dump to be collected.
35      values:
36          - name: "Hostboot"
37            description: >
38                Hostboot dump is collected during a boot failure during the
39                hostboot booting phase.
40          - name: "Hardware"
41            description: >
42                Hardware dump is collected during a system checkstop.
43          - name: "System"
44            description: >
45                System Dump: A dump that contains certain hardware register data
46                and host memory.
47          - name: "Resource"
48            description: >
49                Resource Dump: A dump of host resources, created for various
50                host components. The content may vary accordingly.
51          - name: "SBE"
52            description: >
53                A dump collected from Self Boot Engine(SBE) on the processor
54                when it encounters an error and become unresponsive.
55          - name: "MemoryBufferSBE"
56            description: >
57                A dump collected from Self Boot Engine on the memory buffer when
58                it encounters critical failures or unresponsive.
59