|
@@ -3,40 +3,40 @@ package swarm // import "github.com/docker/docker/api/server/router/swarm"
|
|
|
import (
|
|
|
"context"
|
|
|
|
|
|
- basictypes "github.com/docker/docker/api/types"
|
|
|
+ "github.com/docker/docker/api/types"
|
|
|
"github.com/docker/docker/api/types/backend"
|
|
|
- types "github.com/docker/docker/api/types/swarm"
|
|
|
+ "github.com/docker/docker/api/types/swarm"
|
|
|
)
|
|
|
|
|
|
// Backend abstracts a swarm manager.
|
|
|
type Backend interface {
|
|
|
- Init(req types.InitRequest) (string, error)
|
|
|
- Join(req types.JoinRequest) error
|
|
|
+ Init(req swarm.InitRequest) (string, error)
|
|
|
+ Join(req swarm.JoinRequest) error
|
|
|
Leave(ctx context.Context, force bool) error
|
|
|
- Inspect() (types.Swarm, error)
|
|
|
- Update(uint64, types.Spec, types.UpdateFlags) error
|
|
|
+ Inspect() (swarm.Swarm, error)
|
|
|
+ Update(uint64, swarm.Spec, swarm.UpdateFlags) error
|
|
|
GetUnlockKey() (string, error)
|
|
|
- UnlockSwarm(req types.UnlockRequest) error
|
|
|
- GetServices(basictypes.ServiceListOptions) ([]types.Service, error)
|
|
|
- GetService(idOrName string, insertDefaults bool) (types.Service, error)
|
|
|
- CreateService(types.ServiceSpec, string, bool) (*basictypes.ServiceCreateResponse, error)
|
|
|
- UpdateService(string, uint64, types.ServiceSpec, basictypes.ServiceUpdateOptions, bool) (*basictypes.ServiceUpdateResponse, error)
|
|
|
+ UnlockSwarm(req swarm.UnlockRequest) error
|
|
|
+ GetServices(types.ServiceListOptions) ([]swarm.Service, error)
|
|
|
+ GetService(idOrName string, insertDefaults bool) (swarm.Service, error)
|
|
|
+ CreateService(swarm.ServiceSpec, string, bool) (*types.ServiceCreateResponse, error)
|
|
|
+ UpdateService(string, uint64, swarm.ServiceSpec, types.ServiceUpdateOptions, bool) (*swarm.ServiceUpdateResponse, error)
|
|
|
RemoveService(string) error
|
|
|
- ServiceLogs(context.Context, *backend.LogSelector, *basictypes.ContainerLogsOptions) (<-chan *backend.LogMessage, error)
|
|
|
- GetNodes(basictypes.NodeListOptions) ([]types.Node, error)
|
|
|
- GetNode(string) (types.Node, error)
|
|
|
- UpdateNode(string, uint64, types.NodeSpec) error
|
|
|
+ ServiceLogs(context.Context, *backend.LogSelector, *types.ContainerLogsOptions) (<-chan *backend.LogMessage, error)
|
|
|
+ GetNodes(types.NodeListOptions) ([]swarm.Node, error)
|
|
|
+ GetNode(string) (swarm.Node, error)
|
|
|
+ UpdateNode(string, uint64, swarm.NodeSpec) error
|
|
|
RemoveNode(string, bool) error
|
|
|
- GetTasks(basictypes.TaskListOptions) ([]types.Task, error)
|
|
|
- GetTask(string) (types.Task, error)
|
|
|
- GetSecrets(opts basictypes.SecretListOptions) ([]types.Secret, error)
|
|
|
- CreateSecret(s types.SecretSpec) (string, error)
|
|
|
+ GetTasks(types.TaskListOptions) ([]swarm.Task, error)
|
|
|
+ GetTask(string) (swarm.Task, error)
|
|
|
+ GetSecrets(opts types.SecretListOptions) ([]swarm.Secret, error)
|
|
|
+ CreateSecret(s swarm.SecretSpec) (string, error)
|
|
|
RemoveSecret(idOrName string) error
|
|
|
- GetSecret(id string) (types.Secret, error)
|
|
|
- UpdateSecret(idOrName string, version uint64, spec types.SecretSpec) error
|
|
|
- GetConfigs(opts basictypes.ConfigListOptions) ([]types.Config, error)
|
|
|
- CreateConfig(s types.ConfigSpec) (string, error)
|
|
|
+ GetSecret(id string) (swarm.Secret, error)
|
|
|
+ UpdateSecret(idOrName string, version uint64, spec swarm.SecretSpec) error
|
|
|
+ GetConfigs(opts types.ConfigListOptions) ([]swarm.Config, error)
|
|
|
+ CreateConfig(s swarm.ConfigSpec) (string, error)
|
|
|
RemoveConfig(id string) error
|
|
|
- GetConfig(id string) (types.Config, error)
|
|
|
- UpdateConfig(idOrName string, version uint64, spec types.ConfigSpec) error
|
|
|
+ GetConfig(id string) (swarm.Config, error)
|
|
|
+ UpdateConfig(idOrName string, version uint64, spec swarm.ConfigSpec) error
|
|
|
}
|