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 // This is the HCS Schema version of the HvSocket configuration. The VMWP version is located in Config.Devices.IC in V1. 13 type HvSocketSystemConfig struct { 14 15 // SDDL string that HvSocket will check before allowing a host process to bind to an unlisted service for this specific container/VM (not wildcard binds). 16 DefaultBindSecurityDescriptor string `json:"DefaultBindSecurityDescriptor,omitempty"` 17 18 // SDDL string that HvSocket will check before allowing a host process to connect to an unlisted service in the VM/container. 19 DefaultConnectSecurityDescriptor string `json:"DefaultConnectSecurityDescriptor,omitempty"` 20 21 ServiceTable map[string]HvSocketServiceConfig `json:"ServiceTable,omitempty"` 22 } 23