mirror of
https://github.com/psviderski/uncloud.git
synced 2026-08-26 19:13:34 +00:00
68 lines
2.5 KiB
Go
68 lines
2.5 KiB
Go
package api
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/docker/docker/api/types/container"
|
|
"github.com/docker/docker/api/types/volume"
|
|
"github.com/psviderski/uncloud/internal/machine/api/pb"
|
|
)
|
|
|
|
type Client interface {
|
|
ContainerClient
|
|
DNSClient
|
|
ImageClient
|
|
MachineClient
|
|
ServiceClient
|
|
VolumeClient
|
|
}
|
|
|
|
type ContainerClient interface {
|
|
CreateContainer(
|
|
ctx context.Context, serviceID string, spec ServiceSpec, machineID string,
|
|
) (container.CreateResponse, error)
|
|
ExecContainer(ctx context.Context, serviceNameOrID, containerNameOrID string, config ExecOptions) (int, error)
|
|
InspectContainer(ctx context.Context, serviceNameOrID, containerNameOrID string) (MachineServiceContainer, error)
|
|
StartContainer(ctx context.Context, serviceNameOrID, containerNameOrID string) error
|
|
StopContainer(ctx context.Context, serviceNameOrID, containerNameOrID string, opts container.StopOptions) error
|
|
RemoveContainer(ctx context.Context, serviceNameOrID, containerNameOrID string, opts container.RemoveOptions) error
|
|
WaitContainerHealthy(
|
|
ctx context.Context, serviceNameOrID, containerNameOrID string, opts WaitContainerHealthyOptions,
|
|
) error
|
|
}
|
|
|
|
type DNSClient interface {
|
|
GetDomain(ctx context.Context) (string, error)
|
|
}
|
|
|
|
type ImageClient interface {
|
|
InspectImage(ctx context.Context, id string) ([]MachineImage, error)
|
|
InspectRemoteImage(ctx context.Context, id string) ([]MachineRemoteImage, error)
|
|
}
|
|
|
|
type MachineClient interface {
|
|
InspectMachine(ctx context.Context, id string) (*pb.MachineMember, error)
|
|
ListMachines(ctx context.Context, filter *MachineFilter) (MachineMembersList, error)
|
|
UpdateMachine(ctx context.Context, req *pb.UpdateMachineRequest) (*pb.MachineInfo, error)
|
|
RenameMachine(ctx context.Context, nameOrID, newName string) (*pb.MachineInfo, error)
|
|
}
|
|
|
|
type ServiceClient interface {
|
|
RunService(ctx context.Context, spec ServiceSpec) (RunServiceResponse, error)
|
|
InspectService(ctx context.Context, id string) (Service, error)
|
|
RemoveService(ctx context.Context, id string) error
|
|
StopService(ctx context.Context, id string, opts container.StopOptions) error
|
|
StartService(ctx context.Context, id string) error
|
|
}
|
|
|
|
type VolumeClient interface {
|
|
CreateVolume(ctx context.Context, machineNameOrID string, opts volume.CreateOptions) (MachineVolume, error)
|
|
ListVolumes(ctx context.Context, filter *VolumeFilter) ([]MachineVolume, error)
|
|
RemoveVolume(ctx context.Context, machineNameOrID, volumeName string, force bool) error
|
|
}
|
|
|
|
// AsPtr returns a pointer to the given value. Useful for optional fields in API structs.
|
|
func AsPtr[T any](v T) *T {
|
|
return &v
|
|
}
|