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.4 7 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) 8 */ 9 10 package hcsschema 11 12 type IsolationSettings struct { 13 // Guest isolation type options to decide virtual trust levels of virtual machine 14 IsolationType string `json:"IsolationType,omitempty"` 15 // Configuration to debug HCL layer for HCS VM TODO: Task 31102306: Miss the way to prevent the exposure of private debug configuration in HCS TODO: Think about the secret configurations which are private in VMMS VM (only edit by hvsedit) 16 DebugHost string `json:"DebugHost,omitempty"` 17 DebugPort int64 `json:"DebugPort,omitempty"` 18 // Optional data passed by host on isolated virtual machine start 19 LaunchData string `json:"LaunchData,omitempty"` 20 HclEnabled bool `json:"HclEnabled,omitempty"` 21 } 22