debug_options.go 1012 B

12345678910111213141516171819202122
  1. /*
  2. * HCS API
  3. *
  4. * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
  5. *
  6. * API version: 2.1
  7. * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git)
  8. */
  9. package hcsschema
  10. type DebugOptions struct {
  11. // BugcheckSavedStateFileName is the path for the file in which the guest VM state will be saved when
  12. // the guest crashes.
  13. BugcheckSavedStateFileName string `json:"BugcheckSavedStateFileName,omitempty"`
  14. // BugcheckNoCrashdumpSavedStateFileName is the path of the file in which the guest VM state will be
  15. // saved when the guest crashes but the guest isn't able to generate the crash dump. This usually
  16. // happens in early boot failures.
  17. BugcheckNoCrashdumpSavedStateFileName string `json:"BugcheckNoCrashdumpSavedStateFileName,omitempty"`
  18. TripleFaultSavedStateFileName string `json:"TripleFaultSavedStateFileName,omitempty"`
  19. FirmwareDumpFileName string `json:"FirmwareDumpFileName,omitempty"`
  20. }