2016-09-06 14:18:12 -04:00
|
|
|
package types
|
|
|
|
|
2016-10-05 16:25:09 -04:00
|
|
|
// This file was generated by the swagger tool.
|
|
|
|
// Editing this file might prove futile when you re-run the swagger generate command
|
|
|
|
|
2016-11-15 14:45:20 -05:00
|
|
|
// Plugin A plugin for the Engine API
|
2016-10-05 16:25:09 -04:00
|
|
|
// swagger:model Plugin
|
|
|
|
type Plugin struct {
|
|
|
|
|
|
|
|
// config
|
|
|
|
// Required: true
|
|
|
|
Config PluginConfig `json:"Config"`
|
|
|
|
|
|
|
|
// True when the plugin is running. False when the plugin is not running, only installed.
|
|
|
|
// Required: true
|
|
|
|
Enabled bool `json:"Enabled"`
|
|
|
|
|
|
|
|
// Id
|
|
|
|
ID string `json:"Id,omitempty"`
|
|
|
|
|
|
|
|
// name
|
|
|
|
// Required: true
|
|
|
|
Name string `json:"Name"`
|
|
|
|
|
2016-11-07 21:51:47 -05:00
|
|
|
// settings
|
|
|
|
// Required: true
|
|
|
|
Settings PluginSettings `json:"Settings"`
|
|
|
|
|
2016-10-05 16:25:09 -04:00
|
|
|
// tag
|
|
|
|
// Required: true
|
|
|
|
Tag string `json:"Tag"`
|
2016-09-06 14:18:12 -04:00
|
|
|
}
|
|
|
|
|
2016-11-07 21:51:47 -05:00
|
|
|
// PluginConfig The config of a plugin.
|
2016-10-05 16:25:09 -04:00
|
|
|
// swagger:model PluginConfig
|
2016-09-06 14:18:12 -04:00
|
|
|
type PluginConfig struct {
|
|
|
|
|
2016-10-05 16:25:09 -04:00
|
|
|
// args
|
|
|
|
// Required: true
|
2016-11-07 21:51:47 -05:00
|
|
|
Args PluginConfigArgs `json:"Args"`
|
2016-09-06 14:18:12 -04:00
|
|
|
|
2016-10-05 16:25:09 -04:00
|
|
|
// description
|
|
|
|
// Required: true
|
|
|
|
Description string `json:"Description"`
|
2016-09-06 14:18:12 -04:00
|
|
|
|
2016-10-05 16:25:09 -04:00
|
|
|
// documentation
|
|
|
|
// Required: true
|
|
|
|
Documentation string `json:"Documentation"`
|
2016-09-06 14:18:12 -04:00
|
|
|
|
2016-10-05 16:25:09 -04:00
|
|
|
// entrypoint
|
|
|
|
// Required: true
|
|
|
|
Entrypoint []string `json:"Entrypoint"`
|
|
|
|
|
|
|
|
// env
|
|
|
|
// Required: true
|
|
|
|
Env []PluginEnv `json:"Env"`
|
|
|
|
|
|
|
|
// interface
|
|
|
|
// Required: true
|
2016-11-07 21:51:47 -05:00
|
|
|
Interface PluginConfigInterface `json:"Interface"`
|
2016-09-06 14:18:12 -04:00
|
|
|
|
2016-09-09 12:27:53 -04:00
|
|
|
// linux
|
|
|
|
// Required: true
|
|
|
|
Linux PluginConfigLinux `json:"Linux"`
|
|
|
|
|
2016-10-05 16:25:09 -04:00
|
|
|
// mounts
|
|
|
|
// Required: true
|
|
|
|
Mounts []PluginMount `json:"Mounts"`
|
|
|
|
|
|
|
|
// network
|
|
|
|
// Required: true
|
2016-11-07 21:51:47 -05:00
|
|
|
Network PluginConfigNetwork `json:"Network"`
|
2016-10-05 16:25:09 -04:00
|
|
|
|
|
|
|
// user
|
2016-11-07 21:51:47 -05:00
|
|
|
User PluginConfigUser `json:"User,omitempty"`
|
2016-10-05 16:25:09 -04:00
|
|
|
|
|
|
|
// workdir
|
|
|
|
// Required: true
|
|
|
|
Workdir string `json:"Workdir"`
|
2016-09-06 14:18:12 -04:00
|
|
|
}
|
|
|
|
|
2016-11-07 21:51:47 -05:00
|
|
|
// PluginConfigArgs plugin config args
|
|
|
|
// swagger:model PluginConfigArgs
|
|
|
|
type PluginConfigArgs struct {
|
2016-10-05 16:25:09 -04:00
|
|
|
|
|
|
|
// description
|
|
|
|
// Required: true
|
|
|
|
Description string `json:"Description"`
|
|
|
|
|
|
|
|
// name
|
|
|
|
// Required: true
|
|
|
|
Name string `json:"Name"`
|
|
|
|
|
|
|
|
// settable
|
|
|
|
// Required: true
|
|
|
|
Settable []string `json:"Settable"`
|
|
|
|
|
|
|
|
// value
|
|
|
|
// Required: true
|
|
|
|
Value []string `json:"Value"`
|
2016-09-06 14:18:12 -04:00
|
|
|
}
|
|
|
|
|
2016-11-07 21:51:47 -05:00
|
|
|
// PluginConfigInterface The interface between Docker and the plugin
|
|
|
|
// swagger:model PluginConfigInterface
|
|
|
|
type PluginConfigInterface struct {
|
2016-10-05 16:25:09 -04:00
|
|
|
|
|
|
|
// socket
|
|
|
|
// Required: true
|
|
|
|
Socket string `json:"Socket"`
|
|
|
|
|
|
|
|
// types
|
|
|
|
// Required: true
|
|
|
|
Types []PluginInterfaceType `json:"Types"`
|
2016-09-06 14:18:12 -04:00
|
|
|
}
|
|
|
|
|
2016-09-09 12:27:53 -04:00
|
|
|
// PluginConfigLinux plugin config linux
|
|
|
|
// swagger:model PluginConfigLinux
|
|
|
|
type PluginConfigLinux struct {
|
|
|
|
|
|
|
|
// capabilities
|
|
|
|
// Required: true
|
|
|
|
Capabilities []string `json:"Capabilities"`
|
2016-11-16 19:18:43 -05:00
|
|
|
|
|
|
|
// device creation
|
|
|
|
// Required: true
|
|
|
|
DeviceCreation bool `json:"DeviceCreation"`
|
|
|
|
|
|
|
|
// devices
|
|
|
|
// Required: true
|
|
|
|
Devices []PluginDevice `json:"Devices"`
|
2016-09-09 12:27:53 -04:00
|
|
|
}
|
|
|
|
|
2016-11-07 21:51:47 -05:00
|
|
|
// PluginConfigNetwork plugin config network
|
|
|
|
// swagger:model PluginConfigNetwork
|
|
|
|
type PluginConfigNetwork struct {
|
2016-10-05 16:25:09 -04:00
|
|
|
|
|
|
|
// type
|
|
|
|
// Required: true
|
|
|
|
Type string `json:"Type"`
|
2016-09-06 14:18:12 -04:00
|
|
|
}
|
|
|
|
|
2016-11-07 21:51:47 -05:00
|
|
|
// PluginConfigUser plugin config user
|
|
|
|
// swagger:model PluginConfigUser
|
|
|
|
type PluginConfigUser struct {
|
2016-10-05 16:25:09 -04:00
|
|
|
|
|
|
|
// g ID
|
|
|
|
GID uint32 `json:"GID,omitempty"`
|
|
|
|
|
|
|
|
// UID
|
|
|
|
UID uint32 `json:"UID,omitempty"`
|
|
|
|
}
|
2016-11-07 21:51:47 -05:00
|
|
|
|
|
|
|
// PluginSettings Settings that can be modified by users.
|
|
|
|
// swagger:model PluginSettings
|
|
|
|
type PluginSettings struct {
|
|
|
|
|
|
|
|
// args
|
|
|
|
// Required: true
|
|
|
|
Args []string `json:"Args"`
|
|
|
|
|
|
|
|
// devices
|
|
|
|
// Required: true
|
|
|
|
Devices []PluginDevice `json:"Devices"`
|
|
|
|
|
|
|
|
// env
|
|
|
|
// Required: true
|
|
|
|
Env []string `json:"Env"`
|
|
|
|
|
|
|
|
// mounts
|
|
|
|
// Required: true
|
|
|
|
Mounts []PluginMount `json:"Mounts"`
|
|
|
|
}
|