github.com/cookieai-jar/moby@v17.12.1-ce-rc2+incompatible/api/types/plugin_device.go (about) 1 package types 2 3 // This file was generated by the swagger tool. 4 // Editing this file might prove futile when you re-run the swagger generate command 5 6 // PluginDevice plugin device 7 // swagger:model PluginDevice 8 type PluginDevice struct { 9 10 // description 11 // Required: true 12 Description string `json:"Description"` 13 14 // name 15 // Required: true 16 Name string `json:"Name"` 17 18 // path 19 // Required: true 20 Path *string `json:"Path"` 21 22 // settable 23 // Required: true 24 Settable []string `json:"Settable"` 25 }