|
@@ -6,6 +6,18 @@ import (
|
|
|
|
|
|
// Cluster is the interface for github.com/docker/docker/daemon/cluster.(*Cluster).
|
|
// Cluster is the interface for github.com/docker/docker/daemon/cluster.(*Cluster).
|
|
type Cluster interface {
|
|
type Cluster interface {
|
|
|
|
+ ClusterStatus
|
|
|
|
+ NetworkManager
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+// ClusterStatus interface provides information about the Swarm status of the Cluster
|
|
|
|
+type ClusterStatus interface {
|
|
|
|
+ IsAgent() bool
|
|
|
|
+ IsManager() bool
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+// NetworkManager provides methods to manage networks
|
|
|
|
+type NetworkManager interface {
|
|
GetNetwork(input string) (apitypes.NetworkResource, error)
|
|
GetNetwork(input string) (apitypes.NetworkResource, error)
|
|
GetNetworks() ([]apitypes.NetworkResource, error)
|
|
GetNetworks() ([]apitypes.NetworkResource, error)
|
|
RemoveNetwork(input string) error
|
|
RemoveNetwork(input string) error
|