testing

package
v0.0.0-...-298751d Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Apr 19, 2024 License: AGPL-3.0 Imports: 14 Imported by: 0

Documentation

Overview

Package testing contains the testing infrastructure to mock out the LXD API. Run 'go generate' to regenerate the mock interfaces.

Code generated by MockGen. DO NOT EDIT. Source: github.com/canonical/lxd/client (interfaces: Operation,RemoteOperation,Server,ImageServer,InstanceServer)

Generated by this command:

mockgen -package testing -destination lxd_mock.go -write_package_comment=false github.com/canonical/lxd/client Operation,RemoteOperation,Server,ImageServer,InstanceServer

Index

Constants

View Source
const ETag = "eTag"

Variables

View Source
var NoOpCallback = func(st status.Status, info string, data map[string]interface{}) error { return nil }

NoOpCallback can be passed to methods that receive a callback for setting status messages.

Functions

This section is empty.

Types

type BaseSuite

type BaseSuite struct {
	coretesting.BaseSuite
	// contains filtered or unexported fields
}

BaseSuite facilitates LXD testing. Do not instantiate this suite directly.

func (*BaseSuite) Arch

func (s *BaseSuite) Arch() string

func (*BaseSuite) NewMockServer

func (s *BaseSuite) NewMockServer(ctrl *gomock.Controller, svrMutations ...func(*lxdapi.Server)) *MockInstanceServer

NewMockServer initialises a mock container server and adds an expectation for the GetServer function, which is called each time NewClient is used to instantiate our wrapper. Any input mutations are applied to the return from the first GetServer call.

func (*BaseSuite) NewMockServerClustered

func (s *BaseSuite) NewMockServerClustered(ctrl *gomock.Controller, serverName string) *MockInstanceServer

func (*BaseSuite) NewMockServerWithExtensions

func (s *BaseSuite) NewMockServerWithExtensions(ctrl *gomock.Controller, extensions ...string) *MockInstanceServer

NewMockServerWithExtensions initialises a mock container server. The return from GetServer indicates the input supported API extensions.

func (*BaseSuite) SetUpSuite

func (s *BaseSuite) SetUpSuite(c *gc.C)

type MockImageServer

type MockImageServer struct {
	// contains filtered or unexported fields
}

MockImageServer is a mock of ImageServer interface.

func NewMockImageServer

func NewMockImageServer(ctrl *gomock.Controller) *MockImageServer

NewMockImageServer creates a new mock instance.

func (*MockImageServer) Disconnect

func (m *MockImageServer) Disconnect()

Disconnect mocks base method.

func (*MockImageServer) DoHTTP

func (m *MockImageServer) DoHTTP(arg0 *http.Request) (*http.Response, error)

DoHTTP mocks base method.

func (*MockImageServer) EXPECT

EXPECT returns an object that allows the caller to indicate expected use.

func (*MockImageServer) ExportImage

func (m *MockImageServer) ExportImage(arg0 string, arg1 api.ImageExportPost) (lxd.Operation, error)

ExportImage mocks base method.

func (*MockImageServer) GetConnectionInfo

func (m *MockImageServer) GetConnectionInfo() (*lxd.ConnectionInfo, error)

GetConnectionInfo mocks base method.

func (*MockImageServer) GetHTTPClient

func (m *MockImageServer) GetHTTPClient() (*http.Client, error)

GetHTTPClient mocks base method.

func (*MockImageServer) GetImage

func (m *MockImageServer) GetImage(arg0 string) (*api.Image, string, error)

GetImage mocks base method.

func (*MockImageServer) GetImageAlias

func (m *MockImageServer) GetImageAlias(arg0 string) (*api.ImageAliasesEntry, string, error)

GetImageAlias mocks base method.

func (*MockImageServer) GetImageAliasArchitectures

func (m *MockImageServer) GetImageAliasArchitectures(arg0, arg1 string) (map[string]*api.ImageAliasesEntry, error)

GetImageAliasArchitectures mocks base method.

func (*MockImageServer) GetImageAliasNames

func (m *MockImageServer) GetImageAliasNames() ([]string, error)

GetImageAliasNames mocks base method.

func (*MockImageServer) GetImageAliasType

func (m *MockImageServer) GetImageAliasType(arg0, arg1 string) (*api.ImageAliasesEntry, string, error)

GetImageAliasType mocks base method.

func (*MockImageServer) GetImageAliases

func (m *MockImageServer) GetImageAliases() ([]api.ImageAliasesEntry, error)

GetImageAliases mocks base method.

func (*MockImageServer) GetImageFile

func (m *MockImageServer) GetImageFile(arg0 string, arg1 lxd.ImageFileRequest) (*lxd.ImageFileResponse, error)

GetImageFile mocks base method.

func (*MockImageServer) GetImageFingerprints

func (m *MockImageServer) GetImageFingerprints() ([]string, error)

GetImageFingerprints mocks base method.

func (*MockImageServer) GetImageSecret

func (m *MockImageServer) GetImageSecret(arg0 string) (string, error)

GetImageSecret mocks base method.

func (*MockImageServer) GetImages

func (m *MockImageServer) GetImages() ([]api.Image, error)

GetImages mocks base method.

func (*MockImageServer) GetImagesWithFilter

func (m *MockImageServer) GetImagesWithFilter(arg0 []string) ([]api.Image, error)

GetImagesWithFilter mocks base method.

func (*MockImageServer) GetPrivateImage

func (m *MockImageServer) GetPrivateImage(arg0, arg1 string) (*api.Image, string, error)

GetPrivateImage mocks base method.

func (*MockImageServer) GetPrivateImageFile

func (m *MockImageServer) GetPrivateImageFile(arg0, arg1 string, arg2 lxd.ImageFileRequest) (*lxd.ImageFileResponse, error)

GetPrivateImageFile mocks base method.

type MockImageServerMockRecorder

type MockImageServerMockRecorder struct {
	// contains filtered or unexported fields
}

MockImageServerMockRecorder is the mock recorder for MockImageServer.

func (*MockImageServerMockRecorder) Disconnect

func (mr *MockImageServerMockRecorder) Disconnect() *gomock.Call

Disconnect indicates an expected call of Disconnect.

func (*MockImageServerMockRecorder) DoHTTP

func (mr *MockImageServerMockRecorder) DoHTTP(arg0 any) *gomock.Call

DoHTTP indicates an expected call of DoHTTP.

func (*MockImageServerMockRecorder) ExportImage

func (mr *MockImageServerMockRecorder) ExportImage(arg0, arg1 any) *gomock.Call

ExportImage indicates an expected call of ExportImage.

func (*MockImageServerMockRecorder) GetConnectionInfo

func (mr *MockImageServerMockRecorder) GetConnectionInfo() *gomock.Call

GetConnectionInfo indicates an expected call of GetConnectionInfo.

func (*MockImageServerMockRecorder) GetHTTPClient

func (mr *MockImageServerMockRecorder) GetHTTPClient() *gomock.Call

GetHTTPClient indicates an expected call of GetHTTPClient.

func (*MockImageServerMockRecorder) GetImage

func (mr *MockImageServerMockRecorder) GetImage(arg0 any) *gomock.Call

GetImage indicates an expected call of GetImage.

func (*MockImageServerMockRecorder) GetImageAlias

func (mr *MockImageServerMockRecorder) GetImageAlias(arg0 any) *gomock.Call

GetImageAlias indicates an expected call of GetImageAlias.

func (*MockImageServerMockRecorder) GetImageAliasArchitectures

func (mr *MockImageServerMockRecorder) GetImageAliasArchitectures(arg0, arg1 any) *gomock.Call

GetImageAliasArchitectures indicates an expected call of GetImageAliasArchitectures.

func (*MockImageServerMockRecorder) GetImageAliasNames

func (mr *MockImageServerMockRecorder) GetImageAliasNames() *gomock.Call

GetImageAliasNames indicates an expected call of GetImageAliasNames.

func (*MockImageServerMockRecorder) GetImageAliasType

func (mr *MockImageServerMockRecorder) GetImageAliasType(arg0, arg1 any) *gomock.Call

GetImageAliasType indicates an expected call of GetImageAliasType.

func (*MockImageServerMockRecorder) GetImageAliases

func (mr *MockImageServerMockRecorder) GetImageAliases() *gomock.Call

GetImageAliases indicates an expected call of GetImageAliases.

func (*MockImageServerMockRecorder) GetImageFile

func (mr *MockImageServerMockRecorder) GetImageFile(arg0, arg1 any) *gomock.Call

GetImageFile indicates an expected call of GetImageFile.

func (*MockImageServerMockRecorder) GetImageFingerprints

func (mr *MockImageServerMockRecorder) GetImageFingerprints() *gomock.Call

GetImageFingerprints indicates an expected call of GetImageFingerprints.

func (*MockImageServerMockRecorder) GetImageSecret

func (mr *MockImageServerMockRecorder) GetImageSecret(arg0 any) *gomock.Call

GetImageSecret indicates an expected call of GetImageSecret.

func (*MockImageServerMockRecorder) GetImages

func (mr *MockImageServerMockRecorder) GetImages() *gomock.Call

GetImages indicates an expected call of GetImages.

func (*MockImageServerMockRecorder) GetImagesWithFilter

func (mr *MockImageServerMockRecorder) GetImagesWithFilter(arg0 any) *gomock.Call

GetImagesWithFilter indicates an expected call of GetImagesWithFilter.

func (*MockImageServerMockRecorder) GetPrivateImage

func (mr *MockImageServerMockRecorder) GetPrivateImage(arg0, arg1 any) *gomock.Call

GetPrivateImage indicates an expected call of GetPrivateImage.

func (*MockImageServerMockRecorder) GetPrivateImageFile

func (mr *MockImageServerMockRecorder) GetPrivateImageFile(arg0, arg1, arg2 any) *gomock.Call

GetPrivateImageFile indicates an expected call of GetPrivateImageFile.

type MockInstanceServer

type MockInstanceServer struct {
	// contains filtered or unexported fields
}

MockInstanceServer is a mock of InstanceServer interface.

func NewMockInstanceServer

func NewMockInstanceServer(ctrl *gomock.Controller) *MockInstanceServer

NewMockInstanceServer creates a new mock instance.

func (*MockInstanceServer) ConsoleContainer

func (m *MockInstanceServer) ConsoleContainer(arg0 string, arg1 api.ContainerConsolePost, arg2 *lxd.ContainerConsoleArgs) (lxd.Operation, error)

ConsoleContainer mocks base method.

func (*MockInstanceServer) ConsoleInstance

func (m *MockInstanceServer) ConsoleInstance(arg0 string, arg1 api.InstanceConsolePost, arg2 *lxd.InstanceConsoleArgs) (lxd.Operation, error)

ConsoleInstance mocks base method.

func (*MockInstanceServer) ConsoleInstanceDynamic

func (m *MockInstanceServer) ConsoleInstanceDynamic(arg0 string, arg1 api.InstanceConsolePost, arg2 *lxd.InstanceConsoleArgs) (lxd.Operation, func(io.ReadWriteCloser) error, error)

ConsoleInstanceDynamic mocks base method.

func (*MockInstanceServer) CopyContainer

CopyContainer mocks base method.

func (*MockInstanceServer) CopyContainerSnapshot

CopyContainerSnapshot mocks base method.

func (*MockInstanceServer) CopyImage

func (m *MockInstanceServer) CopyImage(arg0 lxd.ImageServer, arg1 api.Image, arg2 *lxd.ImageCopyArgs) (lxd.RemoteOperation, error)

CopyImage mocks base method.

func (*MockInstanceServer) CopyInstance

CopyInstance mocks base method.

func (*MockInstanceServer) CopyInstanceSnapshot

CopyInstanceSnapshot mocks base method.

func (*MockInstanceServer) CopyStoragePoolVolume

func (m *MockInstanceServer) CopyStoragePoolVolume(arg0 string, arg1 lxd.InstanceServer, arg2 string, arg3 api.StorageVolume, arg4 *lxd.StoragePoolVolumeCopyArgs) (lxd.RemoteOperation, error)

CopyStoragePoolVolume mocks base method.

func (*MockInstanceServer) CreateCertificate

func (m *MockInstanceServer) CreateCertificate(arg0 api.CertificatesPost) error

CreateCertificate mocks base method.

func (*MockInstanceServer) CreateCertificateToken

func (m *MockInstanceServer) CreateCertificateToken(arg0 api.CertificatesPost) (lxd.Operation, error)

CreateCertificateToken mocks base method.

func (*MockInstanceServer) CreateClusterGroup

func (m *MockInstanceServer) CreateClusterGroup(arg0 api.ClusterGroupsPost) error

CreateClusterGroup mocks base method.

func (*MockInstanceServer) CreateClusterMember

func (m *MockInstanceServer) CreateClusterMember(arg0 api.ClusterMembersPost) (lxd.Operation, error)

CreateClusterMember mocks base method.

func (*MockInstanceServer) CreateContainer

func (m *MockInstanceServer) CreateContainer(arg0 api.ContainersPost) (lxd.Operation, error)

CreateContainer mocks base method.

func (*MockInstanceServer) CreateContainerBackup

func (m *MockInstanceServer) CreateContainerBackup(arg0 string, arg1 api.ContainerBackupsPost) (lxd.Operation, error)

CreateContainerBackup mocks base method.

func (*MockInstanceServer) CreateContainerFile

func (m *MockInstanceServer) CreateContainerFile(arg0, arg1 string, arg2 lxd.ContainerFileArgs) error

CreateContainerFile mocks base method.

func (*MockInstanceServer) CreateContainerFromBackup

func (m *MockInstanceServer) CreateContainerFromBackup(arg0 lxd.ContainerBackupArgs) (lxd.Operation, error)

CreateContainerFromBackup mocks base method.

func (*MockInstanceServer) CreateContainerFromImage

func (m *MockInstanceServer) CreateContainerFromImage(arg0 lxd.ImageServer, arg1 api.Image, arg2 api.ContainersPost) (lxd.RemoteOperation, error)

CreateContainerFromImage mocks base method.

func (*MockInstanceServer) CreateContainerSnapshot

func (m *MockInstanceServer) CreateContainerSnapshot(arg0 string, arg1 api.ContainerSnapshotsPost) (lxd.Operation, error)

CreateContainerSnapshot mocks base method.

func (*MockInstanceServer) CreateContainerTemplateFile

func (m *MockInstanceServer) CreateContainerTemplateFile(arg0, arg1 string, arg2 io.ReadSeeker) error

CreateContainerTemplateFile mocks base method.

func (*MockInstanceServer) CreateImage

func (m *MockInstanceServer) CreateImage(arg0 api.ImagesPost, arg1 *lxd.ImageCreateArgs) (lxd.Operation, error)

CreateImage mocks base method.

func (*MockInstanceServer) CreateImageAlias

func (m *MockInstanceServer) CreateImageAlias(arg0 api.ImageAliasesPost) error

CreateImageAlias mocks base method.

func (*MockInstanceServer) CreateImageSecret

func (m *MockInstanceServer) CreateImageSecret(arg0 string) (lxd.Operation, error)

CreateImageSecret mocks base method.

func (*MockInstanceServer) CreateInstance

func (m *MockInstanceServer) CreateInstance(arg0 api.InstancesPost) (lxd.Operation, error)

CreateInstance mocks base method.

func (*MockInstanceServer) CreateInstanceBackup

func (m *MockInstanceServer) CreateInstanceBackup(arg0 string, arg1 api.InstanceBackupsPost) (lxd.Operation, error)

CreateInstanceBackup mocks base method.

func (*MockInstanceServer) CreateInstanceFile

func (m *MockInstanceServer) CreateInstanceFile(arg0, arg1 string, arg2 lxd.InstanceFileArgs) error

CreateInstanceFile mocks base method.

func (*MockInstanceServer) CreateInstanceFromBackup

func (m *MockInstanceServer) CreateInstanceFromBackup(arg0 lxd.InstanceBackupArgs) (lxd.Operation, error)

CreateInstanceFromBackup mocks base method.

func (*MockInstanceServer) CreateInstanceFromImage

func (m *MockInstanceServer) CreateInstanceFromImage(arg0 lxd.ImageServer, arg1 api.Image, arg2 api.InstancesPost) (lxd.RemoteOperation, error)

CreateInstanceFromImage mocks base method.

func (*MockInstanceServer) CreateInstanceSnapshot

func (m *MockInstanceServer) CreateInstanceSnapshot(arg0 string, arg1 api.InstanceSnapshotsPost) (lxd.Operation, error)

CreateInstanceSnapshot mocks base method.

func (*MockInstanceServer) CreateInstanceTemplateFile

func (m *MockInstanceServer) CreateInstanceTemplateFile(arg0, arg1 string, arg2 io.ReadSeeker) error

CreateInstanceTemplateFile mocks base method.

func (*MockInstanceServer) CreateNetwork

func (m *MockInstanceServer) CreateNetwork(arg0 api.NetworksPost) error

CreateNetwork mocks base method.

func (*MockInstanceServer) CreateNetworkACL

func (m *MockInstanceServer) CreateNetworkACL(arg0 api.NetworkACLsPost) error

CreateNetworkACL mocks base method.

func (*MockInstanceServer) CreateNetworkForward

func (m *MockInstanceServer) CreateNetworkForward(arg0 string, arg1 api.NetworkForwardsPost) error

CreateNetworkForward mocks base method.

func (*MockInstanceServer) CreateNetworkLoadBalancer

func (m *MockInstanceServer) CreateNetworkLoadBalancer(arg0 string, arg1 api.NetworkLoadBalancersPost) error

CreateNetworkLoadBalancer mocks base method.

func (*MockInstanceServer) CreateNetworkPeer

func (m *MockInstanceServer) CreateNetworkPeer(arg0 string, arg1 api.NetworkPeersPost) error

CreateNetworkPeer mocks base method.

func (*MockInstanceServer) CreateNetworkZone

func (m *MockInstanceServer) CreateNetworkZone(arg0 api.NetworkZonesPost) error

CreateNetworkZone mocks base method.

func (*MockInstanceServer) CreateNetworkZoneRecord

func (m *MockInstanceServer) CreateNetworkZoneRecord(arg0 string, arg1 api.NetworkZoneRecordsPost) error

CreateNetworkZoneRecord mocks base method.

func (*MockInstanceServer) CreateProfile

func (m *MockInstanceServer) CreateProfile(arg0 api.ProfilesPost) error

CreateProfile mocks base method.

func (*MockInstanceServer) CreateProject

func (m *MockInstanceServer) CreateProject(arg0 api.ProjectsPost) error

CreateProject mocks base method.

func (*MockInstanceServer) CreateStoragePool

func (m *MockInstanceServer) CreateStoragePool(arg0 api.StoragePoolsPost) error

CreateStoragePool mocks base method.

func (*MockInstanceServer) CreateStoragePoolBucket

func (m *MockInstanceServer) CreateStoragePoolBucket(arg0 string, arg1 api.StorageBucketsPost) (*api.StorageBucketKey, error)

CreateStoragePoolBucket mocks base method.

func (*MockInstanceServer) CreateStoragePoolBucketKey

func (m *MockInstanceServer) CreateStoragePoolBucketKey(arg0, arg1 string, arg2 api.StorageBucketKeysPost) (*api.StorageBucketKey, error)

CreateStoragePoolBucketKey mocks base method.

func (*MockInstanceServer) CreateStoragePoolVolume

func (m *MockInstanceServer) CreateStoragePoolVolume(arg0 string, arg1 api.StorageVolumesPost) error

CreateStoragePoolVolume mocks base method.

func (*MockInstanceServer) CreateStoragePoolVolumeBackup

func (m *MockInstanceServer) CreateStoragePoolVolumeBackup(arg0, arg1 string, arg2 api.StoragePoolVolumeBackupsPost) (lxd.Operation, error)

CreateStoragePoolVolumeBackup mocks base method.

func (*MockInstanceServer) CreateStoragePoolVolumeFromBackup

func (m *MockInstanceServer) CreateStoragePoolVolumeFromBackup(arg0 string, arg1 lxd.StoragePoolVolumeBackupArgs) (lxd.Operation, error)

CreateStoragePoolVolumeFromBackup mocks base method.

func (*MockInstanceServer) CreateStoragePoolVolumeFromISO

func (m *MockInstanceServer) CreateStoragePoolVolumeFromISO(arg0 string, arg1 lxd.StoragePoolVolumeBackupArgs) (lxd.Operation, error)

CreateStoragePoolVolumeFromISO mocks base method.

func (*MockInstanceServer) CreateStoragePoolVolumeSnapshot

func (m *MockInstanceServer) CreateStoragePoolVolumeSnapshot(arg0, arg1, arg2 string, arg3 api.StorageVolumeSnapshotsPost) (lxd.Operation, error)

CreateStoragePoolVolumeSnapshot mocks base method.

func (*MockInstanceServer) DeleteCertificate

func (m *MockInstanceServer) DeleteCertificate(arg0 string) error

DeleteCertificate mocks base method.

func (*MockInstanceServer) DeleteClusterGroup

func (m *MockInstanceServer) DeleteClusterGroup(arg0 string) error

DeleteClusterGroup mocks base method.

func (*MockInstanceServer) DeleteClusterMember

func (m *MockInstanceServer) DeleteClusterMember(arg0 string, arg1 bool) error

DeleteClusterMember mocks base method.

func (*MockInstanceServer) DeleteContainer

func (m *MockInstanceServer) DeleteContainer(arg0 string) (lxd.Operation, error)

DeleteContainer mocks base method.

func (*MockInstanceServer) DeleteContainerBackup

func (m *MockInstanceServer) DeleteContainerBackup(arg0, arg1 string) (lxd.Operation, error)

DeleteContainerBackup mocks base method.

func (*MockInstanceServer) DeleteContainerConsoleLog

func (m *MockInstanceServer) DeleteContainerConsoleLog(arg0 string, arg1 *lxd.ContainerConsoleLogArgs) error

DeleteContainerConsoleLog mocks base method.

func (*MockInstanceServer) DeleteContainerFile

func (m *MockInstanceServer) DeleteContainerFile(arg0, arg1 string) error

DeleteContainerFile mocks base method.

func (*MockInstanceServer) DeleteContainerLogfile

func (m *MockInstanceServer) DeleteContainerLogfile(arg0, arg1 string) error

DeleteContainerLogfile mocks base method.

func (*MockInstanceServer) DeleteContainerSnapshot

func (m *MockInstanceServer) DeleteContainerSnapshot(arg0, arg1 string) (lxd.Operation, error)

DeleteContainerSnapshot mocks base method.

func (*MockInstanceServer) DeleteContainerTemplateFile

func (m *MockInstanceServer) DeleteContainerTemplateFile(arg0, arg1 string) error

DeleteContainerTemplateFile mocks base method.

func (*MockInstanceServer) DeleteImage

func (m *MockInstanceServer) DeleteImage(arg0 string) (lxd.Operation, error)

DeleteImage mocks base method.

func (*MockInstanceServer) DeleteImageAlias

func (m *MockInstanceServer) DeleteImageAlias(arg0 string) error

DeleteImageAlias mocks base method.

func (*MockInstanceServer) DeleteInstance

func (m *MockInstanceServer) DeleteInstance(arg0 string) (lxd.Operation, error)

DeleteInstance mocks base method.

func (*MockInstanceServer) DeleteInstanceBackup

func (m *MockInstanceServer) DeleteInstanceBackup(arg0, arg1 string) (lxd.Operation, error)

DeleteInstanceBackup mocks base method.

func (*MockInstanceServer) DeleteInstanceConsoleLog

func (m *MockInstanceServer) DeleteInstanceConsoleLog(arg0 string, arg1 *lxd.InstanceConsoleLogArgs) error

DeleteInstanceConsoleLog mocks base method.

func (*MockInstanceServer) DeleteInstanceFile

func (m *MockInstanceServer) DeleteInstanceFile(arg0, arg1 string) error

DeleteInstanceFile mocks base method.

func (*MockInstanceServer) DeleteInstanceLogfile

func (m *MockInstanceServer) DeleteInstanceLogfile(arg0, arg1 string) error

DeleteInstanceLogfile mocks base method.

func (*MockInstanceServer) DeleteInstanceSnapshot

func (m *MockInstanceServer) DeleteInstanceSnapshot(arg0, arg1 string) (lxd.Operation, error)

DeleteInstanceSnapshot mocks base method.

func (*MockInstanceServer) DeleteInstanceTemplateFile

func (m *MockInstanceServer) DeleteInstanceTemplateFile(arg0, arg1 string) error

DeleteInstanceTemplateFile mocks base method.

func (*MockInstanceServer) DeleteNetwork

func (m *MockInstanceServer) DeleteNetwork(arg0 string) error

DeleteNetwork mocks base method.

func (*MockInstanceServer) DeleteNetworkACL

func (m *MockInstanceServer) DeleteNetworkACL(arg0 string) error

DeleteNetworkACL mocks base method.

func (*MockInstanceServer) DeleteNetworkForward

func (m *MockInstanceServer) DeleteNetworkForward(arg0, arg1 string) error

DeleteNetworkForward mocks base method.

func (*MockInstanceServer) DeleteNetworkLoadBalancer

func (m *MockInstanceServer) DeleteNetworkLoadBalancer(arg0, arg1 string) error

DeleteNetworkLoadBalancer mocks base method.

func (*MockInstanceServer) DeleteNetworkPeer

func (m *MockInstanceServer) DeleteNetworkPeer(arg0, arg1 string) error

DeleteNetworkPeer mocks base method.

func (*MockInstanceServer) DeleteNetworkZone

func (m *MockInstanceServer) DeleteNetworkZone(arg0 string) error

DeleteNetworkZone mocks base method.

func (*MockInstanceServer) DeleteNetworkZoneRecord

func (m *MockInstanceServer) DeleteNetworkZoneRecord(arg0, arg1 string) error

DeleteNetworkZoneRecord mocks base method.

func (*MockInstanceServer) DeleteOperation

func (m *MockInstanceServer) DeleteOperation(arg0 string) error

DeleteOperation mocks base method.

func (*MockInstanceServer) DeleteProfile

func (m *MockInstanceServer) DeleteProfile(arg0 string) error

DeleteProfile mocks base method.

func (*MockInstanceServer) DeleteProject

func (m *MockInstanceServer) DeleteProject(arg0 string) error

DeleteProject mocks base method.

func (*MockInstanceServer) DeleteStoragePool

func (m *MockInstanceServer) DeleteStoragePool(arg0 string) error

DeleteStoragePool mocks base method.

func (*MockInstanceServer) DeleteStoragePoolBucket

func (m *MockInstanceServer) DeleteStoragePoolBucket(arg0, arg1 string) error

DeleteStoragePoolBucket mocks base method.

func (*MockInstanceServer) DeleteStoragePoolBucketKey

func (m *MockInstanceServer) DeleteStoragePoolBucketKey(arg0, arg1, arg2 string) error

DeleteStoragePoolBucketKey mocks base method.

func (*MockInstanceServer) DeleteStoragePoolVolume

func (m *MockInstanceServer) DeleteStoragePoolVolume(arg0, arg1, arg2 string) error

DeleteStoragePoolVolume mocks base method.

func (*MockInstanceServer) DeleteStoragePoolVolumeBackup

func (m *MockInstanceServer) DeleteStoragePoolVolumeBackup(arg0, arg1, arg2 string) (lxd.Operation, error)

DeleteStoragePoolVolumeBackup mocks base method.

func (*MockInstanceServer) DeleteStoragePoolVolumeSnapshot

func (m *MockInstanceServer) DeleteStoragePoolVolumeSnapshot(arg0, arg1, arg2, arg3 string) (lxd.Operation, error)

DeleteStoragePoolVolumeSnapshot mocks base method.

func (*MockInstanceServer) DeleteWarning

func (m *MockInstanceServer) DeleteWarning(arg0 string) error

DeleteWarning mocks base method.

func (*MockInstanceServer) Disconnect

func (m *MockInstanceServer) Disconnect()

Disconnect mocks base method.

func (*MockInstanceServer) DoHTTP

func (m *MockInstanceServer) DoHTTP(arg0 *http.Request) (*http.Response, error)

DoHTTP mocks base method.

func (*MockInstanceServer) EXPECT

EXPECT returns an object that allows the caller to indicate expected use.

func (*MockInstanceServer) ExecContainer

func (m *MockInstanceServer) ExecContainer(arg0 string, arg1 api.ContainerExecPost, arg2 *lxd.ContainerExecArgs) (lxd.Operation, error)

ExecContainer mocks base method.

func (*MockInstanceServer) ExecInstance

func (m *MockInstanceServer) ExecInstance(arg0 string, arg1 api.InstanceExecPost, arg2 *lxd.InstanceExecArgs) (lxd.Operation, error)

ExecInstance mocks base method.

func (*MockInstanceServer) ExportImage

func (m *MockInstanceServer) ExportImage(arg0 string, arg1 api.ImageExportPost) (lxd.Operation, error)

ExportImage mocks base method.

func (*MockInstanceServer) GetCertificate

func (m *MockInstanceServer) GetCertificate(arg0 string) (*api.Certificate, string, error)

GetCertificate mocks base method.

func (*MockInstanceServer) GetCertificateFingerprints

func (m *MockInstanceServer) GetCertificateFingerprints() ([]string, error)

GetCertificateFingerprints mocks base method.

func (*MockInstanceServer) GetCertificates

func (m *MockInstanceServer) GetCertificates() ([]api.Certificate, error)

GetCertificates mocks base method.

func (*MockInstanceServer) GetCluster

func (m *MockInstanceServer) GetCluster() (*api.Cluster, string, error)

GetCluster mocks base method.

func (*MockInstanceServer) GetClusterGroup

func (m *MockInstanceServer) GetClusterGroup(arg0 string) (*api.ClusterGroup, string, error)

GetClusterGroup mocks base method.

func (*MockInstanceServer) GetClusterGroupNames

func (m *MockInstanceServer) GetClusterGroupNames() ([]string, error)

GetClusterGroupNames mocks base method.

func (*MockInstanceServer) GetClusterGroups

func (m *MockInstanceServer) GetClusterGroups() ([]api.ClusterGroup, error)

GetClusterGroups mocks base method.

func (*MockInstanceServer) GetClusterMember

func (m *MockInstanceServer) GetClusterMember(arg0 string) (*api.ClusterMember, string, error)

GetClusterMember mocks base method.

func (*MockInstanceServer) GetClusterMemberNames

func (m *MockInstanceServer) GetClusterMemberNames() ([]string, error)

GetClusterMemberNames mocks base method.

func (*MockInstanceServer) GetClusterMemberState

func (m *MockInstanceServer) GetClusterMemberState(arg0 string) (*api.ClusterMemberState, string, error)

GetClusterMemberState mocks base method.

func (*MockInstanceServer) GetClusterMembers

func (m *MockInstanceServer) GetClusterMembers() ([]api.ClusterMember, error)

GetClusterMembers mocks base method.

func (*MockInstanceServer) GetConnectionInfo

func (m *MockInstanceServer) GetConnectionInfo() (*lxd.ConnectionInfo, error)

GetConnectionInfo mocks base method.

func (*MockInstanceServer) GetContainer

func (m *MockInstanceServer) GetContainer(arg0 string) (*api.Container, string, error)

GetContainer mocks base method.

func (*MockInstanceServer) GetContainerBackup

func (m *MockInstanceServer) GetContainerBackup(arg0, arg1 string) (*api.ContainerBackup, string, error)

GetContainerBackup mocks base method.

func (*MockInstanceServer) GetContainerBackupFile

func (m *MockInstanceServer) GetContainerBackupFile(arg0, arg1 string, arg2 *lxd.BackupFileRequest) (*lxd.BackupFileResponse, error)

GetContainerBackupFile mocks base method.

func (*MockInstanceServer) GetContainerBackupNames

func (m *MockInstanceServer) GetContainerBackupNames(arg0 string) ([]string, error)

GetContainerBackupNames mocks base method.

func (*MockInstanceServer) GetContainerBackups

func (m *MockInstanceServer) GetContainerBackups(arg0 string) ([]api.ContainerBackup, error)

GetContainerBackups mocks base method.

func (*MockInstanceServer) GetContainerConsoleLog

func (m *MockInstanceServer) GetContainerConsoleLog(arg0 string, arg1 *lxd.ContainerConsoleLogArgs) (io.ReadCloser, error)

GetContainerConsoleLog mocks base method.

func (*MockInstanceServer) GetContainerFile

func (m *MockInstanceServer) GetContainerFile(arg0, arg1 string) (io.ReadCloser, *lxd.ContainerFileResponse, error)

GetContainerFile mocks base method.

func (*MockInstanceServer) GetContainerLogfile

func (m *MockInstanceServer) GetContainerLogfile(arg0, arg1 string) (io.ReadCloser, error)

GetContainerLogfile mocks base method.

func (*MockInstanceServer) GetContainerLogfiles

func (m *MockInstanceServer) GetContainerLogfiles(arg0 string) ([]string, error)

GetContainerLogfiles mocks base method.

func (*MockInstanceServer) GetContainerMetadata

func (m *MockInstanceServer) GetContainerMetadata(arg0 string) (*api.ImageMetadata, string, error)

GetContainerMetadata mocks base method.

func (*MockInstanceServer) GetContainerNames

func (m *MockInstanceServer) GetContainerNames() ([]string, error)

GetContainerNames mocks base method.

func (*MockInstanceServer) GetContainerSnapshot

func (m *MockInstanceServer) GetContainerSnapshot(arg0, arg1 string) (*api.ContainerSnapshot, string, error)

GetContainerSnapshot mocks base method.

func (*MockInstanceServer) GetContainerSnapshotNames

func (m *MockInstanceServer) GetContainerSnapshotNames(arg0 string) ([]string, error)

GetContainerSnapshotNames mocks base method.

func (*MockInstanceServer) GetContainerSnapshots

func (m *MockInstanceServer) GetContainerSnapshots(arg0 string) ([]api.ContainerSnapshot, error)

GetContainerSnapshots mocks base method.

func (*MockInstanceServer) GetContainerState

func (m *MockInstanceServer) GetContainerState(arg0 string) (*api.ContainerState, string, error)

GetContainerState mocks base method.

func (*MockInstanceServer) GetContainerTemplateFile

func (m *MockInstanceServer) GetContainerTemplateFile(arg0, arg1 string) (io.ReadCloser, error)

GetContainerTemplateFile mocks base method.

func (*MockInstanceServer) GetContainerTemplateFiles

func (m *MockInstanceServer) GetContainerTemplateFiles(arg0 string) ([]string, error)

GetContainerTemplateFiles mocks base method.

func (*MockInstanceServer) GetContainers

func (m *MockInstanceServer) GetContainers() ([]api.Container, error)

GetContainers mocks base method.

func (*MockInstanceServer) GetContainersFull

func (m *MockInstanceServer) GetContainersFull() ([]api.ContainerFull, error)

GetContainersFull mocks base method.

func (*MockInstanceServer) GetEvents

func (m *MockInstanceServer) GetEvents() (*lxd.EventListener, error)

GetEvents mocks base method.

func (*MockInstanceServer) GetEventsAllProjects

func (m *MockInstanceServer) GetEventsAllProjects() (*lxd.EventListener, error)

GetEventsAllProjects mocks base method.

func (*MockInstanceServer) GetHTTPClient

func (m *MockInstanceServer) GetHTTPClient() (*http.Client, error)

GetHTTPClient mocks base method.

func (*MockInstanceServer) GetImage

func (m *MockInstanceServer) GetImage(arg0 string) (*api.Image, string, error)

GetImage mocks base method.

func (*MockInstanceServer) GetImageAlias

func (m *MockInstanceServer) GetImageAlias(arg0 string) (*api.ImageAliasesEntry, string, error)

GetImageAlias mocks base method.

func (*MockInstanceServer) GetImageAliasArchitectures

func (m *MockInstanceServer) GetImageAliasArchitectures(arg0, arg1 string) (map[string]*api.ImageAliasesEntry, error)

GetImageAliasArchitectures mocks base method.

func (*MockInstanceServer) GetImageAliasNames

func (m *MockInstanceServer) GetImageAliasNames() ([]string, error)

GetImageAliasNames mocks base method.

func (*MockInstanceServer) GetImageAliasType

func (m *MockInstanceServer) GetImageAliasType(arg0, arg1 string) (*api.ImageAliasesEntry, string, error)

GetImageAliasType mocks base method.

func (*MockInstanceServer) GetImageAliases

func (m *MockInstanceServer) GetImageAliases() ([]api.ImageAliasesEntry, error)

GetImageAliases mocks base method.

func (*MockInstanceServer) GetImageFile

func (m *MockInstanceServer) GetImageFile(arg0 string, arg1 lxd.ImageFileRequest) (*lxd.ImageFileResponse, error)

GetImageFile mocks base method.

func (*MockInstanceServer) GetImageFingerprints

func (m *MockInstanceServer) GetImageFingerprints() ([]string, error)

GetImageFingerprints mocks base method.

func (*MockInstanceServer) GetImageSecret

func (m *MockInstanceServer) GetImageSecret(arg0 string) (string, error)

GetImageSecret mocks base method.

func (*MockInstanceServer) GetImages

func (m *MockInstanceServer) GetImages() ([]api.Image, error)

GetImages mocks base method.

func (*MockInstanceServer) GetImagesWithFilter

func (m *MockInstanceServer) GetImagesWithFilter(arg0 []string) ([]api.Image, error)

GetImagesWithFilter mocks base method.

func (*MockInstanceServer) GetInstance

func (m *MockInstanceServer) GetInstance(arg0 string) (*api.Instance, string, error)

GetInstance mocks base method.

func (*MockInstanceServer) GetInstanceBackup

func (m *MockInstanceServer) GetInstanceBackup(arg0, arg1 string) (*api.InstanceBackup, string, error)

GetInstanceBackup mocks base method.

func (*MockInstanceServer) GetInstanceBackupFile

func (m *MockInstanceServer) GetInstanceBackupFile(arg0, arg1 string, arg2 *lxd.BackupFileRequest) (*lxd.BackupFileResponse, error)

GetInstanceBackupFile mocks base method.

func (*MockInstanceServer) GetInstanceBackupNames

func (m *MockInstanceServer) GetInstanceBackupNames(arg0 string) ([]string, error)

GetInstanceBackupNames mocks base method.

func (*MockInstanceServer) GetInstanceBackups

func (m *MockInstanceServer) GetInstanceBackups(arg0 string) ([]api.InstanceBackup, error)

GetInstanceBackups mocks base method.

func (*MockInstanceServer) GetInstanceConsoleLog

func (m *MockInstanceServer) GetInstanceConsoleLog(arg0 string, arg1 *lxd.InstanceConsoleLogArgs) (io.ReadCloser, error)

GetInstanceConsoleLog mocks base method.

func (*MockInstanceServer) GetInstanceFile

func (m *MockInstanceServer) GetInstanceFile(arg0, arg1 string) (io.ReadCloser, *lxd.InstanceFileResponse, error)

GetInstanceFile mocks base method.

func (*MockInstanceServer) GetInstanceFileSFTP

func (m *MockInstanceServer) GetInstanceFileSFTP(arg0 string) (*sftp.Client, error)

GetInstanceFileSFTP mocks base method.

func (*MockInstanceServer) GetInstanceFileSFTPConn

func (m *MockInstanceServer) GetInstanceFileSFTPConn(arg0 string) (net.Conn, error)

GetInstanceFileSFTPConn mocks base method.

func (*MockInstanceServer) GetInstanceFull

func (m *MockInstanceServer) GetInstanceFull(arg0 string) (*api.InstanceFull, string, error)

GetInstanceFull mocks base method.

func (*MockInstanceServer) GetInstanceLogfile

func (m *MockInstanceServer) GetInstanceLogfile(arg0, arg1 string) (io.ReadCloser, error)

GetInstanceLogfile mocks base method.

func (*MockInstanceServer) GetInstanceLogfiles

func (m *MockInstanceServer) GetInstanceLogfiles(arg0 string) ([]string, error)

GetInstanceLogfiles mocks base method.

func (*MockInstanceServer) GetInstanceMetadata

func (m *MockInstanceServer) GetInstanceMetadata(arg0 string) (*api.ImageMetadata, string, error)

GetInstanceMetadata mocks base method.

func (*MockInstanceServer) GetInstanceNames

func (m *MockInstanceServer) GetInstanceNames(arg0 api.InstanceType) ([]string, error)

GetInstanceNames mocks base method.

func (*MockInstanceServer) GetInstanceNamesAllProjects

func (m *MockInstanceServer) GetInstanceNamesAllProjects(arg0 api.InstanceType) (map[string][]string, error)

GetInstanceNamesAllProjects mocks base method.

func (*MockInstanceServer) GetInstanceSnapshot

func (m *MockInstanceServer) GetInstanceSnapshot(arg0, arg1 string) (*api.InstanceSnapshot, string, error)

GetInstanceSnapshot mocks base method.

func (*MockInstanceServer) GetInstanceSnapshotNames

func (m *MockInstanceServer) GetInstanceSnapshotNames(arg0 string) ([]string, error)

GetInstanceSnapshotNames mocks base method.

func (*MockInstanceServer) GetInstanceSnapshots

func (m *MockInstanceServer) GetInstanceSnapshots(arg0 string) ([]api.InstanceSnapshot, error)

GetInstanceSnapshots mocks base method.

func (*MockInstanceServer) GetInstanceState

func (m *MockInstanceServer) GetInstanceState(arg0 string) (*api.InstanceState, string, error)

GetInstanceState mocks base method.

func (*MockInstanceServer) GetInstanceTemplateFile

func (m *MockInstanceServer) GetInstanceTemplateFile(arg0, arg1 string) (io.ReadCloser, error)

GetInstanceTemplateFile mocks base method.

func (*MockInstanceServer) GetInstanceTemplateFiles

func (m *MockInstanceServer) GetInstanceTemplateFiles(arg0 string) ([]string, error)

GetInstanceTemplateFiles mocks base method.

func (*MockInstanceServer) GetInstances

func (m *MockInstanceServer) GetInstances(arg0 api.InstanceType) ([]api.Instance, error)

GetInstances mocks base method.

func (*MockInstanceServer) GetInstancesAllProjects

func (m *MockInstanceServer) GetInstancesAllProjects(arg0 api.InstanceType) ([]api.Instance, error)

GetInstancesAllProjects mocks base method.

func (*MockInstanceServer) GetInstancesAllProjectsWithFilter

func (m *MockInstanceServer) GetInstancesAllProjectsWithFilter(arg0 api.InstanceType, arg1 []string) ([]api.Instance, error)

GetInstancesAllProjectsWithFilter mocks base method.

func (*MockInstanceServer) GetInstancesFull

func (m *MockInstanceServer) GetInstancesFull(arg0 api.InstanceType) ([]api.InstanceFull, error)

GetInstancesFull mocks base method.

func (*MockInstanceServer) GetInstancesFullAllProjects

func (m *MockInstanceServer) GetInstancesFullAllProjects(arg0 api.InstanceType) ([]api.InstanceFull, error)

GetInstancesFullAllProjects mocks base method.

func (*MockInstanceServer) GetInstancesFullAllProjectsWithFilter

func (m *MockInstanceServer) GetInstancesFullAllProjectsWithFilter(arg0 api.InstanceType, arg1 []string) ([]api.InstanceFull, error)

GetInstancesFullAllProjectsWithFilter mocks base method.

func (*MockInstanceServer) GetInstancesFullWithFilter

func (m *MockInstanceServer) GetInstancesFullWithFilter(arg0 api.InstanceType, arg1 []string) ([]api.InstanceFull, error)

GetInstancesFullWithFilter mocks base method.

func (*MockInstanceServer) GetInstancesWithFilter

func (m *MockInstanceServer) GetInstancesWithFilter(arg0 api.InstanceType, arg1 []string) ([]api.Instance, error)

GetInstancesWithFilter mocks base method.

func (*MockInstanceServer) GetMetrics

func (m *MockInstanceServer) GetMetrics() (string, error)

GetMetrics mocks base method.

func (*MockInstanceServer) GetNetwork

func (m *MockInstanceServer) GetNetwork(arg0 string) (*api.Network, string, error)

GetNetwork mocks base method.

func (*MockInstanceServer) GetNetworkACL

func (m *MockInstanceServer) GetNetworkACL(arg0 string) (*api.NetworkACL, string, error)

GetNetworkACL mocks base method.

func (*MockInstanceServer) GetNetworkACLLogfile

func (m *MockInstanceServer) GetNetworkACLLogfile(arg0 string) (io.ReadCloser, error)

GetNetworkACLLogfile mocks base method.

func (*MockInstanceServer) GetNetworkACLNames

func (m *MockInstanceServer) GetNetworkACLNames() ([]string, error)

GetNetworkACLNames mocks base method.

func (*MockInstanceServer) GetNetworkACLs

func (m *MockInstanceServer) GetNetworkACLs() ([]api.NetworkACL, error)

GetNetworkACLs mocks base method.

func (*MockInstanceServer) GetNetworkAllocations

func (m *MockInstanceServer) GetNetworkAllocations(arg0 bool) ([]api.NetworkAllocations, error)

GetNetworkAllocations mocks base method.

func (*MockInstanceServer) GetNetworkForward

func (m *MockInstanceServer) GetNetworkForward(arg0, arg1 string) (*api.NetworkForward, string, error)

GetNetworkForward mocks base method.

func (*MockInstanceServer) GetNetworkForwardAddresses

func (m *MockInstanceServer) GetNetworkForwardAddresses(arg0 string) ([]string, error)

GetNetworkForwardAddresses mocks base method.

func (*MockInstanceServer) GetNetworkForwards

func (m *MockInstanceServer) GetNetworkForwards(arg0 string) ([]api.NetworkForward, error)

GetNetworkForwards mocks base method.

func (*MockInstanceServer) GetNetworkLeases

func (m *MockInstanceServer) GetNetworkLeases(arg0 string) ([]api.NetworkLease, error)

GetNetworkLeases mocks base method.

func (*MockInstanceServer) GetNetworkLoadBalancer

func (m *MockInstanceServer) GetNetworkLoadBalancer(arg0, arg1 string) (*api.NetworkLoadBalancer, string, error)

GetNetworkLoadBalancer mocks base method.

func (*MockInstanceServer) GetNetworkLoadBalancerAddresses

func (m *MockInstanceServer) GetNetworkLoadBalancerAddresses(arg0 string) ([]string, error)

GetNetworkLoadBalancerAddresses mocks base method.

func (*MockInstanceServer) GetNetworkLoadBalancers

func (m *MockInstanceServer) GetNetworkLoadBalancers(arg0 string) ([]api.NetworkLoadBalancer, error)

GetNetworkLoadBalancers mocks base method.

func (*MockInstanceServer) GetNetworkNames

func (m *MockInstanceServer) GetNetworkNames() ([]string, error)

GetNetworkNames mocks base method.

func (*MockInstanceServer) GetNetworkPeer

func (m *MockInstanceServer) GetNetworkPeer(arg0, arg1 string) (*api.NetworkPeer, string, error)

GetNetworkPeer mocks base method.

func (*MockInstanceServer) GetNetworkPeerNames

func (m *MockInstanceServer) GetNetworkPeerNames(arg0 string) ([]string, error)

GetNetworkPeerNames mocks base method.

func (*MockInstanceServer) GetNetworkPeers

func (m *MockInstanceServer) GetNetworkPeers(arg0 string) ([]api.NetworkPeer, error)

GetNetworkPeers mocks base method.

func (*MockInstanceServer) GetNetworkState

func (m *MockInstanceServer) GetNetworkState(arg0 string) (*api.NetworkState, error)

GetNetworkState mocks base method.

func (*MockInstanceServer) GetNetworkZone

func (m *MockInstanceServer) GetNetworkZone(arg0 string) (*api.NetworkZone, string, error)

GetNetworkZone mocks base method.

func (*MockInstanceServer) GetNetworkZoneNames

func (m *MockInstanceServer) GetNetworkZoneNames() ([]string, error)

GetNetworkZoneNames mocks base method.

func (*MockInstanceServer) GetNetworkZoneRecord

func (m *MockInstanceServer) GetNetworkZoneRecord(arg0, arg1 string) (*api.NetworkZoneRecord, string, error)

GetNetworkZoneRecord mocks base method.

func (*MockInstanceServer) GetNetworkZoneRecordNames

func (m *MockInstanceServer) GetNetworkZoneRecordNames(arg0 string) ([]string, error)

GetNetworkZoneRecordNames mocks base method.

func (*MockInstanceServer) GetNetworkZoneRecords

func (m *MockInstanceServer) GetNetworkZoneRecords(arg0 string) ([]api.NetworkZoneRecord, error)

GetNetworkZoneRecords mocks base method.

func (*MockInstanceServer) GetNetworkZones

func (m *MockInstanceServer) GetNetworkZones() ([]api.NetworkZone, error)

GetNetworkZones mocks base method.

func (*MockInstanceServer) GetNetworks

func (m *MockInstanceServer) GetNetworks() ([]api.Network, error)

GetNetworks mocks base method.

func (*MockInstanceServer) GetOperation

func (m *MockInstanceServer) GetOperation(arg0 string) (*api.Operation, string, error)

GetOperation mocks base method.

func (*MockInstanceServer) GetOperationUUIDs

func (m *MockInstanceServer) GetOperationUUIDs() ([]string, error)

GetOperationUUIDs mocks base method.

func (*MockInstanceServer) GetOperationWait

func (m *MockInstanceServer) GetOperationWait(arg0 string, arg1 int) (*api.Operation, string, error)

GetOperationWait mocks base method.

func (*MockInstanceServer) GetOperationWaitSecret

func (m *MockInstanceServer) GetOperationWaitSecret(arg0, arg1 string, arg2 int) (*api.Operation, string, error)

GetOperationWaitSecret mocks base method.

func (*MockInstanceServer) GetOperationWebsocket

func (m *MockInstanceServer) GetOperationWebsocket(arg0, arg1 string) (*websocket.Conn, error)

GetOperationWebsocket mocks base method.

func (*MockInstanceServer) GetOperations

func (m *MockInstanceServer) GetOperations() ([]api.Operation, error)

GetOperations mocks base method.

func (*MockInstanceServer) GetOperationsAllProjects

func (m *MockInstanceServer) GetOperationsAllProjects() ([]api.Operation, error)

GetOperationsAllProjects mocks base method.

func (*MockInstanceServer) GetPrivateImage

func (m *MockInstanceServer) GetPrivateImage(arg0, arg1 string) (*api.Image, string, error)

GetPrivateImage mocks base method.

func (*MockInstanceServer) GetPrivateImageFile

func (m *MockInstanceServer) GetPrivateImageFile(arg0, arg1 string, arg2 lxd.ImageFileRequest) (*lxd.ImageFileResponse, error)

GetPrivateImageFile mocks base method.

func (*MockInstanceServer) GetProfile

func (m *MockInstanceServer) GetProfile(arg0 string) (*api.Profile, string, error)

GetProfile mocks base method.

func (*MockInstanceServer) GetProfileNames

func (m *MockInstanceServer) GetProfileNames() ([]string, error)

GetProfileNames mocks base method.

func (*MockInstanceServer) GetProfiles

func (m *MockInstanceServer) GetProfiles() ([]api.Profile, error)

GetProfiles mocks base method.

func (*MockInstanceServer) GetProject

func (m *MockInstanceServer) GetProject(arg0 string) (*api.Project, string, error)

GetProject mocks base method.

func (*MockInstanceServer) GetProjectNames

func (m *MockInstanceServer) GetProjectNames() ([]string, error)

GetProjectNames mocks base method.

func (*MockInstanceServer) GetProjectState

func (m *MockInstanceServer) GetProjectState(arg0 string) (*api.ProjectState, error)

GetProjectState mocks base method.

func (*MockInstanceServer) GetProjects

func (m *MockInstanceServer) GetProjects() ([]api.Project, error)

GetProjects mocks base method.

func (*MockInstanceServer) GetServer

func (m *MockInstanceServer) GetServer() (*api.Server, string, error)

GetServer mocks base method.

func (*MockInstanceServer) GetServerResources

func (m *MockInstanceServer) GetServerResources() (*api.Resources, error)

GetServerResources mocks base method.

func (*MockInstanceServer) GetStoragePool

func (m *MockInstanceServer) GetStoragePool(arg0 string) (*api.StoragePool, string, error)

GetStoragePool mocks base method.

func (*MockInstanceServer) GetStoragePoolBucket

func (m *MockInstanceServer) GetStoragePoolBucket(arg0, arg1 string) (*api.StorageBucket, string, error)

GetStoragePoolBucket mocks base method.

func (*MockInstanceServer) GetStoragePoolBucketKey

func (m *MockInstanceServer) GetStoragePoolBucketKey(arg0, arg1, arg2 string) (*api.StorageBucketKey, string, error)

GetStoragePoolBucketKey mocks base method.

func (*MockInstanceServer) GetStoragePoolBucketKeyNames

func (m *MockInstanceServer) GetStoragePoolBucketKeyNames(arg0, arg1 string) ([]string, error)

GetStoragePoolBucketKeyNames mocks base method.

func (*MockInstanceServer) GetStoragePoolBucketKeys

func (m *MockInstanceServer) GetStoragePoolBucketKeys(arg0, arg1 string) ([]api.StorageBucketKey, error)

GetStoragePoolBucketKeys mocks base method.

func (*MockInstanceServer) GetStoragePoolBucketNames

func (m *MockInstanceServer) GetStoragePoolBucketNames(arg0 string) ([]string, error)

GetStoragePoolBucketNames mocks base method.

func (*MockInstanceServer) GetStoragePoolBuckets

func (m *MockInstanceServer) GetStoragePoolBuckets(arg0 string) ([]api.StorageBucket, error)

GetStoragePoolBuckets mocks base method.

func (*MockInstanceServer) GetStoragePoolNames

func (m *MockInstanceServer) GetStoragePoolNames() ([]string, error)

GetStoragePoolNames mocks base method.

func (*MockInstanceServer) GetStoragePoolResources

func (m *MockInstanceServer) GetStoragePoolResources(arg0 string) (*api.ResourcesStoragePool, error)

GetStoragePoolResources mocks base method.

func (*MockInstanceServer) GetStoragePoolVolume

func (m *MockInstanceServer) GetStoragePoolVolume(arg0, arg1, arg2 string) (*api.StorageVolume, string, error)

GetStoragePoolVolume mocks base method.

func (*MockInstanceServer) GetStoragePoolVolumeBackup

func (m *MockInstanceServer) GetStoragePoolVolumeBackup(arg0, arg1, arg2 string) (*api.StoragePoolVolumeBackup, string, error)

GetStoragePoolVolumeBackup mocks base method.

func (*MockInstanceServer) GetStoragePoolVolumeBackupFile

func (m *MockInstanceServer) GetStoragePoolVolumeBackupFile(arg0, arg1, arg2 string, arg3 *lxd.BackupFileRequest) (*lxd.BackupFileResponse, error)

GetStoragePoolVolumeBackupFile mocks base method.

func (*MockInstanceServer) GetStoragePoolVolumeBackupNames

func (m *MockInstanceServer) GetStoragePoolVolumeBackupNames(arg0, arg1 string) ([]string, error)

GetStoragePoolVolumeBackupNames mocks base method.

func (*MockInstanceServer) GetStoragePoolVolumeBackups

func (m *MockInstanceServer) GetStoragePoolVolumeBackups(arg0, arg1 string) ([]api.StoragePoolVolumeBackup, error)

GetStoragePoolVolumeBackups mocks base method.

func (*MockInstanceServer) GetStoragePoolVolumeNames

func (m *MockInstanceServer) GetStoragePoolVolumeNames(arg0 string) ([]string, error)

GetStoragePoolVolumeNames mocks base method.

func (*MockInstanceServer) GetStoragePoolVolumeNamesAllProjects

func (m *MockInstanceServer) GetStoragePoolVolumeNamesAllProjects(arg0 string) (map[string][]string, error)

GetStoragePoolVolumeNamesAllProjects mocks base method.

func (*MockInstanceServer) GetStoragePoolVolumeSnapshot

func (m *MockInstanceServer) GetStoragePoolVolumeSnapshot(arg0, arg1, arg2, arg3 string) (*api.StorageVolumeSnapshot, string, error)

GetStoragePoolVolumeSnapshot mocks base method.

func (*MockInstanceServer) GetStoragePoolVolumeSnapshotNames

func (m *MockInstanceServer) GetStoragePoolVolumeSnapshotNames(arg0, arg1, arg2 string) ([]string, error)

GetStoragePoolVolumeSnapshotNames mocks base method.

func (*MockInstanceServer) GetStoragePoolVolumeSnapshots

func (m *MockInstanceServer) GetStoragePoolVolumeSnapshots(arg0, arg1, arg2 string) ([]api.StorageVolumeSnapshot, error)

GetStoragePoolVolumeSnapshots mocks base method.

func (*MockInstanceServer) GetStoragePoolVolumeState

func (m *MockInstanceServer) GetStoragePoolVolumeState(arg0, arg1, arg2 string) (*api.StorageVolumeState, error)

GetStoragePoolVolumeState mocks base method.

func (*MockInstanceServer) GetStoragePoolVolumes

func (m *MockInstanceServer) GetStoragePoolVolumes(arg0 string) ([]api.StorageVolume, error)

GetStoragePoolVolumes mocks base method.

func (*MockInstanceServer) GetStoragePoolVolumesAllProjects

func (m *MockInstanceServer) GetStoragePoolVolumesAllProjects(arg0 string) ([]api.StorageVolume, error)

GetStoragePoolVolumesAllProjects mocks base method.

func (*MockInstanceServer) GetStoragePoolVolumesWithFilter

func (m *MockInstanceServer) GetStoragePoolVolumesWithFilter(arg0 string, arg1 []string) ([]api.StorageVolume, error)

GetStoragePoolVolumesWithFilter mocks base method.

func (*MockInstanceServer) GetStoragePoolVolumesWithFilterAllProjects

func (m *MockInstanceServer) GetStoragePoolVolumesWithFilterAllProjects(arg0 string, arg1 []string) ([]api.StorageVolume, error)

GetStoragePoolVolumesWithFilterAllProjects mocks base method.

func (*MockInstanceServer) GetStoragePools

func (m *MockInstanceServer) GetStoragePools() ([]api.StoragePool, error)

GetStoragePools mocks base method.

func (*MockInstanceServer) GetWarning

func (m *MockInstanceServer) GetWarning(arg0 string) (*api.Warning, string, error)

GetWarning mocks base method.

func (*MockInstanceServer) GetWarningUUIDs

func (m *MockInstanceServer) GetWarningUUIDs() ([]string, error)

GetWarningUUIDs mocks base method.

func (*MockInstanceServer) GetWarnings

func (m *MockInstanceServer) GetWarnings() ([]api.Warning, error)

GetWarnings mocks base method.

func (*MockInstanceServer) HasExtension

func (m *MockInstanceServer) HasExtension(arg0 string) bool

HasExtension mocks base method.

func (*MockInstanceServer) IsClustered

func (m *MockInstanceServer) IsClustered() bool

IsClustered mocks base method.

func (*MockInstanceServer) MigrateContainer

func (m *MockInstanceServer) MigrateContainer(arg0 string, arg1 api.ContainerPost) (lxd.Operation, error)

MigrateContainer mocks base method.

func (*MockInstanceServer) MigrateContainerSnapshot

func (m *MockInstanceServer) MigrateContainerSnapshot(arg0, arg1 string, arg2 api.ContainerSnapshotPost) (lxd.Operation, error)

MigrateContainerSnapshot mocks base method.

func (*MockInstanceServer) MigrateInstance

func (m *MockInstanceServer) MigrateInstance(arg0 string, arg1 api.InstancePost) (lxd.Operation, error)

MigrateInstance mocks base method.

func (*MockInstanceServer) MigrateInstanceSnapshot

func (m *MockInstanceServer) MigrateInstanceSnapshot(arg0, arg1 string, arg2 api.InstanceSnapshotPost) (lxd.Operation, error)

MigrateInstanceSnapshot mocks base method.

func (*MockInstanceServer) MigrateStoragePoolVolume

func (m *MockInstanceServer) MigrateStoragePoolVolume(arg0 string, arg1 api.StorageVolumePost) (lxd.Operation, error)

MigrateStoragePoolVolume mocks base method.

func (*MockInstanceServer) MoveStoragePoolVolume

func (m *MockInstanceServer) MoveStoragePoolVolume(arg0 string, arg1 lxd.InstanceServer, arg2 string, arg3 api.StorageVolume, arg4 *lxd.StoragePoolVolumeMoveArgs) (lxd.RemoteOperation, error)

MoveStoragePoolVolume mocks base method.

func (*MockInstanceServer) RawOperation

func (m *MockInstanceServer) RawOperation(arg0, arg1 string, arg2 any, arg3 string) (lxd.Operation, string, error)

RawOperation mocks base method.

func (*MockInstanceServer) RawQuery

func (m *MockInstanceServer) RawQuery(arg0, arg1 string, arg2 any, arg3 string) (*api.Response, string, error)

RawQuery mocks base method.

func (*MockInstanceServer) RawWebsocket

func (m *MockInstanceServer) RawWebsocket(arg0 string) (*websocket.Conn, error)

RawWebsocket mocks base method.

func (*MockInstanceServer) RebuildInstance

func (m *MockInstanceServer) RebuildInstance(arg0 string, arg1 api.InstanceRebuildPost) (lxd.Operation, error)

RebuildInstance mocks base method.

func (*MockInstanceServer) RebuildInstanceFromImage

func (m *MockInstanceServer) RebuildInstanceFromImage(arg0 lxd.ImageServer, arg1 api.Image, arg2 string, arg3 api.InstanceRebuildPost) (lxd.RemoteOperation, error)

RebuildInstanceFromImage mocks base method.

func (*MockInstanceServer) RefreshImage

func (m *MockInstanceServer) RefreshImage(arg0 string) (lxd.Operation, error)

RefreshImage mocks base method.

func (*MockInstanceServer) RenameClusterGroup

func (m *MockInstanceServer) RenameClusterGroup(arg0 string, arg1 api.ClusterGroupPost) error

RenameClusterGroup mocks base method.

func (*MockInstanceServer) RenameClusterMember

func (m *MockInstanceServer) RenameClusterMember(arg0 string, arg1 api.ClusterMemberPost) error

RenameClusterMember mocks base method.

func (*MockInstanceServer) RenameContainer

func (m *MockInstanceServer) RenameContainer(arg0 string, arg1 api.ContainerPost) (lxd.Operation, error)

RenameContainer mocks base method.

func (*MockInstanceServer) RenameContainerBackup

func (m *MockInstanceServer) RenameContainerBackup(arg0, arg1 string, arg2 api.ContainerBackupPost) (lxd.Operation, error)

RenameContainerBackup mocks base method.

func (*MockInstanceServer) RenameContainerSnapshot

func (m *MockInstanceServer) RenameContainerSnapshot(arg0, arg1 string, arg2 api.ContainerSnapshotPost) (lxd.Operation, error)

RenameContainerSnapshot mocks base method.

func (*MockInstanceServer) RenameImageAlias

func (m *MockInstanceServer) RenameImageAlias(arg0 string, arg1 api.ImageAliasesEntryPost) error

RenameImageAlias mocks base method.

func (*MockInstanceServer) RenameInstance

func (m *MockInstanceServer) RenameInstance(arg0 string, arg1 api.InstancePost) (lxd.Operation, error)

RenameInstance mocks base method.

func (*MockInstanceServer) RenameInstanceBackup

func (m *MockInstanceServer) RenameInstanceBackup(arg0, arg1 string, arg2 api.InstanceBackupPost) (lxd.Operation, error)

RenameInstanceBackup mocks base method.

func (*MockInstanceServer) RenameInstanceSnapshot

func (m *MockInstanceServer) RenameInstanceSnapshot(arg0, arg1 string, arg2 api.InstanceSnapshotPost) (lxd.Operation, error)

RenameInstanceSnapshot mocks base method.

func (*MockInstanceServer) RenameNetwork

func (m *MockInstanceServer) RenameNetwork(arg0 string, arg1 api.NetworkPost) error

RenameNetwork mocks base method.

func (*MockInstanceServer) RenameNetworkACL

func (m *MockInstanceServer) RenameNetworkACL(arg0 string, arg1 api.NetworkACLPost) error

RenameNetworkACL mocks base method.

func (*MockInstanceServer) RenameProfile

func (m *MockInstanceServer) RenameProfile(arg0 string, arg1 api.ProfilePost) error

RenameProfile mocks base method.

func (*MockInstanceServer) RenameProject

func (m *MockInstanceServer) RenameProject(arg0 string, arg1 api.ProjectPost) (lxd.Operation, error)

RenameProject mocks base method.

func (*MockInstanceServer) RenameStoragePoolVolume

func (m *MockInstanceServer) RenameStoragePoolVolume(arg0, arg1, arg2 string, arg3 api.StorageVolumePost) error

RenameStoragePoolVolume mocks base method.

func (*MockInstanceServer) RenameStoragePoolVolumeBackup

func (m *MockInstanceServer) RenameStoragePoolVolumeBackup(arg0, arg1, arg2 string, arg3 api.StoragePoolVolumeBackupPost) (lxd.Operation, error)

RenameStoragePoolVolumeBackup mocks base method.

func (*MockInstanceServer) RenameStoragePoolVolumeSnapshot

func (m *MockInstanceServer) RenameStoragePoolVolumeSnapshot(arg0, arg1, arg2, arg3 string, arg4 api.StorageVolumeSnapshotPost) (lxd.Operation, error)

RenameStoragePoolVolumeSnapshot mocks base method.

func (*MockInstanceServer) RequireAuthenticated

func (m *MockInstanceServer) RequireAuthenticated(arg0 bool)

RequireAuthenticated mocks base method.

func (*MockInstanceServer) SendEvent

func (m *MockInstanceServer) SendEvent(arg0 api.Event) error

SendEvent mocks base method.

func (*MockInstanceServer) SetContainerMetadata

func (m *MockInstanceServer) SetContainerMetadata(arg0 string, arg1 api.ImageMetadata, arg2 string) error

SetContainerMetadata mocks base method.

func (*MockInstanceServer) UpdateCertificate

func (m *MockInstanceServer) UpdateCertificate(arg0 string, arg1 api.CertificatePut, arg2 string) error

UpdateCertificate mocks base method.

func (*MockInstanceServer) UpdateCluster

func (m *MockInstanceServer) UpdateCluster(arg0 api.ClusterPut, arg1 string) (lxd.Operation, error)

UpdateCluster mocks base method.

func (*MockInstanceServer) UpdateClusterCertificate

func (m *MockInstanceServer) UpdateClusterCertificate(arg0 api.ClusterCertificatePut, arg1 string) error

UpdateClusterCertificate mocks base method.

func (*MockInstanceServer) UpdateClusterGroup

func (m *MockInstanceServer) UpdateClusterGroup(arg0 string, arg1 api.ClusterGroupPut, arg2 string) error

UpdateClusterGroup mocks base method.

func (*MockInstanceServer) UpdateClusterMember

func (m *MockInstanceServer) UpdateClusterMember(arg0 string, arg1 api.ClusterMemberPut, arg2 string) error

UpdateClusterMember mocks base method.

func (*MockInstanceServer) UpdateClusterMemberState

func (m *MockInstanceServer) UpdateClusterMemberState(arg0 string, arg1 api.ClusterMemberStatePost) (lxd.Operation, error)

UpdateClusterMemberState mocks base method.

func (*MockInstanceServer) UpdateContainer

func (m *MockInstanceServer) UpdateContainer(arg0 string, arg1 api.ContainerPut, arg2 string) (lxd.Operation, error)

UpdateContainer mocks base method.

func (*MockInstanceServer) UpdateContainerSnapshot

func (m *MockInstanceServer) UpdateContainerSnapshot(arg0, arg1 string, arg2 api.ContainerSnapshotPut, arg3 string) (lxd.Operation, error)

UpdateContainerSnapshot mocks base method.

func (*MockInstanceServer) UpdateContainerState

func (m *MockInstanceServer) UpdateContainerState(arg0 string, arg1 api.ContainerStatePut, arg2 string) (lxd.Operation, error)

UpdateContainerState mocks base method.

func (*MockInstanceServer) UpdateContainerTemplateFile

func (m *MockInstanceServer) UpdateContainerTemplateFile(arg0, arg1 string, arg2 io.ReadSeeker) error

UpdateContainerTemplateFile mocks base method.

func (*MockInstanceServer) UpdateImage

func (m *MockInstanceServer) UpdateImage(arg0 string, arg1 api.ImagePut, arg2 string) error

UpdateImage mocks base method.

func (*MockInstanceServer) UpdateImageAlias

func (m *MockInstanceServer) UpdateImageAlias(arg0 string, arg1 api.ImageAliasesEntryPut, arg2 string) error

UpdateImageAlias mocks base method.

func (*MockInstanceServer) UpdateInstance

func (m *MockInstanceServer) UpdateInstance(arg0 string, arg1 api.InstancePut, arg2 string) (lxd.Operation, error)

UpdateInstance mocks base method.

func (*MockInstanceServer) UpdateInstanceMetadata

func (m *MockInstanceServer) UpdateInstanceMetadata(arg0 string, arg1 api.ImageMetadata, arg2 string) error

UpdateInstanceMetadata mocks base method.

func (*MockInstanceServer) UpdateInstanceSnapshot

func (m *MockInstanceServer) UpdateInstanceSnapshot(arg0, arg1 string, arg2 api.InstanceSnapshotPut, arg3 string) (lxd.Operation, error)

UpdateInstanceSnapshot mocks base method.

func (*MockInstanceServer) UpdateInstanceState

func (m *MockInstanceServer) UpdateInstanceState(arg0 string, arg1 api.InstanceStatePut, arg2 string) (lxd.Operation, error)

UpdateInstanceState mocks base method.

func (*MockInstanceServer) UpdateInstances

func (m *MockInstanceServer) UpdateInstances(arg0 api.InstancesPut, arg1 string) (lxd.Operation, error)

UpdateInstances mocks base method.

func (*MockInstanceServer) UpdateNetwork

func (m *MockInstanceServer) UpdateNetwork(arg0 string, arg1 api.NetworkPut, arg2 string) error

UpdateNetwork mocks base method.

func (*MockInstanceServer) UpdateNetworkACL

func (m *MockInstanceServer) UpdateNetworkACL(arg0 string, arg1 api.NetworkACLPut, arg2 string) error

UpdateNetworkACL mocks base method.

func (*MockInstanceServer) UpdateNetworkForward

func (m *MockInstanceServer) UpdateNetworkForward(arg0, arg1 string, arg2 api.NetworkForwardPut, arg3 string) error

UpdateNetworkForward mocks base method.

func (*MockInstanceServer) UpdateNetworkLoadBalancer

func (m *MockInstanceServer) UpdateNetworkLoadBalancer(arg0, arg1 string, arg2 api.NetworkLoadBalancerPut, arg3 string) error

UpdateNetworkLoadBalancer mocks base method.

func (*MockInstanceServer) UpdateNetworkPeer

func (m *MockInstanceServer) UpdateNetworkPeer(arg0, arg1 string, arg2 api.NetworkPeerPut, arg3 string) error

UpdateNetworkPeer mocks base method.

func (*MockInstanceServer) UpdateNetworkZone

func (m *MockInstanceServer) UpdateNetworkZone(arg0 string, arg1 api.NetworkZonePut, arg2 string) error

UpdateNetworkZone mocks base method.

func (*MockInstanceServer) UpdateNetworkZoneRecord

func (m *MockInstanceServer) UpdateNetworkZoneRecord(arg0, arg1 string, arg2 api.NetworkZoneRecordPut, arg3 string) error

UpdateNetworkZoneRecord mocks base method.

func (*MockInstanceServer) UpdateProfile

func (m *MockInstanceServer) UpdateProfile(arg0 string, arg1 api.ProfilePut, arg2 string) error

UpdateProfile mocks base method.

func (*MockInstanceServer) UpdateProject

func (m *MockInstanceServer) UpdateProject(arg0 string, arg1 api.ProjectPut, arg2 string) error

UpdateProject mocks base method.

func (*MockInstanceServer) UpdateServer

func (m *MockInstanceServer) UpdateServer(arg0 api.ServerPut, arg1 string) error

UpdateServer mocks base method.

func (*MockInstanceServer) UpdateStoragePool

func (m *MockInstanceServer) UpdateStoragePool(arg0 string, arg1 api.StoragePoolPut, arg2 string) error

UpdateStoragePool mocks base method.

func (*MockInstanceServer) UpdateStoragePoolBucket

func (m *MockInstanceServer) UpdateStoragePoolBucket(arg0, arg1 string, arg2 api.StorageBucketPut, arg3 string) error

UpdateStoragePoolBucket mocks base method.

func (*MockInstanceServer) UpdateStoragePoolBucketKey

func (m *MockInstanceServer) UpdateStoragePoolBucketKey(arg0, arg1, arg2 string, arg3 api.StorageBucketKeyPut, arg4 string) error

UpdateStoragePoolBucketKey mocks base method.

func (*MockInstanceServer) UpdateStoragePoolVolume

func (m *MockInstanceServer) UpdateStoragePoolVolume(arg0, arg1, arg2 string, arg3 api.StorageVolumePut, arg4 string) error

UpdateStoragePoolVolume mocks base method.

func (*MockInstanceServer) UpdateStoragePoolVolumeSnapshot

func (m *MockInstanceServer) UpdateStoragePoolVolumeSnapshot(arg0, arg1, arg2, arg3 string, arg4 api.StorageVolumeSnapshotPut, arg5 string) error

UpdateStoragePoolVolumeSnapshot mocks base method.

func (*MockInstanceServer) UpdateWarning

func (m *MockInstanceServer) UpdateWarning(arg0 string, arg1 api.WarningPut, arg2 string) error

UpdateWarning mocks base method.

func (*MockInstanceServer) UseProject

func (m *MockInstanceServer) UseProject(arg0 string) lxd.InstanceServer

UseProject mocks base method.

func (*MockInstanceServer) UseTarget

func (m *MockInstanceServer) UseTarget(arg0 string) lxd.InstanceServer

UseTarget mocks base method.

type MockInstanceServerMockRecorder

type MockInstanceServerMockRecorder struct {
	// contains filtered or unexported fields
}

MockInstanceServerMockRecorder is the mock recorder for MockInstanceServer.

func (*MockInstanceServerMockRecorder) ConsoleContainer

func (mr *MockInstanceServerMockRecorder) ConsoleContainer(arg0, arg1, arg2 any) *gomock.Call

ConsoleContainer indicates an expected call of ConsoleContainer.

func (*MockInstanceServerMockRecorder) ConsoleInstance

func (mr *MockInstanceServerMockRecorder) ConsoleInstance(arg0, arg1, arg2 any) *gomock.Call

ConsoleInstance indicates an expected call of ConsoleInstance.

func (*MockInstanceServerMockRecorder) ConsoleInstanceDynamic

func (mr *MockInstanceServerMockRecorder) ConsoleInstanceDynamic(arg0, arg1, arg2 any) *gomock.Call

ConsoleInstanceDynamic indicates an expected call of ConsoleInstanceDynamic.

func (*MockInstanceServerMockRecorder) CopyContainer

func (mr *MockInstanceServerMockRecorder) CopyContainer(arg0, arg1, arg2 any) *gomock.Call

CopyContainer indicates an expected call of CopyContainer.

func (*MockInstanceServerMockRecorder) CopyContainerSnapshot

func (mr *MockInstanceServerMockRecorder) CopyContainerSnapshot(arg0, arg1, arg2, arg3 any) *gomock.Call

CopyContainerSnapshot indicates an expected call of CopyContainerSnapshot.

func (*MockInstanceServerMockRecorder) CopyImage

func (mr *MockInstanceServerMockRecorder) CopyImage(arg0, arg1, arg2 any) *gomock.Call

CopyImage indicates an expected call of CopyImage.

func (*MockInstanceServerMockRecorder) CopyInstance

func (mr *MockInstanceServerMockRecorder) CopyInstance(arg0, arg1, arg2 any) *gomock.Call

CopyInstance indicates an expected call of CopyInstance.

func (*MockInstanceServerMockRecorder) CopyInstanceSnapshot

func (mr *MockInstanceServerMockRecorder) CopyInstanceSnapshot(arg0, arg1, arg2, arg3 any) *gomock.Call

CopyInstanceSnapshot indicates an expected call of CopyInstanceSnapshot.

func (*MockInstanceServerMockRecorder) CopyStoragePoolVolume

func (mr *MockInstanceServerMockRecorder) CopyStoragePoolVolume(arg0, arg1, arg2, arg3, arg4 any) *gomock.Call

CopyStoragePoolVolume indicates an expected call of CopyStoragePoolVolume.

func (*MockInstanceServerMockRecorder) CreateCertificate

func (mr *MockInstanceServerMockRecorder) CreateCertificate(arg0 any) *gomock.Call

CreateCertificate indicates an expected call of CreateCertificate.

func (*MockInstanceServerMockRecorder) CreateCertificateToken

func (mr *MockInstanceServerMockRecorder) CreateCertificateToken(arg0 any) *gomock.Call

CreateCertificateToken indicates an expected call of CreateCertificateToken.

func (*MockInstanceServerMockRecorder) CreateClusterGroup

func (mr *MockInstanceServerMockRecorder) CreateClusterGroup(arg0 any) *gomock.Call

CreateClusterGroup indicates an expected call of CreateClusterGroup.

func (*MockInstanceServerMockRecorder) CreateClusterMember

func (mr *MockInstanceServerMockRecorder) CreateClusterMember(arg0 any) *gomock.Call

CreateClusterMember indicates an expected call of CreateClusterMember.

func (*MockInstanceServerMockRecorder) CreateContainer

func (mr *MockInstanceServerMockRecorder) CreateContainer(arg0 any) *gomock.Call

CreateContainer indicates an expected call of CreateContainer.

func (*MockInstanceServerMockRecorder) CreateContainerBackup

func (mr *MockInstanceServerMockRecorder) CreateContainerBackup(arg0, arg1 any) *gomock.Call

CreateContainerBackup indicates an expected call of CreateContainerBackup.

func (*MockInstanceServerMockRecorder) CreateContainerFile

func (mr *MockInstanceServerMockRecorder) CreateContainerFile(arg0, arg1, arg2 any) *gomock.Call

CreateContainerFile indicates an expected call of CreateContainerFile.

func (*MockInstanceServerMockRecorder) CreateContainerFromBackup

func (mr *MockInstanceServerMockRecorder) CreateContainerFromBackup(arg0 any) *gomock.Call

CreateContainerFromBackup indicates an expected call of CreateContainerFromBackup.

func (*MockInstanceServerMockRecorder) CreateContainerFromImage

func (mr *MockInstanceServerMockRecorder) CreateContainerFromImage(arg0, arg1, arg2 any) *gomock.Call

CreateContainerFromImage indicates an expected call of CreateContainerFromImage.

func (*MockInstanceServerMockRecorder) CreateContainerSnapshot

func (mr *MockInstanceServerMockRecorder) CreateContainerSnapshot(arg0, arg1 any) *gomock.Call

CreateContainerSnapshot indicates an expected call of CreateContainerSnapshot.

func (*MockInstanceServerMockRecorder) CreateContainerTemplateFile

func (mr *MockInstanceServerMockRecorder) CreateContainerTemplateFile(arg0, arg1, arg2 any) *gomock.Call

CreateContainerTemplateFile indicates an expected call of CreateContainerTemplateFile.

func (*MockInstanceServerMockRecorder) CreateImage

func (mr *MockInstanceServerMockRecorder) CreateImage(arg0, arg1 any) *gomock.Call

CreateImage indicates an expected call of CreateImage.

func (*MockInstanceServerMockRecorder) CreateImageAlias

func (mr *MockInstanceServerMockRecorder) CreateImageAlias(arg0 any) *gomock.Call

CreateImageAlias indicates an expected call of CreateImageAlias.

func (*MockInstanceServerMockRecorder) CreateImageSecret

func (mr *MockInstanceServerMockRecorder) CreateImageSecret(arg0 any) *gomock.Call

CreateImageSecret indicates an expected call of CreateImageSecret.

func (*MockInstanceServerMockRecorder) CreateInstance

func (mr *MockInstanceServerMockRecorder) CreateInstance(arg0 any) *gomock.Call

CreateInstance indicates an expected call of CreateInstance.

func (*MockInstanceServerMockRecorder) CreateInstanceBackup

func (mr *MockInstanceServerMockRecorder) CreateInstanceBackup(arg0, arg1 any) *gomock.Call

CreateInstanceBackup indicates an expected call of CreateInstanceBackup.

func (*MockInstanceServerMockRecorder) CreateInstanceFile

func (mr *MockInstanceServerMockRecorder) CreateInstanceFile(arg0, arg1, arg2 any) *gomock.Call

CreateInstanceFile indicates an expected call of CreateInstanceFile.

func (*MockInstanceServerMockRecorder) CreateInstanceFromBackup

func (mr *MockInstanceServerMockRecorder) CreateInstanceFromBackup(arg0 any) *gomock.Call

CreateInstanceFromBackup indicates an expected call of CreateInstanceFromBackup.

func (*MockInstanceServerMockRecorder) CreateInstanceFromImage

func (mr *MockInstanceServerMockRecorder) CreateInstanceFromImage(arg0, arg1, arg2 any) *gomock.Call

CreateInstanceFromImage indicates an expected call of CreateInstanceFromImage.

func (*MockInstanceServerMockRecorder) CreateInstanceSnapshot

func (mr *MockInstanceServerMockRecorder) CreateInstanceSnapshot(arg0, arg1 any) *gomock.Call

CreateInstanceSnapshot indicates an expected call of CreateInstanceSnapshot.

func (*MockInstanceServerMockRecorder) CreateInstanceTemplateFile

func (mr *MockInstanceServerMockRecorder) CreateInstanceTemplateFile(arg0, arg1, arg2 any) *gomock.Call

CreateInstanceTemplateFile indicates an expected call of CreateInstanceTemplateFile.

func (*MockInstanceServerMockRecorder) CreateNetwork

func (mr *MockInstanceServerMockRecorder) CreateNetwork(arg0 any) *gomock.Call

CreateNetwork indicates an expected call of CreateNetwork.

func (*MockInstanceServerMockRecorder) CreateNetworkACL

func (mr *MockInstanceServerMockRecorder) CreateNetworkACL(arg0 any) *gomock.Call

CreateNetworkACL indicates an expected call of CreateNetworkACL.

func (*MockInstanceServerMockRecorder) CreateNetworkForward

func (mr *MockInstanceServerMockRecorder) CreateNetworkForward(arg0, arg1 any) *gomock.Call

CreateNetworkForward indicates an expected call of CreateNetworkForward.

func (*MockInstanceServerMockRecorder) CreateNetworkLoadBalancer

func (mr *MockInstanceServerMockRecorder) CreateNetworkLoadBalancer(arg0, arg1 any) *gomock.Call

CreateNetworkLoadBalancer indicates an expected call of CreateNetworkLoadBalancer.

func (*MockInstanceServerMockRecorder) CreateNetworkPeer

func (mr *MockInstanceServerMockRecorder) CreateNetworkPeer(arg0, arg1 any) *gomock.Call

CreateNetworkPeer indicates an expected call of CreateNetworkPeer.

func (*MockInstanceServerMockRecorder) CreateNetworkZone

func (mr *MockInstanceServerMockRecorder) CreateNetworkZone(arg0 any) *gomock.Call

CreateNetworkZone indicates an expected call of CreateNetworkZone.

func (*MockInstanceServerMockRecorder) CreateNetworkZoneRecord

func (mr *MockInstanceServerMockRecorder) CreateNetworkZoneRecord(arg0, arg1 any) *gomock.Call

CreateNetworkZoneRecord indicates an expected call of CreateNetworkZoneRecord.

func (*MockInstanceServerMockRecorder) CreateProfile

func (mr *MockInstanceServerMockRecorder) CreateProfile(arg0 any) *gomock.Call

CreateProfile indicates an expected call of CreateProfile.

func (*MockInstanceServerMockRecorder) CreateProject

func (mr *MockInstanceServerMockRecorder) CreateProject(arg0 any) *gomock.Call

CreateProject indicates an expected call of CreateProject.

func (*MockInstanceServerMockRecorder) CreateStoragePool

func (mr *MockInstanceServerMockRecorder) CreateStoragePool(arg0 any) *gomock.Call

CreateStoragePool indicates an expected call of CreateStoragePool.

func (*MockInstanceServerMockRecorder) CreateStoragePoolBucket

func (mr *MockInstanceServerMockRecorder) CreateStoragePoolBucket(arg0, arg1 any) *gomock.Call

CreateStoragePoolBucket indicates an expected call of CreateStoragePoolBucket.

func (*MockInstanceServerMockRecorder) CreateStoragePoolBucketKey

func (mr *MockInstanceServerMockRecorder) CreateStoragePoolBucketKey(arg0, arg1, arg2 any) *gomock.Call

CreateStoragePoolBucketKey indicates an expected call of CreateStoragePoolBucketKey.

func (*MockInstanceServerMockRecorder) CreateStoragePoolVolume

func (mr *MockInstanceServerMockRecorder) CreateStoragePoolVolume(arg0, arg1 any) *gomock.Call

CreateStoragePoolVolume indicates an expected call of CreateStoragePoolVolume.

func (*MockInstanceServerMockRecorder) CreateStoragePoolVolumeBackup

func (mr *MockInstanceServerMockRecorder) CreateStoragePoolVolumeBackup(arg0, arg1, arg2 any) *gomock.Call

CreateStoragePoolVolumeBackup indicates an expected call of CreateStoragePoolVolumeBackup.

func (*MockInstanceServerMockRecorder) CreateStoragePoolVolumeFromBackup

func (mr *MockInstanceServerMockRecorder) CreateStoragePoolVolumeFromBackup(arg0, arg1 any) *gomock.Call

CreateStoragePoolVolumeFromBackup indicates an expected call of CreateStoragePoolVolumeFromBackup.

func (*MockInstanceServerMockRecorder) CreateStoragePoolVolumeFromISO

func (mr *MockInstanceServerMockRecorder) CreateStoragePoolVolumeFromISO(arg0, arg1 any) *gomock.Call

CreateStoragePoolVolumeFromISO indicates an expected call of CreateStoragePoolVolumeFromISO.

func (*MockInstanceServerMockRecorder) CreateStoragePoolVolumeSnapshot

func (mr *MockInstanceServerMockRecorder) CreateStoragePoolVolumeSnapshot(arg0, arg1, arg2, arg3 any) *gomock.Call

CreateStoragePoolVolumeSnapshot indicates an expected call of CreateStoragePoolVolumeSnapshot.

func (*MockInstanceServerMockRecorder) DeleteCertificate

func (mr *MockInstanceServerMockRecorder) DeleteCertificate(arg0 any) *gomock.Call

DeleteCertificate indicates an expected call of DeleteCertificate.

func (*MockInstanceServerMockRecorder) DeleteClusterGroup

func (mr *MockInstanceServerMockRecorder) DeleteClusterGroup(arg0 any) *gomock.Call

DeleteClusterGroup indicates an expected call of DeleteClusterGroup.

func (*MockInstanceServerMockRecorder) DeleteClusterMember

func (mr *MockInstanceServerMockRecorder) DeleteClusterMember(arg0, arg1 any) *gomock.Call

DeleteClusterMember indicates an expected call of DeleteClusterMember.

func (*MockInstanceServerMockRecorder) DeleteContainer

func (mr *MockInstanceServerMockRecorder) DeleteContainer(arg0 any) *gomock.Call

DeleteContainer indicates an expected call of DeleteContainer.

func (*MockInstanceServerMockRecorder) DeleteContainerBackup

func (mr *MockInstanceServerMockRecorder) DeleteContainerBackup(arg0, arg1 any) *gomock.Call

DeleteContainerBackup indicates an expected call of DeleteContainerBackup.

func (*MockInstanceServerMockRecorder) DeleteContainerConsoleLog

func (mr *MockInstanceServerMockRecorder) DeleteContainerConsoleLog(arg0, arg1 any) *gomock.Call

DeleteContainerConsoleLog indicates an expected call of DeleteContainerConsoleLog.

func (*MockInstanceServerMockRecorder) DeleteContainerFile

func (mr *MockInstanceServerMockRecorder) DeleteContainerFile(arg0, arg1 any) *gomock.Call

DeleteContainerFile indicates an expected call of DeleteContainerFile.

func (*MockInstanceServerMockRecorder) DeleteContainerLogfile

func (mr *MockInstanceServerMockRecorder) DeleteContainerLogfile(arg0, arg1 any) *gomock.Call

DeleteContainerLogfile indicates an expected call of DeleteContainerLogfile.

func (*MockInstanceServerMockRecorder) DeleteContainerSnapshot

func (mr *MockInstanceServerMockRecorder) DeleteContainerSnapshot(arg0, arg1 any) *gomock.Call

DeleteContainerSnapshot indicates an expected call of DeleteContainerSnapshot.

func (*MockInstanceServerMockRecorder) DeleteContainerTemplateFile

func (mr *MockInstanceServerMockRecorder) DeleteContainerTemplateFile(arg0, arg1 any) *gomock.Call

DeleteContainerTemplateFile indicates an expected call of DeleteContainerTemplateFile.

func (*MockInstanceServerMockRecorder) DeleteImage

func (mr *MockInstanceServerMockRecorder) DeleteImage(arg0 any) *gomock.Call

DeleteImage indicates an expected call of DeleteImage.

func (*MockInstanceServerMockRecorder) DeleteImageAlias

func (mr *MockInstanceServerMockRecorder) DeleteImageAlias(arg0 any) *gomock.Call

DeleteImageAlias indicates an expected call of DeleteImageAlias.

func (*MockInstanceServerMockRecorder) DeleteInstance

func (mr *MockInstanceServerMockRecorder) DeleteInstance(arg0 any) *gomock.Call

DeleteInstance indicates an expected call of DeleteInstance.

func (*MockInstanceServerMockRecorder) DeleteInstanceBackup

func (mr *MockInstanceServerMockRecorder) DeleteInstanceBackup(arg0, arg1 any) *gomock.Call

DeleteInstanceBackup indicates an expected call of DeleteInstanceBackup.

func (*MockInstanceServerMockRecorder) DeleteInstanceConsoleLog

func (mr *MockInstanceServerMockRecorder) DeleteInstanceConsoleLog(arg0, arg1 any) *gomock.Call

DeleteInstanceConsoleLog indicates an expected call of DeleteInstanceConsoleLog.

func (*MockInstanceServerMockRecorder) DeleteInstanceFile

func (mr *MockInstanceServerMockRecorder) DeleteInstanceFile(arg0, arg1 any) *gomock.Call

DeleteInstanceFile indicates an expected call of DeleteInstanceFile.

func (*MockInstanceServerMockRecorder) DeleteInstanceLogfile

func (mr *MockInstanceServerMockRecorder) DeleteInstanceLogfile(arg0, arg1 any) *gomock.Call

DeleteInstanceLogfile indicates an expected call of DeleteInstanceLogfile.

func (*MockInstanceServerMockRecorder) DeleteInstanceSnapshot

func (mr *MockInstanceServerMockRecorder) DeleteInstanceSnapshot(arg0, arg1 any) *gomock.Call

DeleteInstanceSnapshot indicates an expected call of DeleteInstanceSnapshot.

func (*MockInstanceServerMockRecorder) DeleteInstanceTemplateFile

func (mr *MockInstanceServerMockRecorder) DeleteInstanceTemplateFile(arg0, arg1 any) *gomock.Call

DeleteInstanceTemplateFile indicates an expected call of DeleteInstanceTemplateFile.

func (*MockInstanceServerMockRecorder) DeleteNetwork

func (mr *MockInstanceServerMockRecorder) DeleteNetwork(arg0 any) *gomock.Call

DeleteNetwork indicates an expected call of DeleteNetwork.

func (*MockInstanceServerMockRecorder) DeleteNetworkACL

func (mr *MockInstanceServerMockRecorder) DeleteNetworkACL(arg0 any) *gomock.Call

DeleteNetworkACL indicates an expected call of DeleteNetworkACL.

func (*MockInstanceServerMockRecorder) DeleteNetworkForward

func (mr *MockInstanceServerMockRecorder) DeleteNetworkForward(arg0, arg1 any) *gomock.Call

DeleteNetworkForward indicates an expected call of DeleteNetworkForward.

func (*MockInstanceServerMockRecorder) DeleteNetworkLoadBalancer

func (mr *MockInstanceServerMockRecorder) DeleteNetworkLoadBalancer(arg0, arg1 any) *gomock.Call

DeleteNetworkLoadBalancer indicates an expected call of DeleteNetworkLoadBalancer.

func (*MockInstanceServerMockRecorder) DeleteNetworkPeer

func (mr *MockInstanceServerMockRecorder) DeleteNetworkPeer(arg0, arg1 any) *gomock.Call

DeleteNetworkPeer indicates an expected call of DeleteNetworkPeer.

func (*MockInstanceServerMockRecorder) DeleteNetworkZone

func (mr *MockInstanceServerMockRecorder) DeleteNetworkZone(arg0 any) *gomock.Call

DeleteNetworkZone indicates an expected call of DeleteNetworkZone.

func (*MockInstanceServerMockRecorder) DeleteNetworkZoneRecord

func (mr *MockInstanceServerMockRecorder) DeleteNetworkZoneRecord(arg0, arg1 any) *gomock.Call

DeleteNetworkZoneRecord indicates an expected call of DeleteNetworkZoneRecord.

func (*MockInstanceServerMockRecorder) DeleteOperation

func (mr *MockInstanceServerMockRecorder) DeleteOperation(arg0 any) *gomock.Call

DeleteOperation indicates an expected call of DeleteOperation.

func (*MockInstanceServerMockRecorder) DeleteProfile

func (mr *MockInstanceServerMockRecorder) DeleteProfile(arg0 any) *gomock.Call

DeleteProfile indicates an expected call of DeleteProfile.

func (*MockInstanceServerMockRecorder) DeleteProject

func (mr *MockInstanceServerMockRecorder) DeleteProject(arg0 any) *gomock.Call

DeleteProject indicates an expected call of DeleteProject.

func (*MockInstanceServerMockRecorder) DeleteStoragePool

func (mr *MockInstanceServerMockRecorder) DeleteStoragePool(arg0 any) *gomock.Call

DeleteStoragePool indicates an expected call of DeleteStoragePool.

func (*MockInstanceServerMockRecorder) DeleteStoragePoolBucket

func (mr *MockInstanceServerMockRecorder) DeleteStoragePoolBucket(arg0, arg1 any) *gomock.Call

DeleteStoragePoolBucket indicates an expected call of DeleteStoragePoolBucket.

func (*MockInstanceServerMockRecorder) DeleteStoragePoolBucketKey

func (mr *MockInstanceServerMockRecorder) DeleteStoragePoolBucketKey(arg0, arg1, arg2 any) *gomock.Call

DeleteStoragePoolBucketKey indicates an expected call of DeleteStoragePoolBucketKey.

func (*MockInstanceServerMockRecorder) DeleteStoragePoolVolume

func (mr *MockInstanceServerMockRecorder) DeleteStoragePoolVolume(arg0, arg1, arg2 any) *gomock.Call

DeleteStoragePoolVolume indicates an expected call of DeleteStoragePoolVolume.

func (*MockInstanceServerMockRecorder) DeleteStoragePoolVolumeBackup

func (mr *MockInstanceServerMockRecorder) DeleteStoragePoolVolumeBackup(arg0, arg1, arg2 any) *gomock.Call

DeleteStoragePoolVolumeBackup indicates an expected call of DeleteStoragePoolVolumeBackup.

func (*MockInstanceServerMockRecorder) DeleteStoragePoolVolumeSnapshot

func (mr *MockInstanceServerMockRecorder) DeleteStoragePoolVolumeSnapshot(arg0, arg1, arg2, arg3 any) *gomock.Call

DeleteStoragePoolVolumeSnapshot indicates an expected call of DeleteStoragePoolVolumeSnapshot.

func (*MockInstanceServerMockRecorder) DeleteWarning

func (mr *MockInstanceServerMockRecorder) DeleteWarning(arg0 any) *gomock.Call

DeleteWarning indicates an expected call of DeleteWarning.

func (*MockInstanceServerMockRecorder) Disconnect

func (mr *MockInstanceServerMockRecorder) Disconnect() *gomock.Call

Disconnect indicates an expected call of Disconnect.

func (*MockInstanceServerMockRecorder) DoHTTP

func (mr *MockInstanceServerMockRecorder) DoHTTP(arg0 any) *gomock.Call

DoHTTP indicates an expected call of DoHTTP.

func (*MockInstanceServerMockRecorder) ExecContainer

func (mr *MockInstanceServerMockRecorder) ExecContainer(arg0, arg1, arg2 any) *gomock.Call

ExecContainer indicates an expected call of ExecContainer.

func (*MockInstanceServerMockRecorder) ExecInstance

func (mr *MockInstanceServerMockRecorder) ExecInstance(arg0, arg1, arg2 any) *gomock.Call

ExecInstance indicates an expected call of ExecInstance.

func (*MockInstanceServerMockRecorder) ExportImage

func (mr *MockInstanceServerMockRecorder) ExportImage(arg0, arg1 any) *gomock.Call

ExportImage indicates an expected call of ExportImage.

func (*MockInstanceServerMockRecorder) GetCertificate

func (mr *MockInstanceServerMockRecorder) GetCertificate(arg0 any) *gomock.Call

GetCertificate indicates an expected call of GetCertificate.

func (*MockInstanceServerMockRecorder) GetCertificateFingerprints

func (mr *MockInstanceServerMockRecorder) GetCertificateFingerprints() *gomock.Call

GetCertificateFingerprints indicates an expected call of GetCertificateFingerprints.

func (*MockInstanceServerMockRecorder) GetCertificates

func (mr *MockInstanceServerMockRecorder) GetCertificates() *gomock.Call

GetCertificates indicates an expected call of GetCertificates.

func (*MockInstanceServerMockRecorder) GetCluster

func (mr *MockInstanceServerMockRecorder) GetCluster() *gomock.Call

GetCluster indicates an expected call of GetCluster.

func (*MockInstanceServerMockRecorder) GetClusterGroup

func (mr *MockInstanceServerMockRecorder) GetClusterGroup(arg0 any) *gomock.Call

GetClusterGroup indicates an expected call of GetClusterGroup.

func (*MockInstanceServerMockRecorder) GetClusterGroupNames

func (mr *MockInstanceServerMockRecorder) GetClusterGroupNames() *gomock.Call

GetClusterGroupNames indicates an expected call of GetClusterGroupNames.

func (*MockInstanceServerMockRecorder) GetClusterGroups

func (mr *MockInstanceServerMockRecorder) GetClusterGroups() *gomock.Call

GetClusterGroups indicates an expected call of GetClusterGroups.

func (*MockInstanceServerMockRecorder) GetClusterMember

func (mr *MockInstanceServerMockRecorder) GetClusterMember(arg0 any) *gomock.Call

GetClusterMember indicates an expected call of GetClusterMember.

func (*MockInstanceServerMockRecorder) GetClusterMemberNames

func (mr *MockInstanceServerMockRecorder) GetClusterMemberNames() *gomock.Call

GetClusterMemberNames indicates an expected call of GetClusterMemberNames.

func (*MockInstanceServerMockRecorder) GetClusterMemberState

func (mr *MockInstanceServerMockRecorder) GetClusterMemberState(arg0 any) *gomock.Call

GetClusterMemberState indicates an expected call of GetClusterMemberState.

func (*MockInstanceServerMockRecorder) GetClusterMembers

func (mr *MockInstanceServerMockRecorder) GetClusterMembers() *gomock.Call

GetClusterMembers indicates an expected call of GetClusterMembers.

func (*MockInstanceServerMockRecorder) GetConnectionInfo

func (mr *MockInstanceServerMockRecorder) GetConnectionInfo() *gomock.Call

GetConnectionInfo indicates an expected call of GetConnectionInfo.

func (*MockInstanceServerMockRecorder) GetContainer

func (mr *MockInstanceServerMockRecorder) GetContainer(arg0 any) *gomock.Call

GetContainer indicates an expected call of GetContainer.

func (*MockInstanceServerMockRecorder) GetContainerBackup

func (mr *MockInstanceServerMockRecorder) GetContainerBackup(arg0, arg1 any) *gomock.Call

GetContainerBackup indicates an expected call of GetContainerBackup.

func (*MockInstanceServerMockRecorder) GetContainerBackupFile

func (mr *MockInstanceServerMockRecorder) GetContainerBackupFile(arg0, arg1, arg2 any) *gomock.Call

GetContainerBackupFile indicates an expected call of GetContainerBackupFile.

func (*MockInstanceServerMockRecorder) GetContainerBackupNames

func (mr *MockInstanceServerMockRecorder) GetContainerBackupNames(arg0 any) *gomock.Call

GetContainerBackupNames indicates an expected call of GetContainerBackupNames.

func (*MockInstanceServerMockRecorder) GetContainerBackups

func (mr *MockInstanceServerMockRecorder) GetContainerBackups(arg0 any) *gomock.Call

GetContainerBackups indicates an expected call of GetContainerBackups.

func (*MockInstanceServerMockRecorder) GetContainerConsoleLog

func (mr *MockInstanceServerMockRecorder) GetContainerConsoleLog(arg0, arg1 any) *gomock.Call

GetContainerConsoleLog indicates an expected call of GetContainerConsoleLog.

func (*MockInstanceServerMockRecorder) GetContainerFile

func (mr *MockInstanceServerMockRecorder) GetContainerFile(arg0, arg1 any) *gomock.Call

GetContainerFile indicates an expected call of GetContainerFile.

func (*MockInstanceServerMockRecorder) GetContainerLogfile

func (mr *MockInstanceServerMockRecorder) GetContainerLogfile(arg0, arg1 any) *gomock.Call

GetContainerLogfile indicates an expected call of GetContainerLogfile.

func (*MockInstanceServerMockRecorder) GetContainerLogfiles

func (mr *MockInstanceServerMockRecorder) GetContainerLogfiles(arg0 any) *gomock.Call

GetContainerLogfiles indicates an expected call of GetContainerLogfiles.

func (*MockInstanceServerMockRecorder) GetContainerMetadata

func (mr *MockInstanceServerMockRecorder) GetContainerMetadata(arg0 any) *gomock.Call

GetContainerMetadata indicates an expected call of GetContainerMetadata.

func (*MockInstanceServerMockRecorder) GetContainerNames

func (mr *MockInstanceServerMockRecorder) GetContainerNames() *gomock.Call

GetContainerNames indicates an expected call of GetContainerNames.

func (*MockInstanceServerMockRecorder) GetContainerSnapshot

func (mr *MockInstanceServerMockRecorder) GetContainerSnapshot(arg0, arg1 any) *gomock.Call

GetContainerSnapshot indicates an expected call of GetContainerSnapshot.

func (*MockInstanceServerMockRecorder) GetContainerSnapshotNames

func (mr *MockInstanceServerMockRecorder) GetContainerSnapshotNames(arg0 any) *gomock.Call

GetContainerSnapshotNames indicates an expected call of GetContainerSnapshotNames.

func (*MockInstanceServerMockRecorder) GetContainerSnapshots

func (mr *MockInstanceServerMockRecorder) GetContainerSnapshots(arg0 any) *gomock.Call

GetContainerSnapshots indicates an expected call of GetContainerSnapshots.

func (*MockInstanceServerMockRecorder) GetContainerState

func (mr *MockInstanceServerMockRecorder) GetContainerState(arg0 any) *gomock.Call

GetContainerState indicates an expected call of GetContainerState.

func (*MockInstanceServerMockRecorder) GetContainerTemplateFile

func (mr *MockInstanceServerMockRecorder) GetContainerTemplateFile(arg0, arg1 any) *gomock.Call

GetContainerTemplateFile indicates an expected call of GetContainerTemplateFile.

func (*MockInstanceServerMockRecorder) GetContainerTemplateFiles

func (mr *MockInstanceServerMockRecorder) GetContainerTemplateFiles(arg0 any) *gomock.Call

GetContainerTemplateFiles indicates an expected call of GetContainerTemplateFiles.

func (*MockInstanceServerMockRecorder) GetContainers

func (mr *MockInstanceServerMockRecorder) GetContainers() *gomock.Call

GetContainers indicates an expected call of GetContainers.

func (*MockInstanceServerMockRecorder) GetContainersFull

func (mr *MockInstanceServerMockRecorder) GetContainersFull() *gomock.Call

GetContainersFull indicates an expected call of GetContainersFull.

func (*MockInstanceServerMockRecorder) GetEvents

func (mr *MockInstanceServerMockRecorder) GetEvents() *gomock.Call

GetEvents indicates an expected call of GetEvents.

func (*MockInstanceServerMockRecorder) GetEventsAllProjects

func (mr *MockInstanceServerMockRecorder) GetEventsAllProjects() *gomock.Call

GetEventsAllProjects indicates an expected call of GetEventsAllProjects.

func (*MockInstanceServerMockRecorder) GetHTTPClient

func (mr *MockInstanceServerMockRecorder) GetHTTPClient() *gomock.Call

GetHTTPClient indicates an expected call of GetHTTPClient.

func (*MockInstanceServerMockRecorder) GetImage

func (mr *MockInstanceServerMockRecorder) GetImage(arg0 any) *gomock.Call

GetImage indicates an expected call of GetImage.

func (*MockInstanceServerMockRecorder) GetImageAlias

func (mr *MockInstanceServerMockRecorder) GetImageAlias(arg0 any) *gomock.Call

GetImageAlias indicates an expected call of GetImageAlias.

func (*MockInstanceServerMockRecorder) GetImageAliasArchitectures

func (mr *MockInstanceServerMockRecorder) GetImageAliasArchitectures(arg0, arg1 any) *gomock.Call

GetImageAliasArchitectures indicates an expected call of GetImageAliasArchitectures.

func (*MockInstanceServerMockRecorder) GetImageAliasNames

func (mr *MockInstanceServerMockRecorder) GetImageAliasNames() *gomock.Call

GetImageAliasNames indicates an expected call of GetImageAliasNames.

func (*MockInstanceServerMockRecorder) GetImageAliasType

func (mr *MockInstanceServerMockRecorder) GetImageAliasType(arg0, arg1 any) *gomock.Call

GetImageAliasType indicates an expected call of GetImageAliasType.

func (*MockInstanceServerMockRecorder) GetImageAliases

func (mr *MockInstanceServerMockRecorder) GetImageAliases() *gomock.Call

GetImageAliases indicates an expected call of GetImageAliases.

func (*MockInstanceServerMockRecorder) GetImageFile

func (mr *MockInstanceServerMockRecorder) GetImageFile(arg0, arg1 any) *gomock.Call

GetImageFile indicates an expected call of GetImageFile.

func (*MockInstanceServerMockRecorder) GetImageFingerprints

func (mr *MockInstanceServerMockRecorder) GetImageFingerprints() *gomock.Call

GetImageFingerprints indicates an expected call of GetImageFingerprints.

func (*MockInstanceServerMockRecorder) GetImageSecret

func (mr *MockInstanceServerMockRecorder) GetImageSecret(arg0 any) *gomock.Call

GetImageSecret indicates an expected call of GetImageSecret.

func (*MockInstanceServerMockRecorder) GetImages

func (mr *MockInstanceServerMockRecorder) GetImages() *gomock.Call

GetImages indicates an expected call of GetImages.

func (*MockInstanceServerMockRecorder) GetImagesWithFilter

func (mr *MockInstanceServerMockRecorder) GetImagesWithFilter(arg0 any) *gomock.Call

GetImagesWithFilter indicates an expected call of GetImagesWithFilter.

func (*MockInstanceServerMockRecorder) GetInstance

func (mr *MockInstanceServerMockRecorder) GetInstance(arg0 any) *gomock.Call

GetInstance indicates an expected call of GetInstance.

func (*MockInstanceServerMockRecorder) GetInstanceBackup

func (mr *MockInstanceServerMockRecorder) GetInstanceBackup(arg0, arg1 any) *gomock.Call

GetInstanceBackup indicates an expected call of GetInstanceBackup.

func (*MockInstanceServerMockRecorder) GetInstanceBackupFile

func (mr *MockInstanceServerMockRecorder) GetInstanceBackupFile(arg0, arg1, arg2 any) *gomock.Call

GetInstanceBackupFile indicates an expected call of GetInstanceBackupFile.

func (*MockInstanceServerMockRecorder) GetInstanceBackupNames

func (mr *MockInstanceServerMockRecorder) GetInstanceBackupNames(arg0 any) *gomock.Call

GetInstanceBackupNames indicates an expected call of GetInstanceBackupNames.

func (*MockInstanceServerMockRecorder) GetInstanceBackups

func (mr *MockInstanceServerMockRecorder) GetInstanceBackups(arg0 any) *gomock.Call

GetInstanceBackups indicates an expected call of GetInstanceBackups.

func (*MockInstanceServerMockRecorder) GetInstanceConsoleLog

func (mr *MockInstanceServerMockRecorder) GetInstanceConsoleLog(arg0, arg1 any) *gomock.Call

GetInstanceConsoleLog indicates an expected call of GetInstanceConsoleLog.

func (*MockInstanceServerMockRecorder) GetInstanceFile

func (mr *MockInstanceServerMockRecorder) GetInstanceFile(arg0, arg1 any) *gomock.Call

GetInstanceFile indicates an expected call of GetInstanceFile.

func (*MockInstanceServerMockRecorder) GetInstanceFileSFTP

func (mr *MockInstanceServerMockRecorder) GetInstanceFileSFTP(arg0 any) *gomock.Call

GetInstanceFileSFTP indicates an expected call of GetInstanceFileSFTP.

func (*MockInstanceServerMockRecorder) GetInstanceFileSFTPConn

func (mr *MockInstanceServerMockRecorder) GetInstanceFileSFTPConn(arg0 any) *gomock.Call

GetInstanceFileSFTPConn indicates an expected call of GetInstanceFileSFTPConn.

func (*MockInstanceServerMockRecorder) GetInstanceFull

func (mr *MockInstanceServerMockRecorder) GetInstanceFull(arg0 any) *gomock.Call

GetInstanceFull indicates an expected call of GetInstanceFull.

func (*MockInstanceServerMockRecorder) GetInstanceLogfile

func (mr *MockInstanceServerMockRecorder) GetInstanceLogfile(arg0, arg1 any) *gomock.Call

GetInstanceLogfile indicates an expected call of GetInstanceLogfile.

func (*MockInstanceServerMockRecorder) GetInstanceLogfiles

func (mr *MockInstanceServerMockRecorder) GetInstanceLogfiles(arg0 any) *gomock.Call

GetInstanceLogfiles indicates an expected call of GetInstanceLogfiles.

func (*MockInstanceServerMockRecorder) GetInstanceMetadata

func (mr *MockInstanceServerMockRecorder) GetInstanceMetadata(arg0 any) *gomock.Call

GetInstanceMetadata indicates an expected call of GetInstanceMetadata.

func (*MockInstanceServerMockRecorder) GetInstanceNames

func (mr *MockInstanceServerMockRecorder) GetInstanceNames(arg0 any) *gomock.Call

GetInstanceNames indicates an expected call of GetInstanceNames.

func (*MockInstanceServerMockRecorder) GetInstanceNamesAllProjects

func (mr *MockInstanceServerMockRecorder) GetInstanceNamesAllProjects(arg0 any) *gomock.Call

GetInstanceNamesAllProjects indicates an expected call of GetInstanceNamesAllProjects.

func (*MockInstanceServerMockRecorder) GetInstanceSnapshot

func (mr *MockInstanceServerMockRecorder) GetInstanceSnapshot(arg0, arg1 any) *gomock.Call

GetInstanceSnapshot indicates an expected call of GetInstanceSnapshot.

func (*MockInstanceServerMockRecorder) GetInstanceSnapshotNames

func (mr *MockInstanceServerMockRecorder) GetInstanceSnapshotNames(arg0 any) *gomock.Call

GetInstanceSnapshotNames indicates an expected call of GetInstanceSnapshotNames.

func (*MockInstanceServerMockRecorder) GetInstanceSnapshots

func (mr *MockInstanceServerMockRecorder) GetInstanceSnapshots(arg0 any) *gomock.Call

GetInstanceSnapshots indicates an expected call of GetInstanceSnapshots.

func (*MockInstanceServerMockRecorder) GetInstanceState

func (mr *MockInstanceServerMockRecorder) GetInstanceState(arg0 any) *gomock.Call

GetInstanceState indicates an expected call of GetInstanceState.

func (*MockInstanceServerMockRecorder) GetInstanceTemplateFile

func (mr *MockInstanceServerMockRecorder) GetInstanceTemplateFile(arg0, arg1 any) *gomock.Call

GetInstanceTemplateFile indicates an expected call of GetInstanceTemplateFile.

func (*MockInstanceServerMockRecorder) GetInstanceTemplateFiles

func (mr *MockInstanceServerMockRecorder) GetInstanceTemplateFiles(arg0 any) *gomock.Call

GetInstanceTemplateFiles indicates an expected call of GetInstanceTemplateFiles.

func (*MockInstanceServerMockRecorder) GetInstances

func (mr *MockInstanceServerMockRecorder) GetInstances(arg0 any) *gomock.Call

GetInstances indicates an expected call of GetInstances.

func (*MockInstanceServerMockRecorder) GetInstancesAllProjects

func (mr *MockInstanceServerMockRecorder) GetInstancesAllProjects(arg0 any) *gomock.Call

GetInstancesAllProjects indicates an expected call of GetInstancesAllProjects.

func (*MockInstanceServerMockRecorder) GetInstancesAllProjectsWithFilter

func (mr *MockInstanceServerMockRecorder) GetInstancesAllProjectsWithFilter(arg0, arg1 any) *gomock.Call

GetInstancesAllProjectsWithFilter indicates an expected call of GetInstancesAllProjectsWithFilter.

func (*MockInstanceServerMockRecorder) GetInstancesFull

func (mr *MockInstanceServerMockRecorder) GetInstancesFull(arg0 any) *gomock.Call

GetInstancesFull indicates an expected call of GetInstancesFull.

func (*MockInstanceServerMockRecorder) GetInstancesFullAllProjects

func (mr *MockInstanceServerMockRecorder) GetInstancesFullAllProjects(arg0 any) *gomock.Call

GetInstancesFullAllProjects indicates an expected call of GetInstancesFullAllProjects.

func (*MockInstanceServerMockRecorder) GetInstancesFullAllProjectsWithFilter

func (mr *MockInstanceServerMockRecorder) GetInstancesFullAllProjectsWithFilter(arg0, arg1 any) *gomock.Call

GetInstancesFullAllProjectsWithFilter indicates an expected call of GetInstancesFullAllProjectsWithFilter.

func (*MockInstanceServerMockRecorder) GetInstancesFullWithFilter

func (mr *MockInstanceServerMockRecorder) GetInstancesFullWithFilter(arg0, arg1 any) *gomock.Call

GetInstancesFullWithFilter indicates an expected call of GetInstancesFullWithFilter.

func (*MockInstanceServerMockRecorder) GetInstancesWithFilter

func (mr *MockInstanceServerMockRecorder) GetInstancesWithFilter(arg0, arg1 any) *gomock.Call

GetInstancesWithFilter indicates an expected call of GetInstancesWithFilter.

func (*MockInstanceServerMockRecorder) GetMetrics

func (mr *MockInstanceServerMockRecorder) GetMetrics() *gomock.Call

GetMetrics indicates an expected call of GetMetrics.

func (*MockInstanceServerMockRecorder) GetNetwork

func (mr *MockInstanceServerMockRecorder) GetNetwork(arg0 any) *gomock.Call

GetNetwork indicates an expected call of GetNetwork.

func (*MockInstanceServerMockRecorder) GetNetworkACL

func (mr *MockInstanceServerMockRecorder) GetNetworkACL(arg0 any) *gomock.Call

GetNetworkACL indicates an expected call of GetNetworkACL.

func (*MockInstanceServerMockRecorder) GetNetworkACLLogfile

func (mr *MockInstanceServerMockRecorder) GetNetworkACLLogfile(arg0 any) *gomock.Call

GetNetworkACLLogfile indicates an expected call of GetNetworkACLLogfile.

func (*MockInstanceServerMockRecorder) GetNetworkACLNames

func (mr *MockInstanceServerMockRecorder) GetNetworkACLNames() *gomock.Call

GetNetworkACLNames indicates an expected call of GetNetworkACLNames.

func (*MockInstanceServerMockRecorder) GetNetworkACLs

func (mr *MockInstanceServerMockRecorder) GetNetworkACLs() *gomock.Call

GetNetworkACLs indicates an expected call of GetNetworkACLs.

func (*MockInstanceServerMockRecorder) GetNetworkAllocations

func (mr *MockInstanceServerMockRecorder) GetNetworkAllocations(arg0 any) *gomock.Call

GetNetworkAllocations indicates an expected call of GetNetworkAllocations.

func (*MockInstanceServerMockRecorder) GetNetworkForward

func (mr *MockInstanceServerMockRecorder) GetNetworkForward(arg0, arg1 any) *gomock.Call

GetNetworkForward indicates an expected call of GetNetworkForward.

func (*MockInstanceServerMockRecorder) GetNetworkForwardAddresses

func (mr *MockInstanceServerMockRecorder) GetNetworkForwardAddresses(arg0 any) *gomock.Call

GetNetworkForwardAddresses indicates an expected call of GetNetworkForwardAddresses.

func (*MockInstanceServerMockRecorder) GetNetworkForwards

func (mr *MockInstanceServerMockRecorder) GetNetworkForwards(arg0 any) *gomock.Call

GetNetworkForwards indicates an expected call of GetNetworkForwards.

func (*MockInstanceServerMockRecorder) GetNetworkLeases

func (mr *MockInstanceServerMockRecorder) GetNetworkLeases(arg0 any) *gomock.Call

GetNetworkLeases indicates an expected call of GetNetworkLeases.

func (*MockInstanceServerMockRecorder) GetNetworkLoadBalancer

func (mr *MockInstanceServerMockRecorder) GetNetworkLoadBalancer(arg0, arg1 any) *gomock.Call

GetNetworkLoadBalancer indicates an expected call of GetNetworkLoadBalancer.

func (*MockInstanceServerMockRecorder) GetNetworkLoadBalancerAddresses

func (mr *MockInstanceServerMockRecorder) GetNetworkLoadBalancerAddresses(arg0 any) *gomock.Call

GetNetworkLoadBalancerAddresses indicates an expected call of GetNetworkLoadBalancerAddresses.

func (*MockInstanceServerMockRecorder) GetNetworkLoadBalancers

func (mr *MockInstanceServerMockRecorder) GetNetworkLoadBalancers(arg0 any) *gomock.Call

GetNetworkLoadBalancers indicates an expected call of GetNetworkLoadBalancers.

func (*MockInstanceServerMockRecorder) GetNetworkNames

func (mr *MockInstanceServerMockRecorder) GetNetworkNames() *gomock.Call

GetNetworkNames indicates an expected call of GetNetworkNames.

func (*MockInstanceServerMockRecorder) GetNetworkPeer

func (mr *MockInstanceServerMockRecorder) GetNetworkPeer(arg0, arg1 any) *gomock.Call

GetNetworkPeer indicates an expected call of GetNetworkPeer.

func (*MockInstanceServerMockRecorder) GetNetworkPeerNames

func (mr *MockInstanceServerMockRecorder) GetNetworkPeerNames(arg0 any) *gomock.Call

GetNetworkPeerNames indicates an expected call of GetNetworkPeerNames.

func (*MockInstanceServerMockRecorder) GetNetworkPeers

func (mr *MockInstanceServerMockRecorder) GetNetworkPeers(arg0 any) *gomock.Call

GetNetworkPeers indicates an expected call of GetNetworkPeers.

func (*MockInstanceServerMockRecorder) GetNetworkState

func (mr *MockInstanceServerMockRecorder) GetNetworkState(arg0 any) *gomock.Call

GetNetworkState indicates an expected call of GetNetworkState.

func (*MockInstanceServerMockRecorder) GetNetworkZone

func (mr *MockInstanceServerMockRecorder) GetNetworkZone(arg0 any) *gomock.Call

GetNetworkZone indicates an expected call of GetNetworkZone.

func (*MockInstanceServerMockRecorder) GetNetworkZoneNames

func (mr *MockInstanceServerMockRecorder) GetNetworkZoneNames() *gomock.Call

GetNetworkZoneNames indicates an expected call of GetNetworkZoneNames.

func (*MockInstanceServerMockRecorder) GetNetworkZoneRecord

func (mr *MockInstanceServerMockRecorder) GetNetworkZoneRecord(arg0, arg1 any) *gomock.Call

GetNetworkZoneRecord indicates an expected call of GetNetworkZoneRecord.

func (*MockInstanceServerMockRecorder) GetNetworkZoneRecordNames

func (mr *MockInstanceServerMockRecorder) GetNetworkZoneRecordNames(arg0 any) *gomock.Call

GetNetworkZoneRecordNames indicates an expected call of GetNetworkZoneRecordNames.

func (*MockInstanceServerMockRecorder) GetNetworkZoneRecords

func (mr *MockInstanceServerMockRecorder) GetNetworkZoneRecords(arg0 any) *gomock.Call

GetNetworkZoneRecords indicates an expected call of GetNetworkZoneRecords.

func (*MockInstanceServerMockRecorder) GetNetworkZones

func (mr *MockInstanceServerMockRecorder) GetNetworkZones() *gomock.Call

GetNetworkZones indicates an expected call of GetNetworkZones.

func (*MockInstanceServerMockRecorder) GetNetworks

func (mr *MockInstanceServerMockRecorder) GetNetworks() *gomock.Call

GetNetworks indicates an expected call of GetNetworks.

func (*MockInstanceServerMockRecorder) GetOperation

func (mr *MockInstanceServerMockRecorder) GetOperation(arg0 any) *gomock.Call

GetOperation indicates an expected call of GetOperation.

func (*MockInstanceServerMockRecorder) GetOperationUUIDs

func (mr *MockInstanceServerMockRecorder) GetOperationUUIDs() *gomock.Call

GetOperationUUIDs indicates an expected call of GetOperationUUIDs.

func (*MockInstanceServerMockRecorder) GetOperationWait

func (mr *MockInstanceServerMockRecorder) GetOperationWait(arg0, arg1 any) *gomock.Call

GetOperationWait indicates an expected call of GetOperationWait.

func (*MockInstanceServerMockRecorder) GetOperationWaitSecret

func (mr *MockInstanceServerMockRecorder) GetOperationWaitSecret(arg0, arg1, arg2 any) *gomock.Call

GetOperationWaitSecret indicates an expected call of GetOperationWaitSecret.

func (*MockInstanceServerMockRecorder) GetOperationWebsocket

func (mr *MockInstanceServerMockRecorder) GetOperationWebsocket(arg0, arg1 any) *gomock.Call

GetOperationWebsocket indicates an expected call of GetOperationWebsocket.

func (*MockInstanceServerMockRecorder) GetOperations

func (mr *MockInstanceServerMockRecorder) GetOperations() *gomock.Call

GetOperations indicates an expected call of GetOperations.

func (*MockInstanceServerMockRecorder) GetOperationsAllProjects

func (mr *MockInstanceServerMockRecorder) GetOperationsAllProjects() *gomock.Call

GetOperationsAllProjects indicates an expected call of GetOperationsAllProjects.

func (*MockInstanceServerMockRecorder) GetPrivateImage

func (mr *MockInstanceServerMockRecorder) GetPrivateImage(arg0, arg1 any) *gomock.Call

GetPrivateImage indicates an expected call of GetPrivateImage.

func (*MockInstanceServerMockRecorder) GetPrivateImageFile

func (mr *MockInstanceServerMockRecorder) GetPrivateImageFile(arg0, arg1, arg2 any) *gomock.Call

GetPrivateImageFile indicates an expected call of GetPrivateImageFile.

func (*MockInstanceServerMockRecorder) GetProfile

func (mr *MockInstanceServerMockRecorder) GetProfile(arg0 any) *gomock.Call

GetProfile indicates an expected call of GetProfile.

func (*MockInstanceServerMockRecorder) GetProfileNames

func (mr *MockInstanceServerMockRecorder) GetProfileNames() *gomock.Call

GetProfileNames indicates an expected call of GetProfileNames.

func (*MockInstanceServerMockRecorder) GetProfiles

func (mr *MockInstanceServerMockRecorder) GetProfiles() *gomock.Call

GetProfiles indicates an expected call of GetProfiles.

func (*MockInstanceServerMockRecorder) GetProject

func (mr *MockInstanceServerMockRecorder) GetProject(arg0 any) *gomock.Call

GetProject indicates an expected call of GetProject.

func (*MockInstanceServerMockRecorder) GetProjectNames

func (mr *MockInstanceServerMockRecorder) GetProjectNames() *gomock.Call

GetProjectNames indicates an expected call of GetProjectNames.

func (*MockInstanceServerMockRecorder) GetProjectState

func (mr *MockInstanceServerMockRecorder) GetProjectState(arg0 any) *gomock.Call

GetProjectState indicates an expected call of GetProjectState.

func (*MockInstanceServerMockRecorder) GetProjects

func (mr *MockInstanceServerMockRecorder) GetProjects() *gomock.Call

GetProjects indicates an expected call of GetProjects.

func (*MockInstanceServerMockRecorder) GetServer

func (mr *MockInstanceServerMockRecorder) GetServer() *gomock.Call

GetServer indicates an expected call of GetServer.

func (*MockInstanceServerMockRecorder) GetServerResources

func (mr *MockInstanceServerMockRecorder) GetServerResources() *gomock.Call

GetServerResources indicates an expected call of GetServerResources.

func (*MockInstanceServerMockRecorder) GetStoragePool

func (mr *MockInstanceServerMockRecorder) GetStoragePool(arg0 any) *gomock.Call

GetStoragePool indicates an expected call of GetStoragePool.

func (*MockInstanceServerMockRecorder) GetStoragePoolBucket

func (mr *MockInstanceServerMockRecorder) GetStoragePoolBucket(arg0, arg1 any) *gomock.Call

GetStoragePoolBucket indicates an expected call of GetStoragePoolBucket.

func (*MockInstanceServerMockRecorder) GetStoragePoolBucketKey

func (mr *MockInstanceServerMockRecorder) GetStoragePoolBucketKey(arg0, arg1, arg2 any) *gomock.Call

GetStoragePoolBucketKey indicates an expected call of GetStoragePoolBucketKey.

func (*MockInstanceServerMockRecorder) GetStoragePoolBucketKeyNames

func (mr *MockInstanceServerMockRecorder) GetStoragePoolBucketKeyNames(arg0, arg1 any) *gomock.Call

GetStoragePoolBucketKeyNames indicates an expected call of GetStoragePoolBucketKeyNames.

func (*MockInstanceServerMockRecorder) GetStoragePoolBucketKeys

func (mr *MockInstanceServerMockRecorder) GetStoragePoolBucketKeys(arg0, arg1 any) *gomock.Call

GetStoragePoolBucketKeys indicates an expected call of GetStoragePoolBucketKeys.

func (*MockInstanceServerMockRecorder) GetStoragePoolBucketNames

func (mr *MockInstanceServerMockRecorder) GetStoragePoolBucketNames(arg0 any) *gomock.Call

GetStoragePoolBucketNames indicates an expected call of GetStoragePoolBucketNames.

func (*MockInstanceServerMockRecorder) GetStoragePoolBuckets

func (mr *MockInstanceServerMockRecorder) GetStoragePoolBuckets(arg0 any) *gomock.Call

GetStoragePoolBuckets indicates an expected call of GetStoragePoolBuckets.

func (*MockInstanceServerMockRecorder) GetStoragePoolNames

func (mr *MockInstanceServerMockRecorder) GetStoragePoolNames() *gomock.Call

GetStoragePoolNames indicates an expected call of GetStoragePoolNames.

func (*MockInstanceServerMockRecorder) GetStoragePoolResources

func (mr *MockInstanceServerMockRecorder) GetStoragePoolResources(arg0 any) *gomock.Call

GetStoragePoolResources indicates an expected call of GetStoragePoolResources.

func (*MockInstanceServerMockRecorder) GetStoragePoolVolume

func (mr *MockInstanceServerMockRecorder) GetStoragePoolVolume(arg0, arg1, arg2 any) *gomock.Call

GetStoragePoolVolume indicates an expected call of GetStoragePoolVolume.

func (*MockInstanceServerMockRecorder) GetStoragePoolVolumeBackup

func (mr *MockInstanceServerMockRecorder) GetStoragePoolVolumeBackup(arg0, arg1, arg2 any) *gomock.Call

GetStoragePoolVolumeBackup indicates an expected call of GetStoragePoolVolumeBackup.

func (*MockInstanceServerMockRecorder) GetStoragePoolVolumeBackupFile

func (mr *MockInstanceServerMockRecorder) GetStoragePoolVolumeBackupFile(arg0, arg1, arg2, arg3 any) *gomock.Call

GetStoragePoolVolumeBackupFile indicates an expected call of GetStoragePoolVolumeBackupFile.

func (*MockInstanceServerMockRecorder) GetStoragePoolVolumeBackupNames

func (mr *MockInstanceServerMockRecorder) GetStoragePoolVolumeBackupNames(arg0, arg1 any) *gomock.Call

GetStoragePoolVolumeBackupNames indicates an expected call of GetStoragePoolVolumeBackupNames.

func (*MockInstanceServerMockRecorder) GetStoragePoolVolumeBackups

func (mr *MockInstanceServerMockRecorder) GetStoragePoolVolumeBackups(arg0, arg1 any) *gomock.Call

GetStoragePoolVolumeBackups indicates an expected call of GetStoragePoolVolumeBackups.

func (*MockInstanceServerMockRecorder) GetStoragePoolVolumeNames

func (mr *MockInstanceServerMockRecorder) GetStoragePoolVolumeNames(arg0 any) *gomock.Call

GetStoragePoolVolumeNames indicates an expected call of GetStoragePoolVolumeNames.

func (*MockInstanceServerMockRecorder) GetStoragePoolVolumeNamesAllProjects

func (mr *MockInstanceServerMockRecorder) GetStoragePoolVolumeNamesAllProjects(arg0 any) *gomock.Call

GetStoragePoolVolumeNamesAllProjects indicates an expected call of GetStoragePoolVolumeNamesAllProjects.

func (*MockInstanceServerMockRecorder) GetStoragePoolVolumeSnapshot

func (mr *MockInstanceServerMockRecorder) GetStoragePoolVolumeSnapshot(arg0, arg1, arg2, arg3 any) *gomock.Call

GetStoragePoolVolumeSnapshot indicates an expected call of GetStoragePoolVolumeSnapshot.

func (*MockInstanceServerMockRecorder) GetStoragePoolVolumeSnapshotNames

func (mr *MockInstanceServerMockRecorder) GetStoragePoolVolumeSnapshotNames(arg0, arg1, arg2 any) *gomock.Call

GetStoragePoolVolumeSnapshotNames indicates an expected call of GetStoragePoolVolumeSnapshotNames.

func (*MockInstanceServerMockRecorder) GetStoragePoolVolumeSnapshots

func (mr *MockInstanceServerMockRecorder) GetStoragePoolVolumeSnapshots(arg0, arg1, arg2 any) *gomock.Call

GetStoragePoolVolumeSnapshots indicates an expected call of GetStoragePoolVolumeSnapshots.

func (*MockInstanceServerMockRecorder) GetStoragePoolVolumeState

func (mr *MockInstanceServerMockRecorder) GetStoragePoolVolumeState(arg0, arg1, arg2 any) *gomock.Call

GetStoragePoolVolumeState indicates an expected call of GetStoragePoolVolumeState.

func (*MockInstanceServerMockRecorder) GetStoragePoolVolumes

func (mr *MockInstanceServerMockRecorder) GetStoragePoolVolumes(arg0 any) *gomock.Call

GetStoragePoolVolumes indicates an expected call of GetStoragePoolVolumes.

func (*MockInstanceServerMockRecorder) GetStoragePoolVolumesAllProjects

func (mr *MockInstanceServerMockRecorder) GetStoragePoolVolumesAllProjects(arg0 any) *gomock.Call

GetStoragePoolVolumesAllProjects indicates an expected call of GetStoragePoolVolumesAllProjects.

func (*MockInstanceServerMockRecorder) GetStoragePoolVolumesWithFilter

func (mr *MockInstanceServerMockRecorder) GetStoragePoolVolumesWithFilter(arg0, arg1 any) *gomock.Call

GetStoragePoolVolumesWithFilter indicates an expected call of GetStoragePoolVolumesWithFilter.

func (*MockInstanceServerMockRecorder) GetStoragePoolVolumesWithFilterAllProjects

func (mr *MockInstanceServerMockRecorder) GetStoragePoolVolumesWithFilterAllProjects(arg0, arg1 any) *gomock.Call

GetStoragePoolVolumesWithFilterAllProjects indicates an expected call of GetStoragePoolVolumesWithFilterAllProjects.

func (*MockInstanceServerMockRecorder) GetStoragePools

func (mr *MockInstanceServerMockRecorder) GetStoragePools() *gomock.Call

GetStoragePools indicates an expected call of GetStoragePools.

func (*MockInstanceServerMockRecorder) GetWarning

func (mr *MockInstanceServerMockRecorder) GetWarning(arg0 any) *gomock.Call

GetWarning indicates an expected call of GetWarning.

func (*MockInstanceServerMockRecorder) GetWarningUUIDs

func (mr *MockInstanceServerMockRecorder) GetWarningUUIDs() *gomock.Call

GetWarningUUIDs indicates an expected call of GetWarningUUIDs.

func (*MockInstanceServerMockRecorder) GetWarnings

func (mr *MockInstanceServerMockRecorder) GetWarnings() *gomock.Call

GetWarnings indicates an expected call of GetWarnings.

func (*MockInstanceServerMockRecorder) HasExtension

func (mr *MockInstanceServerMockRecorder) HasExtension(arg0 any) *gomock.Call

HasExtension indicates an expected call of HasExtension.

func (*MockInstanceServerMockRecorder) IsClustered

func (mr *MockInstanceServerMockRecorder) IsClustered() *gomock.Call

IsClustered indicates an expected call of IsClustered.

func (*MockInstanceServerMockRecorder) MigrateContainer

func (mr *MockInstanceServerMockRecorder) MigrateContainer(arg0, arg1 any) *gomock.Call

MigrateContainer indicates an expected call of MigrateContainer.

func (*MockInstanceServerMockRecorder) MigrateContainerSnapshot

func (mr *MockInstanceServerMockRecorder) MigrateContainerSnapshot(arg0, arg1, arg2 any) *gomock.Call

MigrateContainerSnapshot indicates an expected call of MigrateContainerSnapshot.

func (*MockInstanceServerMockRecorder) MigrateInstance

func (mr *MockInstanceServerMockRecorder) MigrateInstance(arg0, arg1 any) *gomock.Call

MigrateInstance indicates an expected call of MigrateInstance.

func (*MockInstanceServerMockRecorder) MigrateInstanceSnapshot

func (mr *MockInstanceServerMockRecorder) MigrateInstanceSnapshot(arg0, arg1, arg2 any) *gomock.Call

MigrateInstanceSnapshot indicates an expected call of MigrateInstanceSnapshot.

func (*MockInstanceServerMockRecorder) MigrateStoragePoolVolume

func (mr *MockInstanceServerMockRecorder) MigrateStoragePoolVolume(arg0, arg1 any) *gomock.Call

MigrateStoragePoolVolume indicates an expected call of MigrateStoragePoolVolume.

func (*MockInstanceServerMockRecorder) MoveStoragePoolVolume

func (mr *MockInstanceServerMockRecorder) MoveStoragePoolVolume(arg0, arg1, arg2, arg3, arg4 any) *gomock.Call

MoveStoragePoolVolume indicates an expected call of MoveStoragePoolVolume.

func (*MockInstanceServerMockRecorder) RawOperation

func (mr *MockInstanceServerMockRecorder) RawOperation(arg0, arg1, arg2, arg3 any) *gomock.Call

RawOperation indicates an expected call of RawOperation.

func (*MockInstanceServerMockRecorder) RawQuery

func (mr *MockInstanceServerMockRecorder) RawQuery(arg0, arg1, arg2, arg3 any) *gomock.Call

RawQuery indicates an expected call of RawQuery.

func (*MockInstanceServerMockRecorder) RawWebsocket

func (mr *MockInstanceServerMockRecorder) RawWebsocket(arg0 any) *gomock.Call

RawWebsocket indicates an expected call of RawWebsocket.

func (*MockInstanceServerMockRecorder) RebuildInstance

func (mr *MockInstanceServerMockRecorder) RebuildInstance(arg0, arg1 any) *gomock.Call

RebuildInstance indicates an expected call of RebuildInstance.

func (*MockInstanceServerMockRecorder) RebuildInstanceFromImage

func (mr *MockInstanceServerMockRecorder) RebuildInstanceFromImage(arg0, arg1, arg2, arg3 any) *gomock.Call

RebuildInstanceFromImage indicates an expected call of RebuildInstanceFromImage.

func (*MockInstanceServerMockRecorder) RefreshImage

func (mr *MockInstanceServerMockRecorder) RefreshImage(arg0 any) *gomock.Call

RefreshImage indicates an expected call of RefreshImage.

func (*MockInstanceServerMockRecorder) RenameClusterGroup

func (mr *MockInstanceServerMockRecorder) RenameClusterGroup(arg0, arg1 any) *gomock.Call

RenameClusterGroup indicates an expected call of RenameClusterGroup.

func (*MockInstanceServerMockRecorder) RenameClusterMember

func (mr *MockInstanceServerMockRecorder) RenameClusterMember(arg0, arg1 any) *gomock.Call

RenameClusterMember indicates an expected call of RenameClusterMember.

func (*MockInstanceServerMockRecorder) RenameContainer

func (mr *MockInstanceServerMockRecorder) RenameContainer(arg0, arg1 any) *gomock.Call

RenameContainer indicates an expected call of RenameContainer.

func (*MockInstanceServerMockRecorder) RenameContainerBackup

func (mr *MockInstanceServerMockRecorder) RenameContainerBackup(arg0, arg1, arg2 any) *gomock.Call

RenameContainerBackup indicates an expected call of RenameContainerBackup.

func (*MockInstanceServerMockRecorder) RenameContainerSnapshot

func (mr *MockInstanceServerMockRecorder) RenameContainerSnapshot(arg0, arg1, arg2 any) *gomock.Call

RenameContainerSnapshot indicates an expected call of RenameContainerSnapshot.

func (*MockInstanceServerMockRecorder) RenameImageAlias

func (mr *MockInstanceServerMockRecorder) RenameImageAlias(arg0, arg1 any) *gomock.Call

RenameImageAlias indicates an expected call of RenameImageAlias.

func (*MockInstanceServerMockRecorder) RenameInstance

func (mr *MockInstanceServerMockRecorder) RenameInstance(arg0, arg1 any) *gomock.Call

RenameInstance indicates an expected call of RenameInstance.

func (*MockInstanceServerMockRecorder) RenameInstanceBackup

func (mr *MockInstanceServerMockRecorder) RenameInstanceBackup(arg0, arg1, arg2 any) *gomock.Call

RenameInstanceBackup indicates an expected call of RenameInstanceBackup.

func (*MockInstanceServerMockRecorder) RenameInstanceSnapshot

func (mr *MockInstanceServerMockRecorder) RenameInstanceSnapshot(arg0, arg1, arg2 any) *gomock.Call

RenameInstanceSnapshot indicates an expected call of RenameInstanceSnapshot.

func (*MockInstanceServerMockRecorder) RenameNetwork

func (mr *MockInstanceServerMockRecorder) RenameNetwork(arg0, arg1 any) *gomock.Call

RenameNetwork indicates an expected call of RenameNetwork.

func (*MockInstanceServerMockRecorder) RenameNetworkACL

func (mr *MockInstanceServerMockRecorder) RenameNetworkACL(arg0, arg1 any) *gomock.Call

RenameNetworkACL indicates an expected call of RenameNetworkACL.

func (*MockInstanceServerMockRecorder) RenameProfile

func (mr *MockInstanceServerMockRecorder) RenameProfile(arg0, arg1 any) *gomock.Call

RenameProfile indicates an expected call of RenameProfile.

func (*MockInstanceServerMockRecorder) RenameProject

func (mr *MockInstanceServerMockRecorder) RenameProject(arg0, arg1 any) *gomock.Call

RenameProject indicates an expected call of RenameProject.

func (*MockInstanceServerMockRecorder) RenameStoragePoolVolume

func (mr *MockInstanceServerMockRecorder) RenameStoragePoolVolume(arg0, arg1, arg2, arg3 any) *gomock.Call

RenameStoragePoolVolume indicates an expected call of RenameStoragePoolVolume.

func (*MockInstanceServerMockRecorder) RenameStoragePoolVolumeBackup

func (mr *MockInstanceServerMockRecorder) RenameStoragePoolVolumeBackup(arg0, arg1, arg2, arg3 any) *gomock.Call

RenameStoragePoolVolumeBackup indicates an expected call of RenameStoragePoolVolumeBackup.

func (*MockInstanceServerMockRecorder) RenameStoragePoolVolumeSnapshot

func (mr *MockInstanceServerMockRecorder) RenameStoragePoolVolumeSnapshot(arg0, arg1, arg2, arg3, arg4 any) *gomock.Call

RenameStoragePoolVolumeSnapshot indicates an expected call of RenameStoragePoolVolumeSnapshot.

func (*MockInstanceServerMockRecorder) RequireAuthenticated

func (mr *MockInstanceServerMockRecorder) RequireAuthenticated(arg0 any) *gomock.Call

RequireAuthenticated indicates an expected call of RequireAuthenticated.

func (*MockInstanceServerMockRecorder) SendEvent

func (mr *MockInstanceServerMockRecorder) SendEvent(arg0 any) *gomock.Call

SendEvent indicates an expected call of SendEvent.

func (*MockInstanceServerMockRecorder) SetContainerMetadata

func (mr *MockInstanceServerMockRecorder) SetContainerMetadata(arg0, arg1, arg2 any) *gomock.Call

SetContainerMetadata indicates an expected call of SetContainerMetadata.

func (*MockInstanceServerMockRecorder) UpdateCertificate

func (mr *MockInstanceServerMockRecorder) UpdateCertificate(arg0, arg1, arg2 any) *gomock.Call

UpdateCertificate indicates an expected call of UpdateCertificate.

func (*MockInstanceServerMockRecorder) UpdateCluster

func (mr *MockInstanceServerMockRecorder) UpdateCluster(arg0, arg1 any) *gomock.Call

UpdateCluster indicates an expected call of UpdateCluster.

func (*MockInstanceServerMockRecorder) UpdateClusterCertificate

func (mr *MockInstanceServerMockRecorder) UpdateClusterCertificate(arg0, arg1 any) *gomock.Call

UpdateClusterCertificate indicates an expected call of UpdateClusterCertificate.

func (*MockInstanceServerMockRecorder) UpdateClusterGroup

func (mr *MockInstanceServerMockRecorder) UpdateClusterGroup(arg0, arg1, arg2 any) *gomock.Call

UpdateClusterGroup indicates an expected call of UpdateClusterGroup.

func (*MockInstanceServerMockRecorder) UpdateClusterMember

func (mr *MockInstanceServerMockRecorder) UpdateClusterMember(arg0, arg1, arg2 any) *gomock.Call

UpdateClusterMember indicates an expected call of UpdateClusterMember.

func (*MockInstanceServerMockRecorder) UpdateClusterMemberState

func (mr *MockInstanceServerMockRecorder) UpdateClusterMemberState(arg0, arg1 any) *gomock.Call

UpdateClusterMemberState indicates an expected call of UpdateClusterMemberState.

func (*MockInstanceServerMockRecorder) UpdateContainer

func (mr *MockInstanceServerMockRecorder) UpdateContainer(arg0, arg1, arg2 any) *gomock.Call

UpdateContainer indicates an expected call of UpdateContainer.

func (*MockInstanceServerMockRecorder) UpdateContainerSnapshot

func (mr *MockInstanceServerMockRecorder) UpdateContainerSnapshot(arg0, arg1, arg2, arg3 any) *gomock.Call

UpdateContainerSnapshot indicates an expected call of UpdateContainerSnapshot.

func (*MockInstanceServerMockRecorder) UpdateContainerState

func (mr *MockInstanceServerMockRecorder) UpdateContainerState(arg0, arg1, arg2 any) *gomock.Call

UpdateContainerState indicates an expected call of UpdateContainerState.

func (*MockInstanceServerMockRecorder) UpdateContainerTemplateFile

func (mr *MockInstanceServerMockRecorder) UpdateContainerTemplateFile(arg0, arg1, arg2 any) *gomock.Call

UpdateContainerTemplateFile indicates an expected call of UpdateContainerTemplateFile.

func (*MockInstanceServerMockRecorder) UpdateImage

func (mr *MockInstanceServerMockRecorder) UpdateImage(arg0, arg1, arg2 any) *gomock.Call

UpdateImage indicates an expected call of UpdateImage.

func (*MockInstanceServerMockRecorder) UpdateImageAlias

func (mr *MockInstanceServerMockRecorder) UpdateImageAlias(arg0, arg1, arg2 any) *gomock.Call

UpdateImageAlias indicates an expected call of UpdateImageAlias.

func (*MockInstanceServerMockRecorder) UpdateInstance

func (mr *MockInstanceServerMockRecorder) UpdateInstance(arg0, arg1, arg2 any) *gomock.Call

UpdateInstance indicates an expected call of UpdateInstance.

func (*MockInstanceServerMockRecorder) UpdateInstanceMetadata

func (mr *MockInstanceServerMockRecorder) UpdateInstanceMetadata(arg0, arg1, arg2 any) *gomock.Call

UpdateInstanceMetadata indicates an expected call of UpdateInstanceMetadata.

func (*MockInstanceServerMockRecorder) UpdateInstanceSnapshot

func (mr *MockInstanceServerMockRecorder) UpdateInstanceSnapshot(arg0, arg1, arg2, arg3 any) *gomock.Call

UpdateInstanceSnapshot indicates an expected call of UpdateInstanceSnapshot.

func (*MockInstanceServerMockRecorder) UpdateInstanceState

func (mr *MockInstanceServerMockRecorder) UpdateInstanceState(arg0, arg1, arg2 any) *gomock.Call

UpdateInstanceState indicates an expected call of UpdateInstanceState.

func (*MockInstanceServerMockRecorder) UpdateInstances

func (mr *MockInstanceServerMockRecorder) UpdateInstances(arg0, arg1 any) *gomock.Call

UpdateInstances indicates an expected call of UpdateInstances.

func (*MockInstanceServerMockRecorder) UpdateNetwork

func (mr *MockInstanceServerMockRecorder) UpdateNetwork(arg0, arg1, arg2 any) *gomock.Call

UpdateNetwork indicates an expected call of UpdateNetwork.

func (*MockInstanceServerMockRecorder) UpdateNetworkACL

func (mr *MockInstanceServerMockRecorder) UpdateNetworkACL(arg0, arg1, arg2 any) *gomock.Call

UpdateNetworkACL indicates an expected call of UpdateNetworkACL.

func (*MockInstanceServerMockRecorder) UpdateNetworkForward

func (mr *MockInstanceServerMockRecorder) UpdateNetworkForward(arg0, arg1, arg2, arg3 any) *gomock.Call

UpdateNetworkForward indicates an expected call of UpdateNetworkForward.

func (*MockInstanceServerMockRecorder) UpdateNetworkLoadBalancer

func (mr *MockInstanceServerMockRecorder) UpdateNetworkLoadBalancer(arg0, arg1, arg2, arg3 any) *gomock.Call

UpdateNetworkLoadBalancer indicates an expected call of UpdateNetworkLoadBalancer.

func (*MockInstanceServerMockRecorder) UpdateNetworkPeer

func (mr *MockInstanceServerMockRecorder) UpdateNetworkPeer(arg0, arg1, arg2, arg3 any) *gomock.Call

UpdateNetworkPeer indicates an expected call of UpdateNetworkPeer.

func (*MockInstanceServerMockRecorder) UpdateNetworkZone

func (mr *MockInstanceServerMockRecorder) UpdateNetworkZone(arg0, arg1, arg2 any) *gomock.Call

UpdateNetworkZone indicates an expected call of UpdateNetworkZone.

func (*MockInstanceServerMockRecorder) UpdateNetworkZoneRecord

func (mr *MockInstanceServerMockRecorder) UpdateNetworkZoneRecord(arg0, arg1, arg2, arg3 any) *gomock.Call

UpdateNetworkZoneRecord indicates an expected call of UpdateNetworkZoneRecord.

func (*MockInstanceServerMockRecorder) UpdateProfile

func (mr *MockInstanceServerMockRecorder) UpdateProfile(arg0, arg1, arg2 any) *gomock.Call

UpdateProfile indicates an expected call of UpdateProfile.

func (*MockInstanceServerMockRecorder) UpdateProject

func (mr *MockInstanceServerMockRecorder) UpdateProject(arg0, arg1, arg2 any) *gomock.Call

UpdateProject indicates an expected call of UpdateProject.

func (*MockInstanceServerMockRecorder) UpdateServer

func (mr *MockInstanceServerMockRecorder) UpdateServer(arg0, arg1 any) *gomock.Call

UpdateServer indicates an expected call of UpdateServer.

func (*MockInstanceServerMockRecorder) UpdateStoragePool

func (mr *MockInstanceServerMockRecorder) UpdateStoragePool(arg0, arg1, arg2 any) *gomock.Call

UpdateStoragePool indicates an expected call of UpdateStoragePool.

func (*MockInstanceServerMockRecorder) UpdateStoragePoolBucket

func (mr *MockInstanceServerMockRecorder) UpdateStoragePoolBucket(arg0, arg1, arg2, arg3 any) *gomock.Call

UpdateStoragePoolBucket indicates an expected call of UpdateStoragePoolBucket.

func (*MockInstanceServerMockRecorder) UpdateStoragePoolBucketKey

func (mr *MockInstanceServerMockRecorder) UpdateStoragePoolBucketKey(arg0, arg1, arg2, arg3, arg4 any) *gomock.Call

UpdateStoragePoolBucketKey indicates an expected call of UpdateStoragePoolBucketKey.

func (*MockInstanceServerMockRecorder) UpdateStoragePoolVolume

func (mr *MockInstanceServerMockRecorder) UpdateStoragePoolVolume(arg0, arg1, arg2, arg3, arg4 any) *gomock.Call

UpdateStoragePoolVolume indicates an expected call of UpdateStoragePoolVolume.

func (*MockInstanceServerMockRecorder) UpdateStoragePoolVolumeSnapshot

func (mr *MockInstanceServerMockRecorder) UpdateStoragePoolVolumeSnapshot(arg0, arg1, arg2, arg3, arg4, arg5 any) *gomock.Call

UpdateStoragePoolVolumeSnapshot indicates an expected call of UpdateStoragePoolVolumeSnapshot.

func (*MockInstanceServerMockRecorder) UpdateWarning

func (mr *MockInstanceServerMockRecorder) UpdateWarning(arg0, arg1, arg2 any) *gomock.Call

UpdateWarning indicates an expected call of UpdateWarning.

func (*MockInstanceServerMockRecorder) UseProject

func (mr *MockInstanceServerMockRecorder) UseProject(arg0 any) *gomock.Call

UseProject indicates an expected call of UseProject.

func (*MockInstanceServerMockRecorder) UseTarget

func (mr *MockInstanceServerMockRecorder) UseTarget(arg0 any) *gomock.Call

UseTarget indicates an expected call of UseTarget.

type MockOperation

type MockOperation struct {
	// contains filtered or unexported fields
}

MockOperation is a mock of Operation interface.

func NewMockOperation

func NewMockOperation(ctrl *gomock.Controller) *MockOperation

NewMockOperation creates a new mock instance.

func (*MockOperation) AddHandler

func (m *MockOperation) AddHandler(arg0 func(api.Operation)) (*lxd.EventTarget, error)

AddHandler mocks base method.

func (*MockOperation) Cancel

func (m *MockOperation) Cancel() error

Cancel mocks base method.

func (*MockOperation) EXPECT

EXPECT returns an object that allows the caller to indicate expected use.

func (*MockOperation) Get

func (m *MockOperation) Get() api.Operation

Get mocks base method.

func (*MockOperation) GetWebsocket

func (m *MockOperation) GetWebsocket(arg0 string) (*websocket.Conn, error)

GetWebsocket mocks base method.

func (*MockOperation) Refresh

func (m *MockOperation) Refresh() error

Refresh mocks base method.

func (*MockOperation) RemoveHandler

func (m *MockOperation) RemoveHandler(arg0 *lxd.EventTarget) error

RemoveHandler mocks base method.

func (*MockOperation) Wait

func (m *MockOperation) Wait() error

Wait mocks base method.

func (*MockOperation) WaitContext

func (m *MockOperation) WaitContext(arg0 context.Context) error

WaitContext mocks base method.

type MockOperationMockRecorder

type MockOperationMockRecorder struct {
	// contains filtered or unexported fields
}

MockOperationMockRecorder is the mock recorder for MockOperation.

func (*MockOperationMockRecorder) AddHandler

func (mr *MockOperationMockRecorder) AddHandler(arg0 any) *gomock.Call

AddHandler indicates an expected call of AddHandler.

func (*MockOperationMockRecorder) Cancel

func (mr *MockOperationMockRecorder) Cancel() *gomock.Call

Cancel indicates an expected call of Cancel.

func (*MockOperationMockRecorder) Get

Get indicates an expected call of Get.

func (*MockOperationMockRecorder) GetWebsocket

func (mr *MockOperationMockRecorder) GetWebsocket(arg0 any) *gomock.Call

GetWebsocket indicates an expected call of GetWebsocket.

func (*MockOperationMockRecorder) Refresh

func (mr *MockOperationMockRecorder) Refresh() *gomock.Call

Refresh indicates an expected call of Refresh.

func (*MockOperationMockRecorder) RemoveHandler

func (mr *MockOperationMockRecorder) RemoveHandler(arg0 any) *gomock.Call

RemoveHandler indicates an expected call of RemoveHandler.

func (*MockOperationMockRecorder) Wait

Wait indicates an expected call of Wait.

func (*MockOperationMockRecorder) WaitContext

func (mr *MockOperationMockRecorder) WaitContext(arg0 any) *gomock.Call

WaitContext indicates an expected call of WaitContext.

type MockRemoteOperation

type MockRemoteOperation struct {
	// contains filtered or unexported fields
}

MockRemoteOperation is a mock of RemoteOperation interface.

func NewMockRemoteOperation

func NewMockRemoteOperation(ctrl *gomock.Controller) *MockRemoteOperation

NewMockRemoteOperation creates a new mock instance.

func (*MockRemoteOperation) AddHandler

func (m *MockRemoteOperation) AddHandler(arg0 func(api.Operation)) (*lxd.EventTarget, error)

AddHandler mocks base method.

func (*MockRemoteOperation) CancelTarget

func (m *MockRemoteOperation) CancelTarget() error

CancelTarget mocks base method.

func (*MockRemoteOperation) EXPECT

EXPECT returns an object that allows the caller to indicate expected use.

func (*MockRemoteOperation) GetTarget

func (m *MockRemoteOperation) GetTarget() (*api.Operation, error)

GetTarget mocks base method.

func (*MockRemoteOperation) Wait

func (m *MockRemoteOperation) Wait() error

Wait mocks base method.

type MockRemoteOperationMockRecorder

type MockRemoteOperationMockRecorder struct {
	// contains filtered or unexported fields
}

MockRemoteOperationMockRecorder is the mock recorder for MockRemoteOperation.

func (*MockRemoteOperationMockRecorder) AddHandler

func (mr *MockRemoteOperationMockRecorder) AddHandler(arg0 any) *gomock.Call

AddHandler indicates an expected call of AddHandler.

func (*MockRemoteOperationMockRecorder) CancelTarget

func (mr *MockRemoteOperationMockRecorder) CancelTarget() *gomock.Call

CancelTarget indicates an expected call of CancelTarget.

func (*MockRemoteOperationMockRecorder) GetTarget

func (mr *MockRemoteOperationMockRecorder) GetTarget() *gomock.Call

GetTarget indicates an expected call of GetTarget.

func (*MockRemoteOperationMockRecorder) Wait

Wait indicates an expected call of Wait.

type MockServer

type MockServer struct {
	// contains filtered or unexported fields
}

MockServer is a mock of Server interface.

func NewMockServer

func NewMockServer(ctrl *gomock.Controller) *MockServer

NewMockServer creates a new mock instance.

func (*MockServer) Disconnect

func (m *MockServer) Disconnect()

Disconnect mocks base method.

func (*MockServer) DoHTTP

func (m *MockServer) DoHTTP(arg0 *http.Request) (*http.Response, error)

DoHTTP mocks base method.

func (*MockServer) EXPECT

func (m *MockServer) EXPECT() *MockServerMockRecorder

EXPECT returns an object that allows the caller to indicate expected use.

func (*MockServer) GetConnectionInfo

func (m *MockServer) GetConnectionInfo() (*lxd.ConnectionInfo, error)

GetConnectionInfo mocks base method.

func (*MockServer) GetHTTPClient

func (m *MockServer) GetHTTPClient() (*http.Client, error)

GetHTTPClient mocks base method.

type MockServerMockRecorder

type MockServerMockRecorder struct {
	// contains filtered or unexported fields
}

MockServerMockRecorder is the mock recorder for MockServer.

func (*MockServerMockRecorder) Disconnect

func (mr *MockServerMockRecorder) Disconnect() *gomock.Call

Disconnect indicates an expected call of Disconnect.

func (*MockServerMockRecorder) DoHTTP

func (mr *MockServerMockRecorder) DoHTTP(arg0 any) *gomock.Call

DoHTTP indicates an expected call of DoHTTP.

func (*MockServerMockRecorder) GetConnectionInfo

func (mr *MockServerMockRecorder) GetConnectionInfo() *gomock.Call

GetConnectionInfo indicates an expected call of GetConnectionInfo.

func (*MockServerMockRecorder) GetHTTPClient

func (mr *MockServerMockRecorder) GetHTTPClient() *gomock.Call

GetHTTPClient indicates an expected call of GetHTTPClient.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL