github.com/getong/docker@v1.13.1/api/types/plugin_mount.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 // PluginMount plugin mount 7 // swagger:model PluginMount 8 type PluginMount struct { 9 10 // description 11 // Required: true 12 Description string `json:"Description"` 13 14 // destination 15 // Required: true 16 Destination string `json:"Destination"` 17 18 // name 19 // Required: true 20 Name string `json:"Name"` 21 22 // options 23 // Required: true 24 Options []string `json:"Options"` 25 26 // settable 27 // Required: true 28 Settable []string `json:"Settable"` 29 30 // source 31 // Required: true 32 Source *string `json:"Source"` 33 34 // type 35 // Required: true 36 Type string `json:"Type"` 37 }