container.go 939 B

123456789101112131415161718192021222324252627282930313233343536
  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 Container struct {
  11. GuestOs *GuestOs `json:"GuestOs,omitempty"`
  12. Storage *Storage `json:"Storage,omitempty"`
  13. MappedDirectories []MappedDirectory `json:"MappedDirectories,omitempty"`
  14. MappedPipes []MappedPipe `json:"MappedPipes,omitempty"`
  15. Memory *Memory `json:"Memory,omitempty"`
  16. Processor *Processor `json:"Processor,omitempty"`
  17. Networking *Networking `json:"Networking,omitempty"`
  18. HvSocket *HvSocket `json:"HvSocket,omitempty"`
  19. ContainerCredentialGuard *ContainerCredentialGuardState `json:"ContainerCredentialGuard,omitempty"`
  20. RegistryChanges *RegistryChanges `json:"RegistryChanges,omitempty"`
  21. AssignedDevices []Device `json:"AssignedDevices,omitempty"`
  22. }