12345678910111213141516171819202122232425 |
- /*
- * HCS API
- *
- * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
- *
- * API version: 2.1
- * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git)
- */
- package hcsschema
- type GuestState struct {
- // 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.
- GuestStateFilePath string `json:"GuestStateFilePath,omitempty"`
- // The guest state file type affected by different guest isolation modes - whether a file or block storage.
- GuestStateFileType string `json:"GuestStateFileType,omitempty"`
- // 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.
- RuntimeStateFilePath string `json:"RuntimeStateFilePath,omitempty"`
- // 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.
- ForceTransientState bool `json:"ForceTransientState,omitempty"`
- }
|