...

Source file src/github.com/Microsoft/hcsshim/internal/hcs/schema2/guest_state.go

Documentation: github.com/Microsoft/hcsshim/internal/hcs/schema2

     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  
    10  package hcsschema
    11  
    12  type GuestState struct {
    13  
    14  	//  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.
    15  	GuestStateFilePath string `json:"GuestStateFilePath,omitempty"`
    16  
    17  	//  The guest state file type affected by different guest isolation modes - whether a file or block storage.
    18  	GuestStateFileType string `json:"GuestStateFileType,omitempty"`
    19  
    20  	//  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.
    21  	RuntimeStateFilePath string `json:"RuntimeStateFilePath,omitempty"`
    22  
    23  	//  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.
    24  	ForceTransientState bool `json:"ForceTransientState,omitempty"`
    25  }
    26  

View as plain text