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 RegistryValue struct { 13 Key *RegistryKey `json:"Key,omitempty"` 14 15 Name string `json:"Name,omitempty"` 16 17 Type_ string `json:"Type,omitempty"` 18 19 // One and only one value type must be set. 20 StringValue string `json:"StringValue,omitempty"` 21 22 BinaryValue string `json:"BinaryValue,omitempty"` 23 24 DWordValue int32 `json:"DWordValue,omitempty"` 25 26 QWordValue int32 `json:"QWordValue,omitempty"` 27 28 // Only used if RegistryValueType is CustomType The data is in BinaryValue 29 CustomType int32 `json:"CustomType,omitempty"` 30 } 31