registry_value.go 779 B

1234567891011121314151617181920212223242526272829303132
  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. package hcsschema
  10. type RegistryValue struct {
  11. Key *RegistryKey `json:"Key,omitempty"`
  12. Name string `json:"Name,omitempty"`
  13. Type_ string `json:"Type,omitempty"`
  14. // One and only one value type must be set.
  15. StringValue string `json:"StringValue,omitempty"`
  16. BinaryValue string `json:"BinaryValue,omitempty"`
  17. DWordValue int32 `json:"DWordValue,omitempty"`
  18. QWordValue int32 `json:"QWordValue,omitempty"`
  19. // Only used if RegistryValueType is CustomType The data is in BinaryValue
  20. CustomType int32 `json:"CustomType,omitempty"`
  21. }