1234567891011121314151617181920212223 |
- /*
- * 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 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"`
- }
|