mirror of
				https://gitea.com/Lydanne/buildx.git
				synced 2025-11-01 00:23:56 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			23 lines
		
	
	
		
			997 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			997 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| /*
 | |
|  * 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"`
 | |
| }
 | 
