plugin_mount.go 700 B

12345678910111213141516171819202122232425262728293031323334353637
  1. package types
  2. // This file was generated by the swagger tool.
  3. // Editing this file might prove futile when you re-run the swagger generate command
  4. // PluginMount plugin mount
  5. // swagger:model PluginMount
  6. type PluginMount struct {
  7. // description
  8. // Required: true
  9. Description string `json:"Description"`
  10. // destination
  11. // Required: true
  12. Destination string `json:"Destination"`
  13. // name
  14. // Required: true
  15. Name string `json:"Name"`
  16. // options
  17. // Required: true
  18. Options []string `json:"Options"`
  19. // settable
  20. // Required: true
  21. Settable []string `json:"Settable"`
  22. // source
  23. // Required: true
  24. Source *string `json:"Source"`
  25. // type
  26. // Required: true
  27. Type string `json:"Type"`
  28. }