guest_state.go 997 B

1234567891011121314151617181920212223
  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 path to an existing file for persistent runtime state storage. An empty string indicates the system should initialize new transient, in-memory runtime state.
  14. RuntimeStateFilePath string `json:"RuntimeStateFilePath,omitempty"`
  15. // 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.
  16. ForceTransientState bool `json:"ForceTransientState,omitempty"`
  17. }