compute_system.go 717 B

12345678910111213141516171819202122232425262728
  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 ComputeSystem struct {
  11. Owner string `json:"Owner,omitempty"`
  12. SchemaVersion *Version `json:"SchemaVersion,omitempty"`
  13. HostingSystemId string `json:"HostingSystemId,omitempty"`
  14. HostedSystem *HostedSystem `json:"HostedSystem,omitempty"`
  15. Container *Container `json:"Container,omitempty"`
  16. VirtualMachine *VirtualMachine `json:"VirtualMachine,omitempty"`
  17. ShouldTerminateOnLastHandleClosed bool `json:"ShouldTerminateOnLastHandleClosed,omitempty"`
  18. }