guest_state.go 1.1 KB

12345678910111213141516171819202122232425
  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 GuestState struct {
  11. // The path to an existing file uses for persistent guest state storage. An empty string indicates the system should initialize new transient, in-memory guest state.
  12. GuestStateFilePath string `json:"GuestStateFilePath,omitempty"`
  13. // The guest state file type affected by different guest isolation modes - whether a file or block storage.
  14. GuestStateFileType string `json:"GuestStateFileType,omitempty"`
  15. // The path to an existing file for persistent runtime state storage. An empty string indicates the system should initialize new transient, in-memory runtime state.
  16. RuntimeStateFilePath string `json:"RuntimeStateFilePath,omitempty"`
  17. // If true, the guest state and runtime state files will be used as templates to populate transient, in-memory state instead of using the files as persistent backing store.
  18. ForceTransientState bool `json:"ForceTransientState,omitempty"`
  19. }