iov_settings.go 789 B

12345678910111213141516171819202122
  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.4
  7. * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git)
  8. */
  9. package hcsschema
  10. type IovSettings struct {
  11. // The weight assigned to this port for I/O virtualization (IOV) offloading.
  12. // Setting this to 0 disables IOV offloading.
  13. OffloadWeight *uint32 `json:"OffloadWeight,omitempty"`
  14. // The number of queue pairs requested for this port for I/O virtualization (IOV) offloading.
  15. QueuePairsRequested *uint32 `json:"QueuePairsRequested,omitempty"`
  16. // The interrupt moderation mode for I/O virtualization (IOV) offloading.
  17. InterruptModeration *InterruptModerationName `json:"InterruptModeration,omitempty"`
  18. }