testing

package
v0.0.0-...-0a271de Latest Latest
Warning

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

Go to latest
Published: Feb 27, 2025 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 -typed -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(ctx context.Context, 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 MockImageServerDisconnectCall

type MockImageServerDisconnectCall struct {
	*gomock.Call
}

MockImageServerDisconnectCall wrap *gomock.Call

func (*MockImageServerDisconnectCall) Do

Do rewrite *gomock.Call.Do

func (*MockImageServerDisconnectCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockImageServerDisconnectCall) Return

Return rewrite *gomock.Call.Return

type MockImageServerDoHTTPCall

type MockImageServerDoHTTPCall struct {
	*gomock.Call
}

MockImageServerDoHTTPCall wrap *gomock.Call

func (*MockImageServerDoHTTPCall) Do

Do rewrite *gomock.Call.Do

func (*MockImageServerDoHTTPCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockImageServerDoHTTPCall) Return

Return rewrite *gomock.Call.Return

type MockImageServerExportImageCall

type MockImageServerExportImageCall struct {
	*gomock.Call
}

MockImageServerExportImageCall wrap *gomock.Call

func (*MockImageServerExportImageCall) Do

Do rewrite *gomock.Call.Do

func (*MockImageServerExportImageCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockImageServerExportImageCall) Return

Return rewrite *gomock.Call.Return

type MockImageServerGetConnectionInfoCall

type MockImageServerGetConnectionInfoCall struct {
	*gomock.Call
}

MockImageServerGetConnectionInfoCall wrap *gomock.Call

func (*MockImageServerGetConnectionInfoCall) Do

Do rewrite *gomock.Call.Do

func (*MockImageServerGetConnectionInfoCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockImageServerGetConnectionInfoCall) Return

Return rewrite *gomock.Call.Return

type MockImageServerGetHTTPClientCall

type MockImageServerGetHTTPClientCall struct {
	*gomock.Call
}

MockImageServerGetHTTPClientCall wrap *gomock.Call

func (*MockImageServerGetHTTPClientCall) Do

Do rewrite *gomock.Call.Do

func (*MockImageServerGetHTTPClientCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockImageServerGetHTTPClientCall) Return

Return rewrite *gomock.Call.Return

type MockImageServerGetImageAliasArchitecturesCall

type MockImageServerGetImageAliasArchitecturesCall struct {
	*gomock.Call
}

MockImageServerGetImageAliasArchitecturesCall wrap *gomock.Call

func (*MockImageServerGetImageAliasArchitecturesCall) Do

Do rewrite *gomock.Call.Do

func (*MockImageServerGetImageAliasArchitecturesCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockImageServerGetImageAliasArchitecturesCall) Return

Return rewrite *gomock.Call.Return

type MockImageServerGetImageAliasCall

type MockImageServerGetImageAliasCall struct {
	*gomock.Call
}

MockImageServerGetImageAliasCall wrap *gomock.Call

func (*MockImageServerGetImageAliasCall) Do

Do rewrite *gomock.Call.Do

func (*MockImageServerGetImageAliasCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockImageServerGetImageAliasCall) Return

Return rewrite *gomock.Call.Return

type MockImageServerGetImageAliasNamesCall

type MockImageServerGetImageAliasNamesCall struct {
	*gomock.Call
}

MockImageServerGetImageAliasNamesCall wrap *gomock.Call

func (*MockImageServerGetImageAliasNamesCall) Do

Do rewrite *gomock.Call.Do

func (*MockImageServerGetImageAliasNamesCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockImageServerGetImageAliasNamesCall) Return

Return rewrite *gomock.Call.Return

type MockImageServerGetImageAliasTypeCall

type MockImageServerGetImageAliasTypeCall struct {
	*gomock.Call
}

MockImageServerGetImageAliasTypeCall wrap *gomock.Call

func (*MockImageServerGetImageAliasTypeCall) Do

Do rewrite *gomock.Call.Do

func (*MockImageServerGetImageAliasTypeCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockImageServerGetImageAliasTypeCall) Return

Return rewrite *gomock.Call.Return

type MockImageServerGetImageAliasesCall

type MockImageServerGetImageAliasesCall struct {
	*gomock.Call
}

MockImageServerGetImageAliasesCall wrap *gomock.Call

func (*MockImageServerGetImageAliasesCall) Do

Do rewrite *gomock.Call.Do

func (*MockImageServerGetImageAliasesCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockImageServerGetImageAliasesCall) Return

Return rewrite *gomock.Call.Return

type MockImageServerGetImageCall

type MockImageServerGetImageCall struct {
	*gomock.Call
}

MockImageServerGetImageCall wrap *gomock.Call

func (*MockImageServerGetImageCall) Do

Do rewrite *gomock.Call.Do

func (*MockImageServerGetImageCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockImageServerGetImageCall) Return

Return rewrite *gomock.Call.Return

type MockImageServerGetImageFileCall

type MockImageServerGetImageFileCall struct {
	*gomock.Call
}

MockImageServerGetImageFileCall wrap *gomock.Call

func (*MockImageServerGetImageFileCall) Do

Do rewrite *gomock.Call.Do

func (*MockImageServerGetImageFileCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockImageServerGetImageFileCall) Return

Return rewrite *gomock.Call.Return

type MockImageServerGetImageFingerprintsCall

type MockImageServerGetImageFingerprintsCall struct {
	*gomock.Call
}

MockImageServerGetImageFingerprintsCall wrap *gomock.Call

func (*MockImageServerGetImageFingerprintsCall) Do

Do rewrite *gomock.Call.Do

func (*MockImageServerGetImageFingerprintsCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockImageServerGetImageFingerprintsCall) Return

Return rewrite *gomock.Call.Return

type MockImageServerGetImageSecretCall

type MockImageServerGetImageSecretCall struct {
	*gomock.Call
}

MockImageServerGetImageSecretCall wrap *gomock.Call

func (*MockImageServerGetImageSecretCall) Do

Do rewrite *gomock.Call.Do

func (*MockImageServerGetImageSecretCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockImageServerGetImageSecretCall) Return

Return rewrite *gomock.Call.Return

type MockImageServerGetImagesCall

type MockImageServerGetImagesCall struct {
	*gomock.Call
}

MockImageServerGetImagesCall wrap *gomock.Call

func (*MockImageServerGetImagesCall) Do

Do rewrite *gomock.Call.Do

func (*MockImageServerGetImagesCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockImageServerGetImagesCall) Return

Return rewrite *gomock.Call.Return

type MockImageServerGetImagesWithFilterCall

type MockImageServerGetImagesWithFilterCall struct {
	*gomock.Call
}

MockImageServerGetImagesWithFilterCall wrap *gomock.Call

func (*MockImageServerGetImagesWithFilterCall) Do

Do rewrite *gomock.Call.Do

func (*MockImageServerGetImagesWithFilterCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockImageServerGetImagesWithFilterCall) Return

Return rewrite *gomock.Call.Return

type MockImageServerGetPrivateImageCall

type MockImageServerGetPrivateImageCall struct {
	*gomock.Call
}

MockImageServerGetPrivateImageCall wrap *gomock.Call

func (*MockImageServerGetPrivateImageCall) Do

Do rewrite *gomock.Call.Do

func (*MockImageServerGetPrivateImageCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockImageServerGetPrivateImageCall) Return

Return rewrite *gomock.Call.Return

type MockImageServerGetPrivateImageFileCall

type MockImageServerGetPrivateImageFileCall struct {
	*gomock.Call
}

MockImageServerGetPrivateImageFileCall wrap *gomock.Call

func (*MockImageServerGetPrivateImageFileCall) Do

Do rewrite *gomock.Call.Do

func (*MockImageServerGetPrivateImageFileCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockImageServerGetPrivateImageFileCall) Return

Return rewrite *gomock.Call.Return

type MockImageServerMockRecorder

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

MockImageServerMockRecorder is the mock recorder for MockImageServer.

func (*MockImageServerMockRecorder) Disconnect

Disconnect indicates an expected call of Disconnect.

func (*MockImageServerMockRecorder) DoHTTP

DoHTTP indicates an expected call of DoHTTP.

func (*MockImageServerMockRecorder) ExportImage

func (mr *MockImageServerMockRecorder) ExportImage(arg0, arg1 any) *MockImageServerExportImageCall

ExportImage indicates an expected call of ExportImage.

func (*MockImageServerMockRecorder) GetConnectionInfo

GetConnectionInfo indicates an expected call of GetConnectionInfo.

func (*MockImageServerMockRecorder) GetHTTPClient

GetHTTPClient indicates an expected call of GetHTTPClient.

func (*MockImageServerMockRecorder) GetImage

GetImage indicates an expected call of GetImage.

func (*MockImageServerMockRecorder) GetImageAlias

GetImageAlias indicates an expected call of GetImageAlias.

func (*MockImageServerMockRecorder) GetImageAliasArchitectures

func (mr *MockImageServerMockRecorder) GetImageAliasArchitectures(arg0, arg1 any) *MockImageServerGetImageAliasArchitecturesCall

GetImageAliasArchitectures indicates an expected call of GetImageAliasArchitectures.

func (*MockImageServerMockRecorder) GetImageAliasNames

GetImageAliasNames indicates an expected call of GetImageAliasNames.

func (*MockImageServerMockRecorder) GetImageAliasType

func (mr *MockImageServerMockRecorder) GetImageAliasType(arg0, arg1 any) *MockImageServerGetImageAliasTypeCall

GetImageAliasType indicates an expected call of GetImageAliasType.

func (*MockImageServerMockRecorder) GetImageAliases

GetImageAliases indicates an expected call of GetImageAliases.

func (*MockImageServerMockRecorder) GetImageFile

func (mr *MockImageServerMockRecorder) GetImageFile(arg0, arg1 any) *MockImageServerGetImageFileCall

GetImageFile indicates an expected call of GetImageFile.

func (*MockImageServerMockRecorder) GetImageFingerprints

GetImageFingerprints indicates an expected call of GetImageFingerprints.

func (*MockImageServerMockRecorder) GetImageSecret

GetImageSecret indicates an expected call of GetImageSecret.

func (*MockImageServerMockRecorder) GetImages

GetImages indicates an expected call of GetImages.

func (*MockImageServerMockRecorder) GetImagesWithFilter

GetImagesWithFilter indicates an expected call of GetImagesWithFilter.

func (*MockImageServerMockRecorder) GetPrivateImage

func (mr *MockImageServerMockRecorder) GetPrivateImage(arg0, arg1 any) *MockImageServerGetPrivateImageCall

GetPrivateImage indicates an expected call of GetPrivateImage.

func (*MockImageServerMockRecorder) GetPrivateImageFile

func (mr *MockImageServerMockRecorder) GetPrivateImageFile(arg0, arg1, arg2 any) *MockImageServerGetPrivateImageFileCall

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) CreateAuthGroup

func (m *MockInstanceServer) CreateAuthGroup(arg0 api.AuthGroupsPost) error

CreateAuthGroup 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) CreateIdentityProviderGroup

func (m *MockInstanceServer) CreateIdentityProviderGroup(arg0 api.IdentityProviderGroup) error

CreateIdentityProviderGroup 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) DeleteAuthGroup

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

DeleteAuthGroup 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) DeleteIdentityProviderGroup

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

DeleteIdentityProviderGroup 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) GetAuthGroup

func (m *MockInstanceServer) GetAuthGroup(arg0 string) (*api.AuthGroup, string, error)

GetAuthGroup mocks base method.

func (*MockInstanceServer) GetAuthGroupNames

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

GetAuthGroupNames mocks base method.

func (*MockInstanceServer) GetAuthGroups

func (m *MockInstanceServer) GetAuthGroups() ([]api.AuthGroup, error)

GetAuthGroups 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) GetCurrentIdentityInfo

func (m *MockInstanceServer) GetCurrentIdentityInfo() (*api.IdentityInfo, string, error)

GetCurrentIdentityInfo 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) GetIdentities

func (m *MockInstanceServer) GetIdentities() ([]api.Identity, error)

GetIdentities mocks base method.

func (*MockInstanceServer) GetIdentitiesByAuthenticationMethod

func (m *MockInstanceServer) GetIdentitiesByAuthenticationMethod(arg0 string) ([]api.Identity, error)

GetIdentitiesByAuthenticationMethod mocks base method.

func (*MockInstanceServer) GetIdentity

func (m *MockInstanceServer) GetIdentity(arg0, arg1 string) (*api.Identity, string, error)

GetIdentity mocks base method.

func (*MockInstanceServer) GetIdentityAuthenticationMethodsIdentifiers

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

GetIdentityAuthenticationMethodsIdentifiers mocks base method.

func (*MockInstanceServer) GetIdentityIdentifiersByAuthenticationMethod

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

GetIdentityIdentifiersByAuthenticationMethod mocks base method.

func (*MockInstanceServer) GetIdentityProviderGroup

func (m *MockInstanceServer) GetIdentityProviderGroup(arg0 string) (*api.IdentityProviderGroup, string, error)

GetIdentityProviderGroup mocks base method.

func (*MockInstanceServer) GetIdentityProviderGroupNames

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

GetIdentityProviderGroupNames mocks base method.

func (*MockInstanceServer) GetIdentityProviderGroups

func (m *MockInstanceServer) GetIdentityProviderGroups() ([]api.IdentityProviderGroup, error)

GetIdentityProviderGroups 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) GetInstanceUEFIVars

func (m *MockInstanceServer) GetInstanceUEFIVars(arg0 string) (*api.InstanceUEFIVars, string, error)

GetInstanceUEFIVars 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) GetPermissions

func (m *MockInstanceServer) GetPermissions(arg0 lxd.GetPermissionsArgs) ([]api.Permission, error)

GetPermissions mocks base method.

func (*MockInstanceServer) GetPermissionsInfo

func (m *MockInstanceServer) GetPermissionsInfo(arg0 lxd.GetPermissionsArgs) ([]api.PermissionInfo, error)

GetPermissionsInfo 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) GetVolumesWithFilter

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

GetVolumesWithFilter mocks base method.

func (*MockInstanceServer) GetVolumesWithFilterAllProjects

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

GetVolumesWithFilterAllProjects 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) RenameAuthGroup

func (m *MockInstanceServer) RenameAuthGroup(arg0 string, arg1 api.AuthGroupPost) error

RenameAuthGroup 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) RenameIdentityProviderGroup

func (m *MockInstanceServer) RenameIdentityProviderGroup(arg0 string, arg1 api.IdentityProviderGroupPost) error

RenameIdentityProviderGroup 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) UpdateAuthGroup

func (m *MockInstanceServer) UpdateAuthGroup(arg0 string, arg1 api.AuthGroupPut, arg2 string) error

UpdateAuthGroup 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) UpdateIdentity

func (m *MockInstanceServer) UpdateIdentity(arg0, arg1 string, arg2 api.IdentityPut, arg3 string) error

UpdateIdentity mocks base method.

func (*MockInstanceServer) UpdateIdentityProviderGroup

func (m *MockInstanceServer) UpdateIdentityProviderGroup(arg0 string, arg1 api.IdentityProviderGroupPut, arg2 string) error

UpdateIdentityProviderGroup 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) UpdateInstanceUEFIVars

func (m *MockInstanceServer) UpdateInstanceUEFIVars(arg0 string, arg1 api.InstanceUEFIVars, arg2 string) error

UpdateInstanceUEFIVars 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 MockInstanceServerConsoleContainerCall

type MockInstanceServerConsoleContainerCall struct {
	*gomock.Call
}

MockInstanceServerConsoleContainerCall wrap *gomock.Call

func (*MockInstanceServerConsoleContainerCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerConsoleContainerCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerConsoleContainerCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerConsoleInstanceCall

type MockInstanceServerConsoleInstanceCall struct {
	*gomock.Call
}

MockInstanceServerConsoleInstanceCall wrap *gomock.Call

func (*MockInstanceServerConsoleInstanceCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerConsoleInstanceCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerConsoleInstanceCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerConsoleInstanceDynamicCall

type MockInstanceServerConsoleInstanceDynamicCall struct {
	*gomock.Call
}

MockInstanceServerConsoleInstanceDynamicCall wrap *gomock.Call

func (*MockInstanceServerConsoleInstanceDynamicCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerConsoleInstanceDynamicCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerConsoleInstanceDynamicCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerCopyContainerCall

type MockInstanceServerCopyContainerCall struct {
	*gomock.Call
}

MockInstanceServerCopyContainerCall wrap *gomock.Call

func (*MockInstanceServerCopyContainerCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerCopyContainerCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerCopyContainerCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerCopyContainerSnapshotCall

type MockInstanceServerCopyContainerSnapshotCall struct {
	*gomock.Call
}

MockInstanceServerCopyContainerSnapshotCall wrap *gomock.Call

func (*MockInstanceServerCopyContainerSnapshotCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerCopyContainerSnapshotCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerCopyContainerSnapshotCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerCopyImageCall

type MockInstanceServerCopyImageCall struct {
	*gomock.Call
}

MockInstanceServerCopyImageCall wrap *gomock.Call

func (*MockInstanceServerCopyImageCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerCopyImageCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerCopyImageCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerCopyInstanceCall

type MockInstanceServerCopyInstanceCall struct {
	*gomock.Call
}

MockInstanceServerCopyInstanceCall wrap *gomock.Call

func (*MockInstanceServerCopyInstanceCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerCopyInstanceCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerCopyInstanceCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerCopyInstanceSnapshotCall

type MockInstanceServerCopyInstanceSnapshotCall struct {
	*gomock.Call
}

MockInstanceServerCopyInstanceSnapshotCall wrap *gomock.Call

func (*MockInstanceServerCopyInstanceSnapshotCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerCopyInstanceSnapshotCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerCopyInstanceSnapshotCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerCopyStoragePoolVolumeCall

type MockInstanceServerCopyStoragePoolVolumeCall struct {
	*gomock.Call
}

MockInstanceServerCopyStoragePoolVolumeCall wrap *gomock.Call

func (*MockInstanceServerCopyStoragePoolVolumeCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerCopyStoragePoolVolumeCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerCopyStoragePoolVolumeCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerCreateAuthGroupCall

type MockInstanceServerCreateAuthGroupCall struct {
	*gomock.Call
}

MockInstanceServerCreateAuthGroupCall wrap *gomock.Call

func (*MockInstanceServerCreateAuthGroupCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerCreateAuthGroupCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerCreateAuthGroupCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerCreateCertificateCall

type MockInstanceServerCreateCertificateCall struct {
	*gomock.Call
}

MockInstanceServerCreateCertificateCall wrap *gomock.Call

func (*MockInstanceServerCreateCertificateCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerCreateCertificateCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerCreateCertificateCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerCreateCertificateTokenCall

type MockInstanceServerCreateCertificateTokenCall struct {
	*gomock.Call
}

MockInstanceServerCreateCertificateTokenCall wrap *gomock.Call

func (*MockInstanceServerCreateCertificateTokenCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerCreateCertificateTokenCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerCreateCertificateTokenCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerCreateClusterGroupCall

type MockInstanceServerCreateClusterGroupCall struct {
	*gomock.Call
}

MockInstanceServerCreateClusterGroupCall wrap *gomock.Call

func (*MockInstanceServerCreateClusterGroupCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerCreateClusterGroupCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerCreateClusterGroupCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerCreateClusterMemberCall

type MockInstanceServerCreateClusterMemberCall struct {
	*gomock.Call
}

MockInstanceServerCreateClusterMemberCall wrap *gomock.Call

func (*MockInstanceServerCreateClusterMemberCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerCreateClusterMemberCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerCreateClusterMemberCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerCreateContainerBackupCall

type MockInstanceServerCreateContainerBackupCall struct {
	*gomock.Call
}

MockInstanceServerCreateContainerBackupCall wrap *gomock.Call

func (*MockInstanceServerCreateContainerBackupCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerCreateContainerBackupCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerCreateContainerBackupCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerCreateContainerCall

type MockInstanceServerCreateContainerCall struct {
	*gomock.Call
}

MockInstanceServerCreateContainerCall wrap *gomock.Call

func (*MockInstanceServerCreateContainerCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerCreateContainerCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerCreateContainerCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerCreateContainerFileCall

type MockInstanceServerCreateContainerFileCall struct {
	*gomock.Call
}

MockInstanceServerCreateContainerFileCall wrap *gomock.Call

func (*MockInstanceServerCreateContainerFileCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerCreateContainerFileCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerCreateContainerFileCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerCreateContainerFromBackupCall

type MockInstanceServerCreateContainerFromBackupCall struct {
	*gomock.Call
}

MockInstanceServerCreateContainerFromBackupCall wrap *gomock.Call

func (*MockInstanceServerCreateContainerFromBackupCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerCreateContainerFromBackupCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerCreateContainerFromBackupCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerCreateContainerFromImageCall

type MockInstanceServerCreateContainerFromImageCall struct {
	*gomock.Call
}

MockInstanceServerCreateContainerFromImageCall wrap *gomock.Call

func (*MockInstanceServerCreateContainerFromImageCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerCreateContainerFromImageCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerCreateContainerFromImageCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerCreateContainerSnapshotCall

type MockInstanceServerCreateContainerSnapshotCall struct {
	*gomock.Call
}

MockInstanceServerCreateContainerSnapshotCall wrap *gomock.Call

func (*MockInstanceServerCreateContainerSnapshotCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerCreateContainerSnapshotCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerCreateContainerSnapshotCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerCreateContainerTemplateFileCall

type MockInstanceServerCreateContainerTemplateFileCall struct {
	*gomock.Call
}

MockInstanceServerCreateContainerTemplateFileCall wrap *gomock.Call

func (*MockInstanceServerCreateContainerTemplateFileCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerCreateContainerTemplateFileCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerCreateContainerTemplateFileCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerCreateIdentityProviderGroupCall

type MockInstanceServerCreateIdentityProviderGroupCall struct {
	*gomock.Call
}

MockInstanceServerCreateIdentityProviderGroupCall wrap *gomock.Call

func (*MockInstanceServerCreateIdentityProviderGroupCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerCreateIdentityProviderGroupCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerCreateIdentityProviderGroupCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerCreateImageAliasCall

type MockInstanceServerCreateImageAliasCall struct {
	*gomock.Call
}

MockInstanceServerCreateImageAliasCall wrap *gomock.Call

func (*MockInstanceServerCreateImageAliasCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerCreateImageAliasCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerCreateImageAliasCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerCreateImageCall

type MockInstanceServerCreateImageCall struct {
	*gomock.Call
}

MockInstanceServerCreateImageCall wrap *gomock.Call

func (*MockInstanceServerCreateImageCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerCreateImageCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerCreateImageCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerCreateImageSecretCall

type MockInstanceServerCreateImageSecretCall struct {
	*gomock.Call
}

MockInstanceServerCreateImageSecretCall wrap *gomock.Call

func (*MockInstanceServerCreateImageSecretCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerCreateImageSecretCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerCreateImageSecretCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerCreateInstanceBackupCall

type MockInstanceServerCreateInstanceBackupCall struct {
	*gomock.Call
}

MockInstanceServerCreateInstanceBackupCall wrap *gomock.Call

func (*MockInstanceServerCreateInstanceBackupCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerCreateInstanceBackupCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerCreateInstanceBackupCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerCreateInstanceCall

type MockInstanceServerCreateInstanceCall struct {
	*gomock.Call
}

MockInstanceServerCreateInstanceCall wrap *gomock.Call

func (*MockInstanceServerCreateInstanceCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerCreateInstanceCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerCreateInstanceCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerCreateInstanceFileCall

type MockInstanceServerCreateInstanceFileCall struct {
	*gomock.Call
}

MockInstanceServerCreateInstanceFileCall wrap *gomock.Call

func (*MockInstanceServerCreateInstanceFileCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerCreateInstanceFileCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerCreateInstanceFileCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerCreateInstanceFromBackupCall

type MockInstanceServerCreateInstanceFromBackupCall struct {
	*gomock.Call
}

MockInstanceServerCreateInstanceFromBackupCall wrap *gomock.Call

func (*MockInstanceServerCreateInstanceFromBackupCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerCreateInstanceFromBackupCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerCreateInstanceFromBackupCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerCreateInstanceFromImageCall

type MockInstanceServerCreateInstanceFromImageCall struct {
	*gomock.Call
}

MockInstanceServerCreateInstanceFromImageCall wrap *gomock.Call

func (*MockInstanceServerCreateInstanceFromImageCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerCreateInstanceFromImageCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerCreateInstanceFromImageCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerCreateInstanceSnapshotCall

type MockInstanceServerCreateInstanceSnapshotCall struct {
	*gomock.Call
}

MockInstanceServerCreateInstanceSnapshotCall wrap *gomock.Call

func (*MockInstanceServerCreateInstanceSnapshotCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerCreateInstanceSnapshotCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerCreateInstanceSnapshotCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerCreateInstanceTemplateFileCall

type MockInstanceServerCreateInstanceTemplateFileCall struct {
	*gomock.Call
}

MockInstanceServerCreateInstanceTemplateFileCall wrap *gomock.Call

func (*MockInstanceServerCreateInstanceTemplateFileCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerCreateInstanceTemplateFileCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerCreateInstanceTemplateFileCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerCreateNetworkACLCall

type MockInstanceServerCreateNetworkACLCall struct {
	*gomock.Call
}

MockInstanceServerCreateNetworkACLCall wrap *gomock.Call

func (*MockInstanceServerCreateNetworkACLCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerCreateNetworkACLCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerCreateNetworkACLCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerCreateNetworkCall

type MockInstanceServerCreateNetworkCall struct {
	*gomock.Call
}

MockInstanceServerCreateNetworkCall wrap *gomock.Call

func (*MockInstanceServerCreateNetworkCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerCreateNetworkCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerCreateNetworkCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerCreateNetworkForwardCall

type MockInstanceServerCreateNetworkForwardCall struct {
	*gomock.Call
}

MockInstanceServerCreateNetworkForwardCall wrap *gomock.Call

func (*MockInstanceServerCreateNetworkForwardCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerCreateNetworkForwardCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerCreateNetworkForwardCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerCreateNetworkLoadBalancerCall

type MockInstanceServerCreateNetworkLoadBalancerCall struct {
	*gomock.Call
}

MockInstanceServerCreateNetworkLoadBalancerCall wrap *gomock.Call

func (*MockInstanceServerCreateNetworkLoadBalancerCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerCreateNetworkLoadBalancerCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerCreateNetworkLoadBalancerCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerCreateNetworkPeerCall

type MockInstanceServerCreateNetworkPeerCall struct {
	*gomock.Call
}

MockInstanceServerCreateNetworkPeerCall wrap *gomock.Call

func (*MockInstanceServerCreateNetworkPeerCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerCreateNetworkPeerCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerCreateNetworkPeerCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerCreateNetworkZoneCall

type MockInstanceServerCreateNetworkZoneCall struct {
	*gomock.Call
}

MockInstanceServerCreateNetworkZoneCall wrap *gomock.Call

func (*MockInstanceServerCreateNetworkZoneCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerCreateNetworkZoneCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerCreateNetworkZoneCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerCreateNetworkZoneRecordCall

type MockInstanceServerCreateNetworkZoneRecordCall struct {
	*gomock.Call
}

MockInstanceServerCreateNetworkZoneRecordCall wrap *gomock.Call

func (*MockInstanceServerCreateNetworkZoneRecordCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerCreateNetworkZoneRecordCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerCreateNetworkZoneRecordCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerCreateProfileCall

type MockInstanceServerCreateProfileCall struct {
	*gomock.Call
}

MockInstanceServerCreateProfileCall wrap *gomock.Call

func (*MockInstanceServerCreateProfileCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerCreateProfileCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerCreateProfileCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerCreateProjectCall

type MockInstanceServerCreateProjectCall struct {
	*gomock.Call
}

MockInstanceServerCreateProjectCall wrap *gomock.Call

func (*MockInstanceServerCreateProjectCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerCreateProjectCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerCreateProjectCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerCreateStoragePoolBucketCall

type MockInstanceServerCreateStoragePoolBucketCall struct {
	*gomock.Call
}

MockInstanceServerCreateStoragePoolBucketCall wrap *gomock.Call

func (*MockInstanceServerCreateStoragePoolBucketCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerCreateStoragePoolBucketCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerCreateStoragePoolBucketCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerCreateStoragePoolBucketKeyCall

type MockInstanceServerCreateStoragePoolBucketKeyCall struct {
	*gomock.Call
}

MockInstanceServerCreateStoragePoolBucketKeyCall wrap *gomock.Call

func (*MockInstanceServerCreateStoragePoolBucketKeyCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerCreateStoragePoolBucketKeyCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerCreateStoragePoolBucketKeyCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerCreateStoragePoolCall

type MockInstanceServerCreateStoragePoolCall struct {
	*gomock.Call
}

MockInstanceServerCreateStoragePoolCall wrap *gomock.Call

func (*MockInstanceServerCreateStoragePoolCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerCreateStoragePoolCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerCreateStoragePoolCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerCreateStoragePoolVolumeBackupCall

type MockInstanceServerCreateStoragePoolVolumeBackupCall struct {
	*gomock.Call
}

MockInstanceServerCreateStoragePoolVolumeBackupCall wrap *gomock.Call

func (*MockInstanceServerCreateStoragePoolVolumeBackupCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerCreateStoragePoolVolumeBackupCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerCreateStoragePoolVolumeBackupCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerCreateStoragePoolVolumeCall

type MockInstanceServerCreateStoragePoolVolumeCall struct {
	*gomock.Call
}

MockInstanceServerCreateStoragePoolVolumeCall wrap *gomock.Call

func (*MockInstanceServerCreateStoragePoolVolumeCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerCreateStoragePoolVolumeCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerCreateStoragePoolVolumeCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerCreateStoragePoolVolumeFromBackupCall

type MockInstanceServerCreateStoragePoolVolumeFromBackupCall struct {
	*gomock.Call
}

MockInstanceServerCreateStoragePoolVolumeFromBackupCall wrap *gomock.Call

func (*MockInstanceServerCreateStoragePoolVolumeFromBackupCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerCreateStoragePoolVolumeFromBackupCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerCreateStoragePoolVolumeFromBackupCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerCreateStoragePoolVolumeFromISOCall

type MockInstanceServerCreateStoragePoolVolumeFromISOCall struct {
	*gomock.Call
}

MockInstanceServerCreateStoragePoolVolumeFromISOCall wrap *gomock.Call

func (*MockInstanceServerCreateStoragePoolVolumeFromISOCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerCreateStoragePoolVolumeFromISOCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerCreateStoragePoolVolumeFromISOCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerCreateStoragePoolVolumeSnapshotCall

type MockInstanceServerCreateStoragePoolVolumeSnapshotCall struct {
	*gomock.Call
}

MockInstanceServerCreateStoragePoolVolumeSnapshotCall wrap *gomock.Call

func (*MockInstanceServerCreateStoragePoolVolumeSnapshotCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerCreateStoragePoolVolumeSnapshotCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerCreateStoragePoolVolumeSnapshotCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerDeleteAuthGroupCall

type MockInstanceServerDeleteAuthGroupCall struct {
	*gomock.Call
}

MockInstanceServerDeleteAuthGroupCall wrap *gomock.Call

func (*MockInstanceServerDeleteAuthGroupCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerDeleteAuthGroupCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerDeleteAuthGroupCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerDeleteCertificateCall

type MockInstanceServerDeleteCertificateCall struct {
	*gomock.Call
}

MockInstanceServerDeleteCertificateCall wrap *gomock.Call

func (*MockInstanceServerDeleteCertificateCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerDeleteCertificateCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerDeleteCertificateCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerDeleteClusterGroupCall

type MockInstanceServerDeleteClusterGroupCall struct {
	*gomock.Call
}

MockInstanceServerDeleteClusterGroupCall wrap *gomock.Call

func (*MockInstanceServerDeleteClusterGroupCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerDeleteClusterGroupCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerDeleteClusterGroupCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerDeleteClusterMemberCall

type MockInstanceServerDeleteClusterMemberCall struct {
	*gomock.Call
}

MockInstanceServerDeleteClusterMemberCall wrap *gomock.Call

func (*MockInstanceServerDeleteClusterMemberCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerDeleteClusterMemberCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerDeleteClusterMemberCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerDeleteContainerBackupCall

type MockInstanceServerDeleteContainerBackupCall struct {
	*gomock.Call
}

MockInstanceServerDeleteContainerBackupCall wrap *gomock.Call

func (*MockInstanceServerDeleteContainerBackupCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerDeleteContainerBackupCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerDeleteContainerBackupCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerDeleteContainerCall

type MockInstanceServerDeleteContainerCall struct {
	*gomock.Call
}

MockInstanceServerDeleteContainerCall wrap *gomock.Call

func (*MockInstanceServerDeleteContainerCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerDeleteContainerCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerDeleteContainerCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerDeleteContainerConsoleLogCall

type MockInstanceServerDeleteContainerConsoleLogCall struct {
	*gomock.Call
}

MockInstanceServerDeleteContainerConsoleLogCall wrap *gomock.Call

func (*MockInstanceServerDeleteContainerConsoleLogCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerDeleteContainerConsoleLogCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerDeleteContainerConsoleLogCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerDeleteContainerFileCall

type MockInstanceServerDeleteContainerFileCall struct {
	*gomock.Call
}

MockInstanceServerDeleteContainerFileCall wrap *gomock.Call

func (*MockInstanceServerDeleteContainerFileCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerDeleteContainerFileCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerDeleteContainerFileCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerDeleteContainerLogfileCall

type MockInstanceServerDeleteContainerLogfileCall struct {
	*gomock.Call
}

MockInstanceServerDeleteContainerLogfileCall wrap *gomock.Call

func (*MockInstanceServerDeleteContainerLogfileCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerDeleteContainerLogfileCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerDeleteContainerLogfileCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerDeleteContainerSnapshotCall

type MockInstanceServerDeleteContainerSnapshotCall struct {
	*gomock.Call
}

MockInstanceServerDeleteContainerSnapshotCall wrap *gomock.Call

func (*MockInstanceServerDeleteContainerSnapshotCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerDeleteContainerSnapshotCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerDeleteContainerSnapshotCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerDeleteContainerTemplateFileCall

type MockInstanceServerDeleteContainerTemplateFileCall struct {
	*gomock.Call
}

MockInstanceServerDeleteContainerTemplateFileCall wrap *gomock.Call

func (*MockInstanceServerDeleteContainerTemplateFileCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerDeleteContainerTemplateFileCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerDeleteContainerTemplateFileCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerDeleteIdentityProviderGroupCall

type MockInstanceServerDeleteIdentityProviderGroupCall struct {
	*gomock.Call
}

MockInstanceServerDeleteIdentityProviderGroupCall wrap *gomock.Call

func (*MockInstanceServerDeleteIdentityProviderGroupCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerDeleteIdentityProviderGroupCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerDeleteIdentityProviderGroupCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerDeleteImageAliasCall

type MockInstanceServerDeleteImageAliasCall struct {
	*gomock.Call
}

MockInstanceServerDeleteImageAliasCall wrap *gomock.Call

func (*MockInstanceServerDeleteImageAliasCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerDeleteImageAliasCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerDeleteImageAliasCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerDeleteImageCall

type MockInstanceServerDeleteImageCall struct {
	*gomock.Call
}

MockInstanceServerDeleteImageCall wrap *gomock.Call

func (*MockInstanceServerDeleteImageCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerDeleteImageCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerDeleteImageCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerDeleteInstanceBackupCall

type MockInstanceServerDeleteInstanceBackupCall struct {
	*gomock.Call
}

MockInstanceServerDeleteInstanceBackupCall wrap *gomock.Call

func (*MockInstanceServerDeleteInstanceBackupCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerDeleteInstanceBackupCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerDeleteInstanceBackupCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerDeleteInstanceCall

type MockInstanceServerDeleteInstanceCall struct {
	*gomock.Call
}

MockInstanceServerDeleteInstanceCall wrap *gomock.Call

func (*MockInstanceServerDeleteInstanceCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerDeleteInstanceCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerDeleteInstanceCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerDeleteInstanceConsoleLogCall

type MockInstanceServerDeleteInstanceConsoleLogCall struct {
	*gomock.Call
}

MockInstanceServerDeleteInstanceConsoleLogCall wrap *gomock.Call

func (*MockInstanceServerDeleteInstanceConsoleLogCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerDeleteInstanceConsoleLogCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerDeleteInstanceConsoleLogCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerDeleteInstanceFileCall

type MockInstanceServerDeleteInstanceFileCall struct {
	*gomock.Call
}

MockInstanceServerDeleteInstanceFileCall wrap *gomock.Call

func (*MockInstanceServerDeleteInstanceFileCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerDeleteInstanceFileCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerDeleteInstanceFileCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerDeleteInstanceLogfileCall

type MockInstanceServerDeleteInstanceLogfileCall struct {
	*gomock.Call
}

MockInstanceServerDeleteInstanceLogfileCall wrap *gomock.Call

func (*MockInstanceServerDeleteInstanceLogfileCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerDeleteInstanceLogfileCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerDeleteInstanceLogfileCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerDeleteInstanceSnapshotCall

type MockInstanceServerDeleteInstanceSnapshotCall struct {
	*gomock.Call
}

MockInstanceServerDeleteInstanceSnapshotCall wrap *gomock.Call

func (*MockInstanceServerDeleteInstanceSnapshotCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerDeleteInstanceSnapshotCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerDeleteInstanceSnapshotCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerDeleteInstanceTemplateFileCall

type MockInstanceServerDeleteInstanceTemplateFileCall struct {
	*gomock.Call
}

MockInstanceServerDeleteInstanceTemplateFileCall wrap *gomock.Call

func (*MockInstanceServerDeleteInstanceTemplateFileCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerDeleteInstanceTemplateFileCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerDeleteInstanceTemplateFileCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerDeleteNetworkACLCall

type MockInstanceServerDeleteNetworkACLCall struct {
	*gomock.Call
}

MockInstanceServerDeleteNetworkACLCall wrap *gomock.Call

func (*MockInstanceServerDeleteNetworkACLCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerDeleteNetworkACLCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerDeleteNetworkACLCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerDeleteNetworkCall

type MockInstanceServerDeleteNetworkCall struct {
	*gomock.Call
}

MockInstanceServerDeleteNetworkCall wrap *gomock.Call

func (*MockInstanceServerDeleteNetworkCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerDeleteNetworkCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerDeleteNetworkCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerDeleteNetworkForwardCall

type MockInstanceServerDeleteNetworkForwardCall struct {
	*gomock.Call
}

MockInstanceServerDeleteNetworkForwardCall wrap *gomock.Call

func (*MockInstanceServerDeleteNetworkForwardCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerDeleteNetworkForwardCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerDeleteNetworkForwardCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerDeleteNetworkLoadBalancerCall

type MockInstanceServerDeleteNetworkLoadBalancerCall struct {
	*gomock.Call
}

MockInstanceServerDeleteNetworkLoadBalancerCall wrap *gomock.Call

func (*MockInstanceServerDeleteNetworkLoadBalancerCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerDeleteNetworkLoadBalancerCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerDeleteNetworkLoadBalancerCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerDeleteNetworkPeerCall

type MockInstanceServerDeleteNetworkPeerCall struct {
	*gomock.Call
}

MockInstanceServerDeleteNetworkPeerCall wrap *gomock.Call

func (*MockInstanceServerDeleteNetworkPeerCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerDeleteNetworkPeerCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerDeleteNetworkPeerCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerDeleteNetworkZoneCall

type MockInstanceServerDeleteNetworkZoneCall struct {
	*gomock.Call
}

MockInstanceServerDeleteNetworkZoneCall wrap *gomock.Call

func (*MockInstanceServerDeleteNetworkZoneCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerDeleteNetworkZoneCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerDeleteNetworkZoneCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerDeleteNetworkZoneRecordCall

type MockInstanceServerDeleteNetworkZoneRecordCall struct {
	*gomock.Call
}

MockInstanceServerDeleteNetworkZoneRecordCall wrap *gomock.Call

func (*MockInstanceServerDeleteNetworkZoneRecordCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerDeleteNetworkZoneRecordCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerDeleteNetworkZoneRecordCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerDeleteOperationCall

type MockInstanceServerDeleteOperationCall struct {
	*gomock.Call
}

MockInstanceServerDeleteOperationCall wrap *gomock.Call

func (*MockInstanceServerDeleteOperationCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerDeleteOperationCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerDeleteOperationCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerDeleteProfileCall

type MockInstanceServerDeleteProfileCall struct {
	*gomock.Call
}

MockInstanceServerDeleteProfileCall wrap *gomock.Call

func (*MockInstanceServerDeleteProfileCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerDeleteProfileCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerDeleteProfileCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerDeleteProjectCall

type MockInstanceServerDeleteProjectCall struct {
	*gomock.Call
}

MockInstanceServerDeleteProjectCall wrap *gomock.Call

func (*MockInstanceServerDeleteProjectCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerDeleteProjectCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerDeleteProjectCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerDeleteStoragePoolBucketCall

type MockInstanceServerDeleteStoragePoolBucketCall struct {
	*gomock.Call
}

MockInstanceServerDeleteStoragePoolBucketCall wrap *gomock.Call

func (*MockInstanceServerDeleteStoragePoolBucketCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerDeleteStoragePoolBucketCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerDeleteStoragePoolBucketCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerDeleteStoragePoolBucketKeyCall

type MockInstanceServerDeleteStoragePoolBucketKeyCall struct {
	*gomock.Call
}

MockInstanceServerDeleteStoragePoolBucketKeyCall wrap *gomock.Call

func (*MockInstanceServerDeleteStoragePoolBucketKeyCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerDeleteStoragePoolBucketKeyCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerDeleteStoragePoolBucketKeyCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerDeleteStoragePoolCall

type MockInstanceServerDeleteStoragePoolCall struct {
	*gomock.Call
}

MockInstanceServerDeleteStoragePoolCall wrap *gomock.Call

func (*MockInstanceServerDeleteStoragePoolCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerDeleteStoragePoolCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerDeleteStoragePoolCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerDeleteStoragePoolVolumeBackupCall

type MockInstanceServerDeleteStoragePoolVolumeBackupCall struct {
	*gomock.Call
}

MockInstanceServerDeleteStoragePoolVolumeBackupCall wrap *gomock.Call

func (*MockInstanceServerDeleteStoragePoolVolumeBackupCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerDeleteStoragePoolVolumeBackupCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerDeleteStoragePoolVolumeBackupCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerDeleteStoragePoolVolumeCall

type MockInstanceServerDeleteStoragePoolVolumeCall struct {
	*gomock.Call
}

MockInstanceServerDeleteStoragePoolVolumeCall wrap *gomock.Call

func (*MockInstanceServerDeleteStoragePoolVolumeCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerDeleteStoragePoolVolumeCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerDeleteStoragePoolVolumeCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerDeleteStoragePoolVolumeSnapshotCall

type MockInstanceServerDeleteStoragePoolVolumeSnapshotCall struct {
	*gomock.Call
}

MockInstanceServerDeleteStoragePoolVolumeSnapshotCall wrap *gomock.Call

func (*MockInstanceServerDeleteStoragePoolVolumeSnapshotCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerDeleteStoragePoolVolumeSnapshotCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerDeleteStoragePoolVolumeSnapshotCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerDeleteWarningCall

type MockInstanceServerDeleteWarningCall struct {
	*gomock.Call
}

MockInstanceServerDeleteWarningCall wrap *gomock.Call

func (*MockInstanceServerDeleteWarningCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerDeleteWarningCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerDeleteWarningCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerDisconnectCall

type MockInstanceServerDisconnectCall struct {
	*gomock.Call
}

MockInstanceServerDisconnectCall wrap *gomock.Call

func (*MockInstanceServerDisconnectCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerDisconnectCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerDisconnectCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerDoHTTPCall

type MockInstanceServerDoHTTPCall struct {
	*gomock.Call
}

MockInstanceServerDoHTTPCall wrap *gomock.Call

func (*MockInstanceServerDoHTTPCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerDoHTTPCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerDoHTTPCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerExecContainerCall

type MockInstanceServerExecContainerCall struct {
	*gomock.Call
}

MockInstanceServerExecContainerCall wrap *gomock.Call

func (*MockInstanceServerExecContainerCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerExecContainerCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerExecContainerCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerExecInstanceCall

type MockInstanceServerExecInstanceCall struct {
	*gomock.Call
}

MockInstanceServerExecInstanceCall wrap *gomock.Call

func (*MockInstanceServerExecInstanceCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerExecInstanceCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerExecInstanceCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerExportImageCall

type MockInstanceServerExportImageCall struct {
	*gomock.Call
}

MockInstanceServerExportImageCall wrap *gomock.Call

func (*MockInstanceServerExportImageCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerExportImageCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerExportImageCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetAuthGroupCall

type MockInstanceServerGetAuthGroupCall struct {
	*gomock.Call
}

MockInstanceServerGetAuthGroupCall wrap *gomock.Call

func (*MockInstanceServerGetAuthGroupCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetAuthGroupCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetAuthGroupCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetAuthGroupNamesCall

type MockInstanceServerGetAuthGroupNamesCall struct {
	*gomock.Call
}

MockInstanceServerGetAuthGroupNamesCall wrap *gomock.Call

func (*MockInstanceServerGetAuthGroupNamesCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetAuthGroupNamesCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetAuthGroupNamesCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetAuthGroupsCall

type MockInstanceServerGetAuthGroupsCall struct {
	*gomock.Call
}

MockInstanceServerGetAuthGroupsCall wrap *gomock.Call

func (*MockInstanceServerGetAuthGroupsCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetAuthGroupsCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetAuthGroupsCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetCertificateCall

type MockInstanceServerGetCertificateCall struct {
	*gomock.Call
}

MockInstanceServerGetCertificateCall wrap *gomock.Call

func (*MockInstanceServerGetCertificateCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetCertificateCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetCertificateCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetCertificateFingerprintsCall

type MockInstanceServerGetCertificateFingerprintsCall struct {
	*gomock.Call
}

MockInstanceServerGetCertificateFingerprintsCall wrap *gomock.Call

func (*MockInstanceServerGetCertificateFingerprintsCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetCertificateFingerprintsCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetCertificateFingerprintsCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetCertificatesCall

type MockInstanceServerGetCertificatesCall struct {
	*gomock.Call
}

MockInstanceServerGetCertificatesCall wrap *gomock.Call

func (*MockInstanceServerGetCertificatesCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetCertificatesCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetCertificatesCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetClusterCall

type MockInstanceServerGetClusterCall struct {
	*gomock.Call
}

MockInstanceServerGetClusterCall wrap *gomock.Call

func (*MockInstanceServerGetClusterCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetClusterCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetClusterCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetClusterGroupCall

type MockInstanceServerGetClusterGroupCall struct {
	*gomock.Call
}

MockInstanceServerGetClusterGroupCall wrap *gomock.Call

func (*MockInstanceServerGetClusterGroupCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetClusterGroupCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetClusterGroupCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetClusterGroupNamesCall

type MockInstanceServerGetClusterGroupNamesCall struct {
	*gomock.Call
}

MockInstanceServerGetClusterGroupNamesCall wrap *gomock.Call

func (*MockInstanceServerGetClusterGroupNamesCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetClusterGroupNamesCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetClusterGroupNamesCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetClusterGroupsCall

type MockInstanceServerGetClusterGroupsCall struct {
	*gomock.Call
}

MockInstanceServerGetClusterGroupsCall wrap *gomock.Call

func (*MockInstanceServerGetClusterGroupsCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetClusterGroupsCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetClusterGroupsCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetClusterMemberCall

type MockInstanceServerGetClusterMemberCall struct {
	*gomock.Call
}

MockInstanceServerGetClusterMemberCall wrap *gomock.Call

func (*MockInstanceServerGetClusterMemberCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetClusterMemberCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetClusterMemberCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetClusterMemberNamesCall

type MockInstanceServerGetClusterMemberNamesCall struct {
	*gomock.Call
}

MockInstanceServerGetClusterMemberNamesCall wrap *gomock.Call

func (*MockInstanceServerGetClusterMemberNamesCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetClusterMemberNamesCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetClusterMemberNamesCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetClusterMemberStateCall

type MockInstanceServerGetClusterMemberStateCall struct {
	*gomock.Call
}

MockInstanceServerGetClusterMemberStateCall wrap *gomock.Call

func (*MockInstanceServerGetClusterMemberStateCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetClusterMemberStateCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetClusterMemberStateCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetClusterMembersCall

type MockInstanceServerGetClusterMembersCall struct {
	*gomock.Call
}

MockInstanceServerGetClusterMembersCall wrap *gomock.Call

func (*MockInstanceServerGetClusterMembersCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetClusterMembersCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetClusterMembersCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetConnectionInfoCall

type MockInstanceServerGetConnectionInfoCall struct {
	*gomock.Call
}

MockInstanceServerGetConnectionInfoCall wrap *gomock.Call

func (*MockInstanceServerGetConnectionInfoCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetConnectionInfoCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetConnectionInfoCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetContainerBackupCall

type MockInstanceServerGetContainerBackupCall struct {
	*gomock.Call
}

MockInstanceServerGetContainerBackupCall wrap *gomock.Call

func (*MockInstanceServerGetContainerBackupCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetContainerBackupCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetContainerBackupCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetContainerBackupFileCall

type MockInstanceServerGetContainerBackupFileCall struct {
	*gomock.Call
}

MockInstanceServerGetContainerBackupFileCall wrap *gomock.Call

func (*MockInstanceServerGetContainerBackupFileCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetContainerBackupFileCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetContainerBackupFileCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetContainerBackupNamesCall

type MockInstanceServerGetContainerBackupNamesCall struct {
	*gomock.Call
}

MockInstanceServerGetContainerBackupNamesCall wrap *gomock.Call

func (*MockInstanceServerGetContainerBackupNamesCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetContainerBackupNamesCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetContainerBackupNamesCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetContainerBackupsCall

type MockInstanceServerGetContainerBackupsCall struct {
	*gomock.Call
}

MockInstanceServerGetContainerBackupsCall wrap *gomock.Call

func (*MockInstanceServerGetContainerBackupsCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetContainerBackupsCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetContainerBackupsCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetContainerCall

type MockInstanceServerGetContainerCall struct {
	*gomock.Call
}

MockInstanceServerGetContainerCall wrap *gomock.Call

func (*MockInstanceServerGetContainerCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetContainerCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetContainerCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetContainerConsoleLogCall

type MockInstanceServerGetContainerConsoleLogCall struct {
	*gomock.Call
}

MockInstanceServerGetContainerConsoleLogCall wrap *gomock.Call

func (*MockInstanceServerGetContainerConsoleLogCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetContainerConsoleLogCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetContainerConsoleLogCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetContainerFileCall

type MockInstanceServerGetContainerFileCall struct {
	*gomock.Call
}

MockInstanceServerGetContainerFileCall wrap *gomock.Call

func (*MockInstanceServerGetContainerFileCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetContainerFileCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetContainerFileCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetContainerLogfileCall

type MockInstanceServerGetContainerLogfileCall struct {
	*gomock.Call
}

MockInstanceServerGetContainerLogfileCall wrap *gomock.Call

func (*MockInstanceServerGetContainerLogfileCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetContainerLogfileCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetContainerLogfileCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetContainerLogfilesCall

type MockInstanceServerGetContainerLogfilesCall struct {
	*gomock.Call
}

MockInstanceServerGetContainerLogfilesCall wrap *gomock.Call

func (*MockInstanceServerGetContainerLogfilesCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetContainerLogfilesCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetContainerLogfilesCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetContainerMetadataCall

type MockInstanceServerGetContainerMetadataCall struct {
	*gomock.Call
}

MockInstanceServerGetContainerMetadataCall wrap *gomock.Call

func (*MockInstanceServerGetContainerMetadataCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetContainerMetadataCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetContainerMetadataCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetContainerNamesCall

type MockInstanceServerGetContainerNamesCall struct {
	*gomock.Call
}

MockInstanceServerGetContainerNamesCall wrap *gomock.Call

func (*MockInstanceServerGetContainerNamesCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetContainerNamesCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetContainerNamesCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetContainerSnapshotCall

type MockInstanceServerGetContainerSnapshotCall struct {
	*gomock.Call
}

MockInstanceServerGetContainerSnapshotCall wrap *gomock.Call

func (*MockInstanceServerGetContainerSnapshotCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetContainerSnapshotCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetContainerSnapshotCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetContainerSnapshotNamesCall

type MockInstanceServerGetContainerSnapshotNamesCall struct {
	*gomock.Call
}

MockInstanceServerGetContainerSnapshotNamesCall wrap *gomock.Call

func (*MockInstanceServerGetContainerSnapshotNamesCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetContainerSnapshotNamesCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetContainerSnapshotNamesCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetContainerSnapshotsCall

type MockInstanceServerGetContainerSnapshotsCall struct {
	*gomock.Call
}

MockInstanceServerGetContainerSnapshotsCall wrap *gomock.Call

func (*MockInstanceServerGetContainerSnapshotsCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetContainerSnapshotsCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetContainerSnapshotsCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetContainerStateCall

type MockInstanceServerGetContainerStateCall struct {
	*gomock.Call
}

MockInstanceServerGetContainerStateCall wrap *gomock.Call

func (*MockInstanceServerGetContainerStateCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetContainerStateCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetContainerStateCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetContainerTemplateFileCall

type MockInstanceServerGetContainerTemplateFileCall struct {
	*gomock.Call
}

MockInstanceServerGetContainerTemplateFileCall wrap *gomock.Call

func (*MockInstanceServerGetContainerTemplateFileCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetContainerTemplateFileCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetContainerTemplateFileCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetContainerTemplateFilesCall

type MockInstanceServerGetContainerTemplateFilesCall struct {
	*gomock.Call
}

MockInstanceServerGetContainerTemplateFilesCall wrap *gomock.Call

func (*MockInstanceServerGetContainerTemplateFilesCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetContainerTemplateFilesCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetContainerTemplateFilesCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetContainersCall

type MockInstanceServerGetContainersCall struct {
	*gomock.Call
}

MockInstanceServerGetContainersCall wrap *gomock.Call

func (*MockInstanceServerGetContainersCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetContainersCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetContainersCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetContainersFullCall

type MockInstanceServerGetContainersFullCall struct {
	*gomock.Call
}

MockInstanceServerGetContainersFullCall wrap *gomock.Call

func (*MockInstanceServerGetContainersFullCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetContainersFullCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetContainersFullCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetCurrentIdentityInfoCall

type MockInstanceServerGetCurrentIdentityInfoCall struct {
	*gomock.Call
}

MockInstanceServerGetCurrentIdentityInfoCall wrap *gomock.Call

func (*MockInstanceServerGetCurrentIdentityInfoCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetCurrentIdentityInfoCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetCurrentIdentityInfoCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetEventsAllProjectsCall

type MockInstanceServerGetEventsAllProjectsCall struct {
	*gomock.Call
}

MockInstanceServerGetEventsAllProjectsCall wrap *gomock.Call

func (*MockInstanceServerGetEventsAllProjectsCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetEventsAllProjectsCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetEventsAllProjectsCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetEventsCall

type MockInstanceServerGetEventsCall struct {
	*gomock.Call
}

MockInstanceServerGetEventsCall wrap *gomock.Call

func (*MockInstanceServerGetEventsCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetEventsCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetEventsCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetHTTPClientCall

type MockInstanceServerGetHTTPClientCall struct {
	*gomock.Call
}

MockInstanceServerGetHTTPClientCall wrap *gomock.Call

func (*MockInstanceServerGetHTTPClientCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetHTTPClientCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetHTTPClientCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetIdentitiesByAuthenticationMethodCall

type MockInstanceServerGetIdentitiesByAuthenticationMethodCall struct {
	*gomock.Call
}

MockInstanceServerGetIdentitiesByAuthenticationMethodCall wrap *gomock.Call

func (*MockInstanceServerGetIdentitiesByAuthenticationMethodCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetIdentitiesByAuthenticationMethodCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetIdentitiesByAuthenticationMethodCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetIdentitiesCall

type MockInstanceServerGetIdentitiesCall struct {
	*gomock.Call
}

MockInstanceServerGetIdentitiesCall wrap *gomock.Call

func (*MockInstanceServerGetIdentitiesCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetIdentitiesCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetIdentitiesCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetIdentityAuthenticationMethodsIdentifiersCall

type MockInstanceServerGetIdentityAuthenticationMethodsIdentifiersCall struct {
	*gomock.Call
}

MockInstanceServerGetIdentityAuthenticationMethodsIdentifiersCall wrap *gomock.Call

func (*MockInstanceServerGetIdentityAuthenticationMethodsIdentifiersCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetIdentityAuthenticationMethodsIdentifiersCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetIdentityAuthenticationMethodsIdentifiersCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetIdentityCall

type MockInstanceServerGetIdentityCall struct {
	*gomock.Call
}

MockInstanceServerGetIdentityCall wrap *gomock.Call

func (*MockInstanceServerGetIdentityCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetIdentityCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetIdentityCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetIdentityIdentifiersByAuthenticationMethodCall

type MockInstanceServerGetIdentityIdentifiersByAuthenticationMethodCall struct {
	*gomock.Call
}

MockInstanceServerGetIdentityIdentifiersByAuthenticationMethodCall wrap *gomock.Call

func (*MockInstanceServerGetIdentityIdentifiersByAuthenticationMethodCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetIdentityIdentifiersByAuthenticationMethodCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetIdentityIdentifiersByAuthenticationMethodCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetIdentityProviderGroupCall

type MockInstanceServerGetIdentityProviderGroupCall struct {
	*gomock.Call
}

MockInstanceServerGetIdentityProviderGroupCall wrap *gomock.Call

func (*MockInstanceServerGetIdentityProviderGroupCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetIdentityProviderGroupCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetIdentityProviderGroupCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetIdentityProviderGroupNamesCall

type MockInstanceServerGetIdentityProviderGroupNamesCall struct {
	*gomock.Call
}

MockInstanceServerGetIdentityProviderGroupNamesCall wrap *gomock.Call

func (*MockInstanceServerGetIdentityProviderGroupNamesCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetIdentityProviderGroupNamesCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetIdentityProviderGroupNamesCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetIdentityProviderGroupsCall

type MockInstanceServerGetIdentityProviderGroupsCall struct {
	*gomock.Call
}

MockInstanceServerGetIdentityProviderGroupsCall wrap *gomock.Call

func (*MockInstanceServerGetIdentityProviderGroupsCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetIdentityProviderGroupsCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetIdentityProviderGroupsCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetImageAliasArchitecturesCall

type MockInstanceServerGetImageAliasArchitecturesCall struct {
	*gomock.Call
}

MockInstanceServerGetImageAliasArchitecturesCall wrap *gomock.Call

func (*MockInstanceServerGetImageAliasArchitecturesCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetImageAliasArchitecturesCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetImageAliasArchitecturesCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetImageAliasCall

type MockInstanceServerGetImageAliasCall struct {
	*gomock.Call
}

MockInstanceServerGetImageAliasCall wrap *gomock.Call

func (*MockInstanceServerGetImageAliasCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetImageAliasCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetImageAliasCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetImageAliasNamesCall

type MockInstanceServerGetImageAliasNamesCall struct {
	*gomock.Call
}

MockInstanceServerGetImageAliasNamesCall wrap *gomock.Call

func (*MockInstanceServerGetImageAliasNamesCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetImageAliasNamesCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetImageAliasNamesCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetImageAliasTypeCall

type MockInstanceServerGetImageAliasTypeCall struct {
	*gomock.Call
}

MockInstanceServerGetImageAliasTypeCall wrap *gomock.Call

func (*MockInstanceServerGetImageAliasTypeCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetImageAliasTypeCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetImageAliasTypeCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetImageAliasesCall

type MockInstanceServerGetImageAliasesCall struct {
	*gomock.Call
}

MockInstanceServerGetImageAliasesCall wrap *gomock.Call

func (*MockInstanceServerGetImageAliasesCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetImageAliasesCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetImageAliasesCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetImageCall

type MockInstanceServerGetImageCall struct {
	*gomock.Call
}

MockInstanceServerGetImageCall wrap *gomock.Call

func (*MockInstanceServerGetImageCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetImageCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetImageCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetImageFileCall

type MockInstanceServerGetImageFileCall struct {
	*gomock.Call
}

MockInstanceServerGetImageFileCall wrap *gomock.Call

func (*MockInstanceServerGetImageFileCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetImageFileCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetImageFileCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetImageFingerprintsCall

type MockInstanceServerGetImageFingerprintsCall struct {
	*gomock.Call
}

MockInstanceServerGetImageFingerprintsCall wrap *gomock.Call

func (*MockInstanceServerGetImageFingerprintsCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetImageFingerprintsCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetImageFingerprintsCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetImageSecretCall

type MockInstanceServerGetImageSecretCall struct {
	*gomock.Call
}

MockInstanceServerGetImageSecretCall wrap *gomock.Call

func (*MockInstanceServerGetImageSecretCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetImageSecretCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetImageSecretCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetImagesCall

type MockInstanceServerGetImagesCall struct {
	*gomock.Call
}

MockInstanceServerGetImagesCall wrap *gomock.Call

func (*MockInstanceServerGetImagesCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetImagesCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetImagesCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetImagesWithFilterCall

type MockInstanceServerGetImagesWithFilterCall struct {
	*gomock.Call
}

MockInstanceServerGetImagesWithFilterCall wrap *gomock.Call

func (*MockInstanceServerGetImagesWithFilterCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetImagesWithFilterCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetImagesWithFilterCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetInstanceBackupCall

type MockInstanceServerGetInstanceBackupCall struct {
	*gomock.Call
}

MockInstanceServerGetInstanceBackupCall wrap *gomock.Call

func (*MockInstanceServerGetInstanceBackupCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetInstanceBackupCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetInstanceBackupCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetInstanceBackupFileCall

type MockInstanceServerGetInstanceBackupFileCall struct {
	*gomock.Call
}

MockInstanceServerGetInstanceBackupFileCall wrap *gomock.Call

func (*MockInstanceServerGetInstanceBackupFileCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetInstanceBackupFileCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetInstanceBackupFileCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetInstanceBackupNamesCall

type MockInstanceServerGetInstanceBackupNamesCall struct {
	*gomock.Call
}

MockInstanceServerGetInstanceBackupNamesCall wrap *gomock.Call

func (*MockInstanceServerGetInstanceBackupNamesCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetInstanceBackupNamesCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetInstanceBackupNamesCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetInstanceBackupsCall

type MockInstanceServerGetInstanceBackupsCall struct {
	*gomock.Call
}

MockInstanceServerGetInstanceBackupsCall wrap *gomock.Call

func (*MockInstanceServerGetInstanceBackupsCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetInstanceBackupsCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetInstanceBackupsCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetInstanceCall

type MockInstanceServerGetInstanceCall struct {
	*gomock.Call
}

MockInstanceServerGetInstanceCall wrap *gomock.Call

func (*MockInstanceServerGetInstanceCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetInstanceCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetInstanceCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetInstanceConsoleLogCall

type MockInstanceServerGetInstanceConsoleLogCall struct {
	*gomock.Call
}

MockInstanceServerGetInstanceConsoleLogCall wrap *gomock.Call

func (*MockInstanceServerGetInstanceConsoleLogCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetInstanceConsoleLogCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetInstanceConsoleLogCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetInstanceFileCall

type MockInstanceServerGetInstanceFileCall struct {
	*gomock.Call
}

MockInstanceServerGetInstanceFileCall wrap *gomock.Call

func (*MockInstanceServerGetInstanceFileCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetInstanceFileCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetInstanceFileCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetInstanceFileSFTPCall

type MockInstanceServerGetInstanceFileSFTPCall struct {
	*gomock.Call
}

MockInstanceServerGetInstanceFileSFTPCall wrap *gomock.Call

func (*MockInstanceServerGetInstanceFileSFTPCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetInstanceFileSFTPCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetInstanceFileSFTPCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetInstanceFileSFTPConnCall

type MockInstanceServerGetInstanceFileSFTPConnCall struct {
	*gomock.Call
}

MockInstanceServerGetInstanceFileSFTPConnCall wrap *gomock.Call

func (*MockInstanceServerGetInstanceFileSFTPConnCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetInstanceFileSFTPConnCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetInstanceFileSFTPConnCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetInstanceFullCall

type MockInstanceServerGetInstanceFullCall struct {
	*gomock.Call
}

MockInstanceServerGetInstanceFullCall wrap *gomock.Call

func (*MockInstanceServerGetInstanceFullCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetInstanceFullCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetInstanceFullCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetInstanceLogfileCall

type MockInstanceServerGetInstanceLogfileCall struct {
	*gomock.Call
}

MockInstanceServerGetInstanceLogfileCall wrap *gomock.Call

func (*MockInstanceServerGetInstanceLogfileCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetInstanceLogfileCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetInstanceLogfileCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetInstanceLogfilesCall

type MockInstanceServerGetInstanceLogfilesCall struct {
	*gomock.Call
}

MockInstanceServerGetInstanceLogfilesCall wrap *gomock.Call

func (*MockInstanceServerGetInstanceLogfilesCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetInstanceLogfilesCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetInstanceLogfilesCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetInstanceMetadataCall

type MockInstanceServerGetInstanceMetadataCall struct {
	*gomock.Call
}

MockInstanceServerGetInstanceMetadataCall wrap *gomock.Call

func (*MockInstanceServerGetInstanceMetadataCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetInstanceMetadataCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetInstanceMetadataCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetInstanceNamesAllProjectsCall

type MockInstanceServerGetInstanceNamesAllProjectsCall struct {
	*gomock.Call
}

MockInstanceServerGetInstanceNamesAllProjectsCall wrap *gomock.Call

func (*MockInstanceServerGetInstanceNamesAllProjectsCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetInstanceNamesAllProjectsCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetInstanceNamesAllProjectsCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetInstanceNamesCall

type MockInstanceServerGetInstanceNamesCall struct {
	*gomock.Call
}

MockInstanceServerGetInstanceNamesCall wrap *gomock.Call

func (*MockInstanceServerGetInstanceNamesCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetInstanceNamesCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetInstanceNamesCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetInstanceSnapshotCall

type MockInstanceServerGetInstanceSnapshotCall struct {
	*gomock.Call
}

MockInstanceServerGetInstanceSnapshotCall wrap *gomock.Call

func (*MockInstanceServerGetInstanceSnapshotCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetInstanceSnapshotCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetInstanceSnapshotCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetInstanceSnapshotNamesCall

type MockInstanceServerGetInstanceSnapshotNamesCall struct {
	*gomock.Call
}

MockInstanceServerGetInstanceSnapshotNamesCall wrap *gomock.Call

func (*MockInstanceServerGetInstanceSnapshotNamesCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetInstanceSnapshotNamesCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetInstanceSnapshotNamesCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetInstanceSnapshotsCall

type MockInstanceServerGetInstanceSnapshotsCall struct {
	*gomock.Call
}

MockInstanceServerGetInstanceSnapshotsCall wrap *gomock.Call

func (*MockInstanceServerGetInstanceSnapshotsCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetInstanceSnapshotsCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetInstanceSnapshotsCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetInstanceStateCall

type MockInstanceServerGetInstanceStateCall struct {
	*gomock.Call
}

MockInstanceServerGetInstanceStateCall wrap *gomock.Call

func (*MockInstanceServerGetInstanceStateCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetInstanceStateCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetInstanceStateCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetInstanceTemplateFileCall

type MockInstanceServerGetInstanceTemplateFileCall struct {
	*gomock.Call
}

MockInstanceServerGetInstanceTemplateFileCall wrap *gomock.Call

func (*MockInstanceServerGetInstanceTemplateFileCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetInstanceTemplateFileCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetInstanceTemplateFileCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetInstanceTemplateFilesCall

type MockInstanceServerGetInstanceTemplateFilesCall struct {
	*gomock.Call
}

MockInstanceServerGetInstanceTemplateFilesCall wrap *gomock.Call

func (*MockInstanceServerGetInstanceTemplateFilesCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetInstanceTemplateFilesCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetInstanceTemplateFilesCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetInstanceUEFIVarsCall

type MockInstanceServerGetInstanceUEFIVarsCall struct {
	*gomock.Call
}

MockInstanceServerGetInstanceUEFIVarsCall wrap *gomock.Call

func (*MockInstanceServerGetInstanceUEFIVarsCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetInstanceUEFIVarsCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetInstanceUEFIVarsCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetInstancesAllProjectsCall

type MockInstanceServerGetInstancesAllProjectsCall struct {
	*gomock.Call
}

MockInstanceServerGetInstancesAllProjectsCall wrap *gomock.Call

func (*MockInstanceServerGetInstancesAllProjectsCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetInstancesAllProjectsCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetInstancesAllProjectsCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetInstancesAllProjectsWithFilterCall

type MockInstanceServerGetInstancesAllProjectsWithFilterCall struct {
	*gomock.Call
}

MockInstanceServerGetInstancesAllProjectsWithFilterCall wrap *gomock.Call

func (*MockInstanceServerGetInstancesAllProjectsWithFilterCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetInstancesAllProjectsWithFilterCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetInstancesAllProjectsWithFilterCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetInstancesCall

type MockInstanceServerGetInstancesCall struct {
	*gomock.Call
}

MockInstanceServerGetInstancesCall wrap *gomock.Call

func (*MockInstanceServerGetInstancesCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetInstancesCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetInstancesCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetInstancesFullAllProjectsCall

type MockInstanceServerGetInstancesFullAllProjectsCall struct {
	*gomock.Call
}

MockInstanceServerGetInstancesFullAllProjectsCall wrap *gomock.Call

func (*MockInstanceServerGetInstancesFullAllProjectsCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetInstancesFullAllProjectsCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetInstancesFullAllProjectsCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetInstancesFullAllProjectsWithFilterCall

type MockInstanceServerGetInstancesFullAllProjectsWithFilterCall struct {
	*gomock.Call
}

MockInstanceServerGetInstancesFullAllProjectsWithFilterCall wrap *gomock.Call

func (*MockInstanceServerGetInstancesFullAllProjectsWithFilterCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetInstancesFullAllProjectsWithFilterCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetInstancesFullAllProjectsWithFilterCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetInstancesFullCall

type MockInstanceServerGetInstancesFullCall struct {
	*gomock.Call
}

MockInstanceServerGetInstancesFullCall wrap *gomock.Call

func (*MockInstanceServerGetInstancesFullCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetInstancesFullCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetInstancesFullCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetInstancesFullWithFilterCall

type MockInstanceServerGetInstancesFullWithFilterCall struct {
	*gomock.Call
}

MockInstanceServerGetInstancesFullWithFilterCall wrap *gomock.Call

func (*MockInstanceServerGetInstancesFullWithFilterCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetInstancesFullWithFilterCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetInstancesFullWithFilterCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetInstancesWithFilterCall

type MockInstanceServerGetInstancesWithFilterCall struct {
	*gomock.Call
}

MockInstanceServerGetInstancesWithFilterCall wrap *gomock.Call

func (*MockInstanceServerGetInstancesWithFilterCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetInstancesWithFilterCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetInstancesWithFilterCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetMetricsCall

type MockInstanceServerGetMetricsCall struct {
	*gomock.Call
}

MockInstanceServerGetMetricsCall wrap *gomock.Call

func (*MockInstanceServerGetMetricsCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetMetricsCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetMetricsCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetNetworkACLCall

type MockInstanceServerGetNetworkACLCall struct {
	*gomock.Call
}

MockInstanceServerGetNetworkACLCall wrap *gomock.Call

func (*MockInstanceServerGetNetworkACLCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetNetworkACLCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetNetworkACLCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetNetworkACLLogfileCall

type MockInstanceServerGetNetworkACLLogfileCall struct {
	*gomock.Call
}

MockInstanceServerGetNetworkACLLogfileCall wrap *gomock.Call

func (*MockInstanceServerGetNetworkACLLogfileCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetNetworkACLLogfileCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetNetworkACLLogfileCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetNetworkACLNamesCall

type MockInstanceServerGetNetworkACLNamesCall struct {
	*gomock.Call
}

MockInstanceServerGetNetworkACLNamesCall wrap *gomock.Call

func (*MockInstanceServerGetNetworkACLNamesCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetNetworkACLNamesCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetNetworkACLNamesCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetNetworkACLsCall

type MockInstanceServerGetNetworkACLsCall struct {
	*gomock.Call
}

MockInstanceServerGetNetworkACLsCall wrap *gomock.Call

func (*MockInstanceServerGetNetworkACLsCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetNetworkACLsCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetNetworkACLsCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetNetworkAllocationsCall

type MockInstanceServerGetNetworkAllocationsCall struct {
	*gomock.Call
}

MockInstanceServerGetNetworkAllocationsCall wrap *gomock.Call

func (*MockInstanceServerGetNetworkAllocationsCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetNetworkAllocationsCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetNetworkAllocationsCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetNetworkCall

type MockInstanceServerGetNetworkCall struct {
	*gomock.Call
}

MockInstanceServerGetNetworkCall wrap *gomock.Call

func (*MockInstanceServerGetNetworkCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetNetworkCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetNetworkCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetNetworkForwardAddressesCall

type MockInstanceServerGetNetworkForwardAddressesCall struct {
	*gomock.Call
}

MockInstanceServerGetNetworkForwardAddressesCall wrap *gomock.Call

func (*MockInstanceServerGetNetworkForwardAddressesCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetNetworkForwardAddressesCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetNetworkForwardAddressesCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetNetworkForwardCall

type MockInstanceServerGetNetworkForwardCall struct {
	*gomock.Call
}

MockInstanceServerGetNetworkForwardCall wrap *gomock.Call

func (*MockInstanceServerGetNetworkForwardCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetNetworkForwardCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetNetworkForwardCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetNetworkForwardsCall

type MockInstanceServerGetNetworkForwardsCall struct {
	*gomock.Call
}

MockInstanceServerGetNetworkForwardsCall wrap *gomock.Call

func (*MockInstanceServerGetNetworkForwardsCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetNetworkForwardsCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetNetworkForwardsCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetNetworkLeasesCall

type MockInstanceServerGetNetworkLeasesCall struct {
	*gomock.Call
}

MockInstanceServerGetNetworkLeasesCall wrap *gomock.Call

func (*MockInstanceServerGetNetworkLeasesCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetNetworkLeasesCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetNetworkLeasesCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetNetworkLoadBalancerAddressesCall

type MockInstanceServerGetNetworkLoadBalancerAddressesCall struct {
	*gomock.Call
}

MockInstanceServerGetNetworkLoadBalancerAddressesCall wrap *gomock.Call

func (*MockInstanceServerGetNetworkLoadBalancerAddressesCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetNetworkLoadBalancerAddressesCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetNetworkLoadBalancerAddressesCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetNetworkLoadBalancerCall

type MockInstanceServerGetNetworkLoadBalancerCall struct {
	*gomock.Call
}

MockInstanceServerGetNetworkLoadBalancerCall wrap *gomock.Call

func (*MockInstanceServerGetNetworkLoadBalancerCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetNetworkLoadBalancerCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetNetworkLoadBalancerCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetNetworkLoadBalancersCall

type MockInstanceServerGetNetworkLoadBalancersCall struct {
	*gomock.Call
}

MockInstanceServerGetNetworkLoadBalancersCall wrap *gomock.Call

func (*MockInstanceServerGetNetworkLoadBalancersCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetNetworkLoadBalancersCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetNetworkLoadBalancersCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetNetworkNamesCall

type MockInstanceServerGetNetworkNamesCall struct {
	*gomock.Call
}

MockInstanceServerGetNetworkNamesCall wrap *gomock.Call

func (*MockInstanceServerGetNetworkNamesCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetNetworkNamesCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetNetworkNamesCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetNetworkPeerCall

type MockInstanceServerGetNetworkPeerCall struct {
	*gomock.Call
}

MockInstanceServerGetNetworkPeerCall wrap *gomock.Call

func (*MockInstanceServerGetNetworkPeerCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetNetworkPeerCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetNetworkPeerCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetNetworkPeerNamesCall

type MockInstanceServerGetNetworkPeerNamesCall struct {
	*gomock.Call
}

MockInstanceServerGetNetworkPeerNamesCall wrap *gomock.Call

func (*MockInstanceServerGetNetworkPeerNamesCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetNetworkPeerNamesCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetNetworkPeerNamesCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetNetworkPeersCall

type MockInstanceServerGetNetworkPeersCall struct {
	*gomock.Call
}

MockInstanceServerGetNetworkPeersCall wrap *gomock.Call

func (*MockInstanceServerGetNetworkPeersCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetNetworkPeersCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetNetworkPeersCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetNetworkStateCall

type MockInstanceServerGetNetworkStateCall struct {
	*gomock.Call
}

MockInstanceServerGetNetworkStateCall wrap *gomock.Call

func (*MockInstanceServerGetNetworkStateCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetNetworkStateCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetNetworkStateCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetNetworkZoneCall

type MockInstanceServerGetNetworkZoneCall struct {
	*gomock.Call
}

MockInstanceServerGetNetworkZoneCall wrap *gomock.Call

func (*MockInstanceServerGetNetworkZoneCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetNetworkZoneCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetNetworkZoneCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetNetworkZoneNamesCall

type MockInstanceServerGetNetworkZoneNamesCall struct {
	*gomock.Call
}

MockInstanceServerGetNetworkZoneNamesCall wrap *gomock.Call

func (*MockInstanceServerGetNetworkZoneNamesCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetNetworkZoneNamesCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetNetworkZoneNamesCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetNetworkZoneRecordCall

type MockInstanceServerGetNetworkZoneRecordCall struct {
	*gomock.Call
}

MockInstanceServerGetNetworkZoneRecordCall wrap *gomock.Call

func (*MockInstanceServerGetNetworkZoneRecordCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetNetworkZoneRecordCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetNetworkZoneRecordCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetNetworkZoneRecordNamesCall

type MockInstanceServerGetNetworkZoneRecordNamesCall struct {
	*gomock.Call
}

MockInstanceServerGetNetworkZoneRecordNamesCall wrap *gomock.Call

func (*MockInstanceServerGetNetworkZoneRecordNamesCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetNetworkZoneRecordNamesCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetNetworkZoneRecordNamesCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetNetworkZoneRecordsCall

type MockInstanceServerGetNetworkZoneRecordsCall struct {
	*gomock.Call
}

MockInstanceServerGetNetworkZoneRecordsCall wrap *gomock.Call

func (*MockInstanceServerGetNetworkZoneRecordsCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetNetworkZoneRecordsCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetNetworkZoneRecordsCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetNetworkZonesCall

type MockInstanceServerGetNetworkZonesCall struct {
	*gomock.Call
}

MockInstanceServerGetNetworkZonesCall wrap *gomock.Call

func (*MockInstanceServerGetNetworkZonesCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetNetworkZonesCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetNetworkZonesCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetNetworksCall

type MockInstanceServerGetNetworksCall struct {
	*gomock.Call
}

MockInstanceServerGetNetworksCall wrap *gomock.Call

func (*MockInstanceServerGetNetworksCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetNetworksCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetNetworksCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetOperationCall

type MockInstanceServerGetOperationCall struct {
	*gomock.Call
}

MockInstanceServerGetOperationCall wrap *gomock.Call

func (*MockInstanceServerGetOperationCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetOperationCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetOperationCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetOperationUUIDsCall

type MockInstanceServerGetOperationUUIDsCall struct {
	*gomock.Call
}

MockInstanceServerGetOperationUUIDsCall wrap *gomock.Call

func (*MockInstanceServerGetOperationUUIDsCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetOperationUUIDsCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetOperationUUIDsCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetOperationWaitCall

type MockInstanceServerGetOperationWaitCall struct {
	*gomock.Call
}

MockInstanceServerGetOperationWaitCall wrap *gomock.Call

func (*MockInstanceServerGetOperationWaitCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetOperationWaitCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetOperationWaitCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetOperationWaitSecretCall

type MockInstanceServerGetOperationWaitSecretCall struct {
	*gomock.Call
}

MockInstanceServerGetOperationWaitSecretCall wrap *gomock.Call

func (*MockInstanceServerGetOperationWaitSecretCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetOperationWaitSecretCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetOperationWaitSecretCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetOperationWebsocketCall

type MockInstanceServerGetOperationWebsocketCall struct {
	*gomock.Call
}

MockInstanceServerGetOperationWebsocketCall wrap *gomock.Call

func (*MockInstanceServerGetOperationWebsocketCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetOperationWebsocketCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetOperationWebsocketCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetOperationsAllProjectsCall

type MockInstanceServerGetOperationsAllProjectsCall struct {
	*gomock.Call
}

MockInstanceServerGetOperationsAllProjectsCall wrap *gomock.Call

func (*MockInstanceServerGetOperationsAllProjectsCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetOperationsAllProjectsCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetOperationsAllProjectsCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetOperationsCall

type MockInstanceServerGetOperationsCall struct {
	*gomock.Call
}

MockInstanceServerGetOperationsCall wrap *gomock.Call

func (*MockInstanceServerGetOperationsCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetOperationsCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetOperationsCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetPermissionsCall

type MockInstanceServerGetPermissionsCall struct {
	*gomock.Call
}

MockInstanceServerGetPermissionsCall wrap *gomock.Call

func (*MockInstanceServerGetPermissionsCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetPermissionsCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetPermissionsCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetPermissionsInfoCall

type MockInstanceServerGetPermissionsInfoCall struct {
	*gomock.Call
}

MockInstanceServerGetPermissionsInfoCall wrap *gomock.Call

func (*MockInstanceServerGetPermissionsInfoCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetPermissionsInfoCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetPermissionsInfoCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetPrivateImageCall

type MockInstanceServerGetPrivateImageCall struct {
	*gomock.Call
}

MockInstanceServerGetPrivateImageCall wrap *gomock.Call

func (*MockInstanceServerGetPrivateImageCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetPrivateImageCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetPrivateImageCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetPrivateImageFileCall

type MockInstanceServerGetPrivateImageFileCall struct {
	*gomock.Call
}

MockInstanceServerGetPrivateImageFileCall wrap *gomock.Call

func (*MockInstanceServerGetPrivateImageFileCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetPrivateImageFileCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetPrivateImageFileCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetProfileCall

type MockInstanceServerGetProfileCall struct {
	*gomock.Call
}

MockInstanceServerGetProfileCall wrap *gomock.Call

func (*MockInstanceServerGetProfileCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetProfileCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetProfileCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetProfileNamesCall

type MockInstanceServerGetProfileNamesCall struct {
	*gomock.Call
}

MockInstanceServerGetProfileNamesCall wrap *gomock.Call

func (*MockInstanceServerGetProfileNamesCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetProfileNamesCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetProfileNamesCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetProfilesCall

type MockInstanceServerGetProfilesCall struct {
	*gomock.Call
}

MockInstanceServerGetProfilesCall wrap *gomock.Call

func (*MockInstanceServerGetProfilesCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetProfilesCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetProfilesCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetProjectCall

type MockInstanceServerGetProjectCall struct {
	*gomock.Call
}

MockInstanceServerGetProjectCall wrap *gomock.Call

func (*MockInstanceServerGetProjectCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetProjectCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetProjectCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetProjectNamesCall

type MockInstanceServerGetProjectNamesCall struct {
	*gomock.Call
}

MockInstanceServerGetProjectNamesCall wrap *gomock.Call

func (*MockInstanceServerGetProjectNamesCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetProjectNamesCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetProjectNamesCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetProjectStateCall

type MockInstanceServerGetProjectStateCall struct {
	*gomock.Call
}

MockInstanceServerGetProjectStateCall wrap *gomock.Call

func (*MockInstanceServerGetProjectStateCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetProjectStateCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetProjectStateCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetProjectsCall

type MockInstanceServerGetProjectsCall struct {
	*gomock.Call
}

MockInstanceServerGetProjectsCall wrap *gomock.Call

func (*MockInstanceServerGetProjectsCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetProjectsCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetProjectsCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetServerCall

type MockInstanceServerGetServerCall struct {
	*gomock.Call
}

MockInstanceServerGetServerCall wrap *gomock.Call

func (*MockInstanceServerGetServerCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetServerCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetServerCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetServerResourcesCall

type MockInstanceServerGetServerResourcesCall struct {
	*gomock.Call
}

MockInstanceServerGetServerResourcesCall wrap *gomock.Call

func (*MockInstanceServerGetServerResourcesCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetServerResourcesCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetServerResourcesCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetStoragePoolBucketCall

type MockInstanceServerGetStoragePoolBucketCall struct {
	*gomock.Call
}

MockInstanceServerGetStoragePoolBucketCall wrap *gomock.Call

func (*MockInstanceServerGetStoragePoolBucketCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetStoragePoolBucketCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetStoragePoolBucketCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetStoragePoolBucketKeyCall

type MockInstanceServerGetStoragePoolBucketKeyCall struct {
	*gomock.Call
}

MockInstanceServerGetStoragePoolBucketKeyCall wrap *gomock.Call

func (*MockInstanceServerGetStoragePoolBucketKeyCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetStoragePoolBucketKeyCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetStoragePoolBucketKeyCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetStoragePoolBucketKeyNamesCall

type MockInstanceServerGetStoragePoolBucketKeyNamesCall struct {
	*gomock.Call
}

MockInstanceServerGetStoragePoolBucketKeyNamesCall wrap *gomock.Call

func (*MockInstanceServerGetStoragePoolBucketKeyNamesCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetStoragePoolBucketKeyNamesCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetStoragePoolBucketKeyNamesCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetStoragePoolBucketKeysCall

type MockInstanceServerGetStoragePoolBucketKeysCall struct {
	*gomock.Call
}

MockInstanceServerGetStoragePoolBucketKeysCall wrap *gomock.Call

func (*MockInstanceServerGetStoragePoolBucketKeysCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetStoragePoolBucketKeysCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetStoragePoolBucketKeysCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetStoragePoolBucketNamesCall

type MockInstanceServerGetStoragePoolBucketNamesCall struct {
	*gomock.Call
}

MockInstanceServerGetStoragePoolBucketNamesCall wrap *gomock.Call

func (*MockInstanceServerGetStoragePoolBucketNamesCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetStoragePoolBucketNamesCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetStoragePoolBucketNamesCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetStoragePoolBucketsCall

type MockInstanceServerGetStoragePoolBucketsCall struct {
	*gomock.Call
}

MockInstanceServerGetStoragePoolBucketsCall wrap *gomock.Call

func (*MockInstanceServerGetStoragePoolBucketsCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetStoragePoolBucketsCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetStoragePoolBucketsCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetStoragePoolCall

type MockInstanceServerGetStoragePoolCall struct {
	*gomock.Call
}

MockInstanceServerGetStoragePoolCall wrap *gomock.Call

func (*MockInstanceServerGetStoragePoolCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetStoragePoolCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetStoragePoolCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetStoragePoolNamesCall

type MockInstanceServerGetStoragePoolNamesCall struct {
	*gomock.Call
}

MockInstanceServerGetStoragePoolNamesCall wrap *gomock.Call

func (*MockInstanceServerGetStoragePoolNamesCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetStoragePoolNamesCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetStoragePoolNamesCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetStoragePoolResourcesCall

type MockInstanceServerGetStoragePoolResourcesCall struct {
	*gomock.Call
}

MockInstanceServerGetStoragePoolResourcesCall wrap *gomock.Call

func (*MockInstanceServerGetStoragePoolResourcesCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetStoragePoolResourcesCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetStoragePoolResourcesCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetStoragePoolVolumeBackupCall

type MockInstanceServerGetStoragePoolVolumeBackupCall struct {
	*gomock.Call
}

MockInstanceServerGetStoragePoolVolumeBackupCall wrap *gomock.Call

func (*MockInstanceServerGetStoragePoolVolumeBackupCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetStoragePoolVolumeBackupCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetStoragePoolVolumeBackupCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetStoragePoolVolumeBackupFileCall

type MockInstanceServerGetStoragePoolVolumeBackupFileCall struct {
	*gomock.Call
}

MockInstanceServerGetStoragePoolVolumeBackupFileCall wrap *gomock.Call

func (*MockInstanceServerGetStoragePoolVolumeBackupFileCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetStoragePoolVolumeBackupFileCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetStoragePoolVolumeBackupFileCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetStoragePoolVolumeBackupNamesCall

type MockInstanceServerGetStoragePoolVolumeBackupNamesCall struct {
	*gomock.Call
}

MockInstanceServerGetStoragePoolVolumeBackupNamesCall wrap *gomock.Call

func (*MockInstanceServerGetStoragePoolVolumeBackupNamesCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetStoragePoolVolumeBackupNamesCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetStoragePoolVolumeBackupNamesCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetStoragePoolVolumeBackupsCall

type MockInstanceServerGetStoragePoolVolumeBackupsCall struct {
	*gomock.Call
}

MockInstanceServerGetStoragePoolVolumeBackupsCall wrap *gomock.Call

func (*MockInstanceServerGetStoragePoolVolumeBackupsCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetStoragePoolVolumeBackupsCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetStoragePoolVolumeBackupsCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetStoragePoolVolumeCall

type MockInstanceServerGetStoragePoolVolumeCall struct {
	*gomock.Call
}

MockInstanceServerGetStoragePoolVolumeCall wrap *gomock.Call

func (*MockInstanceServerGetStoragePoolVolumeCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetStoragePoolVolumeCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetStoragePoolVolumeCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetStoragePoolVolumeNamesAllProjectsCall

type MockInstanceServerGetStoragePoolVolumeNamesAllProjectsCall struct {
	*gomock.Call
}

MockInstanceServerGetStoragePoolVolumeNamesAllProjectsCall wrap *gomock.Call

func (*MockInstanceServerGetStoragePoolVolumeNamesAllProjectsCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetStoragePoolVolumeNamesAllProjectsCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetStoragePoolVolumeNamesAllProjectsCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetStoragePoolVolumeNamesCall

type MockInstanceServerGetStoragePoolVolumeNamesCall struct {
	*gomock.Call
}

MockInstanceServerGetStoragePoolVolumeNamesCall wrap *gomock.Call

func (*MockInstanceServerGetStoragePoolVolumeNamesCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetStoragePoolVolumeNamesCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetStoragePoolVolumeNamesCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetStoragePoolVolumeSnapshotCall

type MockInstanceServerGetStoragePoolVolumeSnapshotCall struct {
	*gomock.Call
}

MockInstanceServerGetStoragePoolVolumeSnapshotCall wrap *gomock.Call

func (*MockInstanceServerGetStoragePoolVolumeSnapshotCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetStoragePoolVolumeSnapshotCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetStoragePoolVolumeSnapshotCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetStoragePoolVolumeSnapshotNamesCall

type MockInstanceServerGetStoragePoolVolumeSnapshotNamesCall struct {
	*gomock.Call
}

MockInstanceServerGetStoragePoolVolumeSnapshotNamesCall wrap *gomock.Call

func (*MockInstanceServerGetStoragePoolVolumeSnapshotNamesCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetStoragePoolVolumeSnapshotNamesCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetStoragePoolVolumeSnapshotNamesCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetStoragePoolVolumeSnapshotsCall

type MockInstanceServerGetStoragePoolVolumeSnapshotsCall struct {
	*gomock.Call
}

MockInstanceServerGetStoragePoolVolumeSnapshotsCall wrap *gomock.Call

func (*MockInstanceServerGetStoragePoolVolumeSnapshotsCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetStoragePoolVolumeSnapshotsCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetStoragePoolVolumeSnapshotsCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetStoragePoolVolumeStateCall

type MockInstanceServerGetStoragePoolVolumeStateCall struct {
	*gomock.Call
}

MockInstanceServerGetStoragePoolVolumeStateCall wrap *gomock.Call

func (*MockInstanceServerGetStoragePoolVolumeStateCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetStoragePoolVolumeStateCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetStoragePoolVolumeStateCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetStoragePoolVolumesAllProjectsCall

type MockInstanceServerGetStoragePoolVolumesAllProjectsCall struct {
	*gomock.Call
}

MockInstanceServerGetStoragePoolVolumesAllProjectsCall wrap *gomock.Call

func (*MockInstanceServerGetStoragePoolVolumesAllProjectsCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetStoragePoolVolumesAllProjectsCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetStoragePoolVolumesAllProjectsCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetStoragePoolVolumesCall

type MockInstanceServerGetStoragePoolVolumesCall struct {
	*gomock.Call
}

MockInstanceServerGetStoragePoolVolumesCall wrap *gomock.Call

func (*MockInstanceServerGetStoragePoolVolumesCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetStoragePoolVolumesCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetStoragePoolVolumesCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetStoragePoolVolumesWithFilterAllProjectsCall

type MockInstanceServerGetStoragePoolVolumesWithFilterAllProjectsCall struct {
	*gomock.Call
}

MockInstanceServerGetStoragePoolVolumesWithFilterAllProjectsCall wrap *gomock.Call

func (*MockInstanceServerGetStoragePoolVolumesWithFilterAllProjectsCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetStoragePoolVolumesWithFilterAllProjectsCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetStoragePoolVolumesWithFilterAllProjectsCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetStoragePoolVolumesWithFilterCall

type MockInstanceServerGetStoragePoolVolumesWithFilterCall struct {
	*gomock.Call
}

MockInstanceServerGetStoragePoolVolumesWithFilterCall wrap *gomock.Call

func (*MockInstanceServerGetStoragePoolVolumesWithFilterCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetStoragePoolVolumesWithFilterCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetStoragePoolVolumesWithFilterCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetStoragePoolsCall

type MockInstanceServerGetStoragePoolsCall struct {
	*gomock.Call
}

MockInstanceServerGetStoragePoolsCall wrap *gomock.Call

func (*MockInstanceServerGetStoragePoolsCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetStoragePoolsCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetStoragePoolsCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetVolumesWithFilterAllProjectsCall

type MockInstanceServerGetVolumesWithFilterAllProjectsCall struct {
	*gomock.Call
}

MockInstanceServerGetVolumesWithFilterAllProjectsCall wrap *gomock.Call

func (*MockInstanceServerGetVolumesWithFilterAllProjectsCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetVolumesWithFilterAllProjectsCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetVolumesWithFilterAllProjectsCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetVolumesWithFilterCall

type MockInstanceServerGetVolumesWithFilterCall struct {
	*gomock.Call
}

MockInstanceServerGetVolumesWithFilterCall wrap *gomock.Call

func (*MockInstanceServerGetVolumesWithFilterCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetVolumesWithFilterCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetVolumesWithFilterCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetWarningCall

type MockInstanceServerGetWarningCall struct {
	*gomock.Call
}

MockInstanceServerGetWarningCall wrap *gomock.Call

func (*MockInstanceServerGetWarningCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetWarningCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetWarningCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetWarningUUIDsCall

type MockInstanceServerGetWarningUUIDsCall struct {
	*gomock.Call
}

MockInstanceServerGetWarningUUIDsCall wrap *gomock.Call

func (*MockInstanceServerGetWarningUUIDsCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetWarningUUIDsCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetWarningUUIDsCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerGetWarningsCall

type MockInstanceServerGetWarningsCall struct {
	*gomock.Call
}

MockInstanceServerGetWarningsCall wrap *gomock.Call

func (*MockInstanceServerGetWarningsCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerGetWarningsCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerGetWarningsCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerHasExtensionCall

type MockInstanceServerHasExtensionCall struct {
	*gomock.Call
}

MockInstanceServerHasExtensionCall wrap *gomock.Call

func (*MockInstanceServerHasExtensionCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerHasExtensionCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerHasExtensionCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerIsClusteredCall

type MockInstanceServerIsClusteredCall struct {
	*gomock.Call
}

MockInstanceServerIsClusteredCall wrap *gomock.Call

func (*MockInstanceServerIsClusteredCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerIsClusteredCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerIsClusteredCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerMigrateContainerCall

type MockInstanceServerMigrateContainerCall struct {
	*gomock.Call
}

MockInstanceServerMigrateContainerCall wrap *gomock.Call

func (*MockInstanceServerMigrateContainerCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerMigrateContainerCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerMigrateContainerCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerMigrateContainerSnapshotCall

type MockInstanceServerMigrateContainerSnapshotCall struct {
	*gomock.Call
}

MockInstanceServerMigrateContainerSnapshotCall wrap *gomock.Call

func (*MockInstanceServerMigrateContainerSnapshotCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerMigrateContainerSnapshotCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerMigrateContainerSnapshotCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerMigrateInstanceCall

type MockInstanceServerMigrateInstanceCall struct {
	*gomock.Call
}

MockInstanceServerMigrateInstanceCall wrap *gomock.Call

func (*MockInstanceServerMigrateInstanceCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerMigrateInstanceCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerMigrateInstanceCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerMigrateInstanceSnapshotCall

type MockInstanceServerMigrateInstanceSnapshotCall struct {
	*gomock.Call
}

MockInstanceServerMigrateInstanceSnapshotCall wrap *gomock.Call

func (*MockInstanceServerMigrateInstanceSnapshotCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerMigrateInstanceSnapshotCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerMigrateInstanceSnapshotCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerMigrateStoragePoolVolumeCall

type MockInstanceServerMigrateStoragePoolVolumeCall struct {
	*gomock.Call
}

MockInstanceServerMigrateStoragePoolVolumeCall wrap *gomock.Call

func (*MockInstanceServerMigrateStoragePoolVolumeCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerMigrateStoragePoolVolumeCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerMigrateStoragePoolVolumeCall) Return

Return rewrite *gomock.Call.Return

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) *MockInstanceServerConsoleContainerCall

ConsoleContainer indicates an expected call of ConsoleContainer.

func (*MockInstanceServerMockRecorder) ConsoleInstance

func (mr *MockInstanceServerMockRecorder) ConsoleInstance(arg0, arg1, arg2 any) *MockInstanceServerConsoleInstanceCall

ConsoleInstance indicates an expected call of ConsoleInstance.

func (*MockInstanceServerMockRecorder) ConsoleInstanceDynamic

func (mr *MockInstanceServerMockRecorder) ConsoleInstanceDynamic(arg0, arg1, arg2 any) *MockInstanceServerConsoleInstanceDynamicCall

ConsoleInstanceDynamic indicates an expected call of ConsoleInstanceDynamic.

func (*MockInstanceServerMockRecorder) CopyContainer

func (mr *MockInstanceServerMockRecorder) CopyContainer(arg0, arg1, arg2 any) *MockInstanceServerCopyContainerCall

CopyContainer indicates an expected call of CopyContainer.

func (*MockInstanceServerMockRecorder) CopyContainerSnapshot

func (mr *MockInstanceServerMockRecorder) CopyContainerSnapshot(arg0, arg1, arg2, arg3 any) *MockInstanceServerCopyContainerSnapshotCall

CopyContainerSnapshot indicates an expected call of CopyContainerSnapshot.

func (*MockInstanceServerMockRecorder) CopyImage

func (mr *MockInstanceServerMockRecorder) CopyImage(arg0, arg1, arg2 any) *MockInstanceServerCopyImageCall

CopyImage indicates an expected call of CopyImage.

func (*MockInstanceServerMockRecorder) CopyInstance

func (mr *MockInstanceServerMockRecorder) CopyInstance(arg0, arg1, arg2 any) *MockInstanceServerCopyInstanceCall

CopyInstance indicates an expected call of CopyInstance.

func (*MockInstanceServerMockRecorder) CopyInstanceSnapshot

func (mr *MockInstanceServerMockRecorder) CopyInstanceSnapshot(arg0, arg1, arg2, arg3 any) *MockInstanceServerCopyInstanceSnapshotCall

CopyInstanceSnapshot indicates an expected call of CopyInstanceSnapshot.

func (*MockInstanceServerMockRecorder) CopyStoragePoolVolume

func (mr *MockInstanceServerMockRecorder) CopyStoragePoolVolume(arg0, arg1, arg2, arg3, arg4 any) *MockInstanceServerCopyStoragePoolVolumeCall

CopyStoragePoolVolume indicates an expected call of CopyStoragePoolVolume.

func (*MockInstanceServerMockRecorder) CreateAuthGroup

CreateAuthGroup indicates an expected call of CreateAuthGroup.

func (*MockInstanceServerMockRecorder) CreateCertificate

CreateCertificate indicates an expected call of CreateCertificate.

func (*MockInstanceServerMockRecorder) CreateCertificateToken

CreateCertificateToken indicates an expected call of CreateCertificateToken.

func (*MockInstanceServerMockRecorder) CreateClusterGroup

CreateClusterGroup indicates an expected call of CreateClusterGroup.

func (*MockInstanceServerMockRecorder) CreateClusterMember

CreateClusterMember indicates an expected call of CreateClusterMember.

func (*MockInstanceServerMockRecorder) CreateContainer

CreateContainer indicates an expected call of CreateContainer.

func (*MockInstanceServerMockRecorder) CreateContainerBackup

CreateContainerBackup indicates an expected call of CreateContainerBackup.

func (*MockInstanceServerMockRecorder) CreateContainerFile

func (mr *MockInstanceServerMockRecorder) CreateContainerFile(arg0, arg1, arg2 any) *MockInstanceServerCreateContainerFileCall

CreateContainerFile indicates an expected call of CreateContainerFile.

func (*MockInstanceServerMockRecorder) CreateContainerFromBackup

CreateContainerFromBackup indicates an expected call of CreateContainerFromBackup.

func (*MockInstanceServerMockRecorder) CreateContainerFromImage

func (mr *MockInstanceServerMockRecorder) CreateContainerFromImage(arg0, arg1, arg2 any) *MockInstanceServerCreateContainerFromImageCall

CreateContainerFromImage indicates an expected call of CreateContainerFromImage.

func (*MockInstanceServerMockRecorder) CreateContainerSnapshot

func (mr *MockInstanceServerMockRecorder) CreateContainerSnapshot(arg0, arg1 any) *MockInstanceServerCreateContainerSnapshotCall

CreateContainerSnapshot indicates an expected call of CreateContainerSnapshot.

func (*MockInstanceServerMockRecorder) CreateContainerTemplateFile

func (mr *MockInstanceServerMockRecorder) CreateContainerTemplateFile(arg0, arg1, arg2 any) *MockInstanceServerCreateContainerTemplateFileCall

CreateContainerTemplateFile indicates an expected call of CreateContainerTemplateFile.

func (*MockInstanceServerMockRecorder) CreateIdentityProviderGroup

CreateIdentityProviderGroup indicates an expected call of CreateIdentityProviderGroup.

func (*MockInstanceServerMockRecorder) CreateImage

CreateImage indicates an expected call of CreateImage.

func (*MockInstanceServerMockRecorder) CreateImageAlias

CreateImageAlias indicates an expected call of CreateImageAlias.

func (*MockInstanceServerMockRecorder) CreateImageSecret

CreateImageSecret indicates an expected call of CreateImageSecret.

func (*MockInstanceServerMockRecorder) CreateInstance

CreateInstance indicates an expected call of CreateInstance.

func (*MockInstanceServerMockRecorder) CreateInstanceBackup

CreateInstanceBackup indicates an expected call of CreateInstanceBackup.

func (*MockInstanceServerMockRecorder) CreateInstanceFile

func (mr *MockInstanceServerMockRecorder) CreateInstanceFile(arg0, arg1, arg2 any) *MockInstanceServerCreateInstanceFileCall

CreateInstanceFile indicates an expected call of CreateInstanceFile.

func (*MockInstanceServerMockRecorder) CreateInstanceFromBackup

CreateInstanceFromBackup indicates an expected call of CreateInstanceFromBackup.

func (*MockInstanceServerMockRecorder) CreateInstanceFromImage

func (mr *MockInstanceServerMockRecorder) CreateInstanceFromImage(arg0, arg1, arg2 any) *MockInstanceServerCreateInstanceFromImageCall

CreateInstanceFromImage indicates an expected call of CreateInstanceFromImage.

func (*MockInstanceServerMockRecorder) CreateInstanceSnapshot

CreateInstanceSnapshot indicates an expected call of CreateInstanceSnapshot.

func (*MockInstanceServerMockRecorder) CreateInstanceTemplateFile

func (mr *MockInstanceServerMockRecorder) CreateInstanceTemplateFile(arg0, arg1, arg2 any) *MockInstanceServerCreateInstanceTemplateFileCall

CreateInstanceTemplateFile indicates an expected call of CreateInstanceTemplateFile.

func (*MockInstanceServerMockRecorder) CreateNetwork

CreateNetwork indicates an expected call of CreateNetwork.

func (*MockInstanceServerMockRecorder) CreateNetworkACL

CreateNetworkACL indicates an expected call of CreateNetworkACL.

func (*MockInstanceServerMockRecorder) CreateNetworkForward

CreateNetworkForward indicates an expected call of CreateNetworkForward.

func (*MockInstanceServerMockRecorder) CreateNetworkLoadBalancer

func (mr *MockInstanceServerMockRecorder) CreateNetworkLoadBalancer(arg0, arg1 any) *MockInstanceServerCreateNetworkLoadBalancerCall

CreateNetworkLoadBalancer indicates an expected call of CreateNetworkLoadBalancer.

func (*MockInstanceServerMockRecorder) CreateNetworkPeer

CreateNetworkPeer indicates an expected call of CreateNetworkPeer.

func (*MockInstanceServerMockRecorder) CreateNetworkZone

CreateNetworkZone indicates an expected call of CreateNetworkZone.

func (*MockInstanceServerMockRecorder) CreateNetworkZoneRecord

func (mr *MockInstanceServerMockRecorder) CreateNetworkZoneRecord(arg0, arg1 any) *MockInstanceServerCreateNetworkZoneRecordCall

CreateNetworkZoneRecord indicates an expected call of CreateNetworkZoneRecord.

func (*MockInstanceServerMockRecorder) CreateProfile

CreateProfile indicates an expected call of CreateProfile.

func (*MockInstanceServerMockRecorder) CreateProject

CreateProject indicates an expected call of CreateProject.

func (*MockInstanceServerMockRecorder) CreateStoragePool

CreateStoragePool indicates an expected call of CreateStoragePool.

func (*MockInstanceServerMockRecorder) CreateStoragePoolBucket

func (mr *MockInstanceServerMockRecorder) CreateStoragePoolBucket(arg0, arg1 any) *MockInstanceServerCreateStoragePoolBucketCall

CreateStoragePoolBucket indicates an expected call of CreateStoragePoolBucket.

func (*MockInstanceServerMockRecorder) CreateStoragePoolBucketKey

func (mr *MockInstanceServerMockRecorder) CreateStoragePoolBucketKey(arg0, arg1, arg2 any) *MockInstanceServerCreateStoragePoolBucketKeyCall

CreateStoragePoolBucketKey indicates an expected call of CreateStoragePoolBucketKey.

func (*MockInstanceServerMockRecorder) CreateStoragePoolVolume

func (mr *MockInstanceServerMockRecorder) CreateStoragePoolVolume(arg0, arg1 any) *MockInstanceServerCreateStoragePoolVolumeCall

CreateStoragePoolVolume indicates an expected call of CreateStoragePoolVolume.

func (*MockInstanceServerMockRecorder) CreateStoragePoolVolumeBackup

func (mr *MockInstanceServerMockRecorder) CreateStoragePoolVolumeBackup(arg0, arg1, arg2 any) *MockInstanceServerCreateStoragePoolVolumeBackupCall

CreateStoragePoolVolumeBackup indicates an expected call of CreateStoragePoolVolumeBackup.

func (*MockInstanceServerMockRecorder) CreateStoragePoolVolumeFromBackup

func (mr *MockInstanceServerMockRecorder) CreateStoragePoolVolumeFromBackup(arg0, arg1 any) *MockInstanceServerCreateStoragePoolVolumeFromBackupCall

CreateStoragePoolVolumeFromBackup indicates an expected call of CreateStoragePoolVolumeFromBackup.

func (*MockInstanceServerMockRecorder) CreateStoragePoolVolumeFromISO

func (mr *MockInstanceServerMockRecorder) CreateStoragePoolVolumeFromISO(arg0, arg1 any) *MockInstanceServerCreateStoragePoolVolumeFromISOCall

CreateStoragePoolVolumeFromISO indicates an expected call of CreateStoragePoolVolumeFromISO.

func (*MockInstanceServerMockRecorder) CreateStoragePoolVolumeSnapshot

func (mr *MockInstanceServerMockRecorder) CreateStoragePoolVolumeSnapshot(arg0, arg1, arg2, arg3 any) *MockInstanceServerCreateStoragePoolVolumeSnapshotCall

CreateStoragePoolVolumeSnapshot indicates an expected call of CreateStoragePoolVolumeSnapshot.

func (*MockInstanceServerMockRecorder) DeleteAuthGroup

DeleteAuthGroup indicates an expected call of DeleteAuthGroup.

func (*MockInstanceServerMockRecorder) DeleteCertificate

DeleteCertificate indicates an expected call of DeleteCertificate.

func (*MockInstanceServerMockRecorder) DeleteClusterGroup

DeleteClusterGroup indicates an expected call of DeleteClusterGroup.

func (*MockInstanceServerMockRecorder) DeleteClusterMember

DeleteClusterMember indicates an expected call of DeleteClusterMember.

func (*MockInstanceServerMockRecorder) DeleteContainer

DeleteContainer indicates an expected call of DeleteContainer.

func (*MockInstanceServerMockRecorder) DeleteContainerBackup

DeleteContainerBackup indicates an expected call of DeleteContainerBackup.

func (*MockInstanceServerMockRecorder) DeleteContainerConsoleLog

func (mr *MockInstanceServerMockRecorder) DeleteContainerConsoleLog(arg0, arg1 any) *MockInstanceServerDeleteContainerConsoleLogCall

DeleteContainerConsoleLog indicates an expected call of DeleteContainerConsoleLog.

func (*MockInstanceServerMockRecorder) DeleteContainerFile

DeleteContainerFile indicates an expected call of DeleteContainerFile.

func (*MockInstanceServerMockRecorder) DeleteContainerLogfile

DeleteContainerLogfile indicates an expected call of DeleteContainerLogfile.

func (*MockInstanceServerMockRecorder) DeleteContainerSnapshot

func (mr *MockInstanceServerMockRecorder) DeleteContainerSnapshot(arg0, arg1 any) *MockInstanceServerDeleteContainerSnapshotCall

DeleteContainerSnapshot indicates an expected call of DeleteContainerSnapshot.

func (*MockInstanceServerMockRecorder) DeleteContainerTemplateFile

func (mr *MockInstanceServerMockRecorder) DeleteContainerTemplateFile(arg0, arg1 any) *MockInstanceServerDeleteContainerTemplateFileCall

DeleteContainerTemplateFile indicates an expected call of DeleteContainerTemplateFile.

func (*MockInstanceServerMockRecorder) DeleteIdentityProviderGroup

DeleteIdentityProviderGroup indicates an expected call of DeleteIdentityProviderGroup.

func (*MockInstanceServerMockRecorder) DeleteImage

DeleteImage indicates an expected call of DeleteImage.

func (*MockInstanceServerMockRecorder) DeleteImageAlias

DeleteImageAlias indicates an expected call of DeleteImageAlias.

func (*MockInstanceServerMockRecorder) DeleteInstance

DeleteInstance indicates an expected call of DeleteInstance.

func (*MockInstanceServerMockRecorder) DeleteInstanceBackup

DeleteInstanceBackup indicates an expected call of DeleteInstanceBackup.

func (*MockInstanceServerMockRecorder) DeleteInstanceConsoleLog

func (mr *MockInstanceServerMockRecorder) DeleteInstanceConsoleLog(arg0, arg1 any) *MockInstanceServerDeleteInstanceConsoleLogCall

DeleteInstanceConsoleLog indicates an expected call of DeleteInstanceConsoleLog.

func (*MockInstanceServerMockRecorder) DeleteInstanceFile

DeleteInstanceFile indicates an expected call of DeleteInstanceFile.

func (*MockInstanceServerMockRecorder) DeleteInstanceLogfile

DeleteInstanceLogfile indicates an expected call of DeleteInstanceLogfile.

func (*MockInstanceServerMockRecorder) DeleteInstanceSnapshot

DeleteInstanceSnapshot indicates an expected call of DeleteInstanceSnapshot.

func (*MockInstanceServerMockRecorder) DeleteInstanceTemplateFile

func (mr *MockInstanceServerMockRecorder) DeleteInstanceTemplateFile(arg0, arg1 any) *MockInstanceServerDeleteInstanceTemplateFileCall

DeleteInstanceTemplateFile indicates an expected call of DeleteInstanceTemplateFile.

func (*MockInstanceServerMockRecorder) DeleteNetwork

DeleteNetwork indicates an expected call of DeleteNetwork.

func (*MockInstanceServerMockRecorder) DeleteNetworkACL

DeleteNetworkACL indicates an expected call of DeleteNetworkACL.

func (*MockInstanceServerMockRecorder) DeleteNetworkForward

DeleteNetworkForward indicates an expected call of DeleteNetworkForward.

func (*MockInstanceServerMockRecorder) DeleteNetworkLoadBalancer

func (mr *MockInstanceServerMockRecorder) DeleteNetworkLoadBalancer(arg0, arg1 any) *MockInstanceServerDeleteNetworkLoadBalancerCall

DeleteNetworkLoadBalancer indicates an expected call of DeleteNetworkLoadBalancer.

func (*MockInstanceServerMockRecorder) DeleteNetworkPeer

DeleteNetworkPeer indicates an expected call of DeleteNetworkPeer.

func (*MockInstanceServerMockRecorder) DeleteNetworkZone

DeleteNetworkZone indicates an expected call of DeleteNetworkZone.

func (*MockInstanceServerMockRecorder) DeleteNetworkZoneRecord

func (mr *MockInstanceServerMockRecorder) DeleteNetworkZoneRecord(arg0, arg1 any) *MockInstanceServerDeleteNetworkZoneRecordCall

DeleteNetworkZoneRecord indicates an expected call of DeleteNetworkZoneRecord.

func (*MockInstanceServerMockRecorder) DeleteOperation

DeleteOperation indicates an expected call of DeleteOperation.

func (*MockInstanceServerMockRecorder) DeleteProfile

DeleteProfile indicates an expected call of DeleteProfile.

func (*MockInstanceServerMockRecorder) DeleteProject

DeleteProject indicates an expected call of DeleteProject.

func (*MockInstanceServerMockRecorder) DeleteStoragePool

DeleteStoragePool indicates an expected call of DeleteStoragePool.

func (*MockInstanceServerMockRecorder) DeleteStoragePoolBucket

func (mr *MockInstanceServerMockRecorder) DeleteStoragePoolBucket(arg0, arg1 any) *MockInstanceServerDeleteStoragePoolBucketCall

DeleteStoragePoolBucket indicates an expected call of DeleteStoragePoolBucket.

func (*MockInstanceServerMockRecorder) DeleteStoragePoolBucketKey

func (mr *MockInstanceServerMockRecorder) DeleteStoragePoolBucketKey(arg0, arg1, arg2 any) *MockInstanceServerDeleteStoragePoolBucketKeyCall

DeleteStoragePoolBucketKey indicates an expected call of DeleteStoragePoolBucketKey.

func (*MockInstanceServerMockRecorder) DeleteStoragePoolVolume

func (mr *MockInstanceServerMockRecorder) DeleteStoragePoolVolume(arg0, arg1, arg2 any) *MockInstanceServerDeleteStoragePoolVolumeCall

DeleteStoragePoolVolume indicates an expected call of DeleteStoragePoolVolume.

func (*MockInstanceServerMockRecorder) DeleteStoragePoolVolumeBackup

func (mr *MockInstanceServerMockRecorder) DeleteStoragePoolVolumeBackup(arg0, arg1, arg2 any) *MockInstanceServerDeleteStoragePoolVolumeBackupCall

DeleteStoragePoolVolumeBackup indicates an expected call of DeleteStoragePoolVolumeBackup.

func (*MockInstanceServerMockRecorder) DeleteStoragePoolVolumeSnapshot

func (mr *MockInstanceServerMockRecorder) DeleteStoragePoolVolumeSnapshot(arg0, arg1, arg2, arg3 any) *MockInstanceServerDeleteStoragePoolVolumeSnapshotCall

DeleteStoragePoolVolumeSnapshot indicates an expected call of DeleteStoragePoolVolumeSnapshot.

func (*MockInstanceServerMockRecorder) DeleteWarning

DeleteWarning indicates an expected call of DeleteWarning.

func (*MockInstanceServerMockRecorder) Disconnect

Disconnect indicates an expected call of Disconnect.

func (*MockInstanceServerMockRecorder) DoHTTP

DoHTTP indicates an expected call of DoHTTP.

func (*MockInstanceServerMockRecorder) ExecContainer

func (mr *MockInstanceServerMockRecorder) ExecContainer(arg0, arg1, arg2 any) *MockInstanceServerExecContainerCall

ExecContainer indicates an expected call of ExecContainer.

func (*MockInstanceServerMockRecorder) ExecInstance

func (mr *MockInstanceServerMockRecorder) ExecInstance(arg0, arg1, arg2 any) *MockInstanceServerExecInstanceCall

ExecInstance indicates an expected call of ExecInstance.

func (*MockInstanceServerMockRecorder) ExportImage

ExportImage indicates an expected call of ExportImage.

func (*MockInstanceServerMockRecorder) GetAuthGroup

GetAuthGroup indicates an expected call of GetAuthGroup.

func (*MockInstanceServerMockRecorder) GetAuthGroupNames

GetAuthGroupNames indicates an expected call of GetAuthGroupNames.

func (*MockInstanceServerMockRecorder) GetAuthGroups

GetAuthGroups indicates an expected call of GetAuthGroups.

func (*MockInstanceServerMockRecorder) GetCertificate

GetCertificate indicates an expected call of GetCertificate.

func (*MockInstanceServerMockRecorder) GetCertificateFingerprints

GetCertificateFingerprints indicates an expected call of GetCertificateFingerprints.

func (*MockInstanceServerMockRecorder) GetCertificates

GetCertificates indicates an expected call of GetCertificates.

func (*MockInstanceServerMockRecorder) GetCluster

GetCluster indicates an expected call of GetCluster.

func (*MockInstanceServerMockRecorder) GetClusterGroup

GetClusterGroup indicates an expected call of GetClusterGroup.

func (*MockInstanceServerMockRecorder) GetClusterGroupNames

GetClusterGroupNames indicates an expected call of GetClusterGroupNames.

func (*MockInstanceServerMockRecorder) GetClusterGroups

GetClusterGroups indicates an expected call of GetClusterGroups.

func (*MockInstanceServerMockRecorder) GetClusterMember

GetClusterMember indicates an expected call of GetClusterMember.

func (*MockInstanceServerMockRecorder) GetClusterMemberNames

GetClusterMemberNames indicates an expected call of GetClusterMemberNames.

func (*MockInstanceServerMockRecorder) GetClusterMemberState

GetClusterMemberState indicates an expected call of GetClusterMemberState.

func (*MockInstanceServerMockRecorder) GetClusterMembers

GetClusterMembers indicates an expected call of GetClusterMembers.

func (*MockInstanceServerMockRecorder) GetConnectionInfo

GetConnectionInfo indicates an expected call of GetConnectionInfo.

func (*MockInstanceServerMockRecorder) GetContainer

GetContainer indicates an expected call of GetContainer.

func (*MockInstanceServerMockRecorder) GetContainerBackup

GetContainerBackup indicates an expected call of GetContainerBackup.

func (*MockInstanceServerMockRecorder) GetContainerBackupFile

func (mr *MockInstanceServerMockRecorder) GetContainerBackupFile(arg0, arg1, arg2 any) *MockInstanceServerGetContainerBackupFileCall

GetContainerBackupFile indicates an expected call of GetContainerBackupFile.

func (*MockInstanceServerMockRecorder) GetContainerBackupNames

GetContainerBackupNames indicates an expected call of GetContainerBackupNames.

func (*MockInstanceServerMockRecorder) GetContainerBackups

GetContainerBackups indicates an expected call of GetContainerBackups.

func (*MockInstanceServerMockRecorder) GetContainerConsoleLog

GetContainerConsoleLog indicates an expected call of GetContainerConsoleLog.

func (*MockInstanceServerMockRecorder) GetContainerFile

GetContainerFile indicates an expected call of GetContainerFile.

func (*MockInstanceServerMockRecorder) GetContainerLogfile

GetContainerLogfile indicates an expected call of GetContainerLogfile.

func (*MockInstanceServerMockRecorder) GetContainerLogfiles

GetContainerLogfiles indicates an expected call of GetContainerLogfiles.

func (*MockInstanceServerMockRecorder) GetContainerMetadata

GetContainerMetadata indicates an expected call of GetContainerMetadata.

func (*MockInstanceServerMockRecorder) GetContainerNames

GetContainerNames indicates an expected call of GetContainerNames.

func (*MockInstanceServerMockRecorder) GetContainerSnapshot

GetContainerSnapshot indicates an expected call of GetContainerSnapshot.

func (*MockInstanceServerMockRecorder) GetContainerSnapshotNames

GetContainerSnapshotNames indicates an expected call of GetContainerSnapshotNames.

func (*MockInstanceServerMockRecorder) GetContainerSnapshots

GetContainerSnapshots indicates an expected call of GetContainerSnapshots.

func (*MockInstanceServerMockRecorder) GetContainerState

GetContainerState indicates an expected call of GetContainerState.

func (*MockInstanceServerMockRecorder) GetContainerTemplateFile

func (mr *MockInstanceServerMockRecorder) GetContainerTemplateFile(arg0, arg1 any) *MockInstanceServerGetContainerTemplateFileCall

GetContainerTemplateFile indicates an expected call of GetContainerTemplateFile.

func (*MockInstanceServerMockRecorder) GetContainerTemplateFiles

GetContainerTemplateFiles indicates an expected call of GetContainerTemplateFiles.

func (*MockInstanceServerMockRecorder) GetContainers

GetContainers indicates an expected call of GetContainers.

func (*MockInstanceServerMockRecorder) GetContainersFull

GetContainersFull indicates an expected call of GetContainersFull.

func (*MockInstanceServerMockRecorder) GetCurrentIdentityInfo

GetCurrentIdentityInfo indicates an expected call of GetCurrentIdentityInfo.

func (*MockInstanceServerMockRecorder) GetEvents

GetEvents indicates an expected call of GetEvents.

func (*MockInstanceServerMockRecorder) GetEventsAllProjects

GetEventsAllProjects indicates an expected call of GetEventsAllProjects.

func (*MockInstanceServerMockRecorder) GetHTTPClient

GetHTTPClient indicates an expected call of GetHTTPClient.

func (*MockInstanceServerMockRecorder) GetIdentities

GetIdentities indicates an expected call of GetIdentities.

func (*MockInstanceServerMockRecorder) GetIdentitiesByAuthenticationMethod

GetIdentitiesByAuthenticationMethod indicates an expected call of GetIdentitiesByAuthenticationMethod.

func (*MockInstanceServerMockRecorder) GetIdentity

GetIdentity indicates an expected call of GetIdentity.

func (*MockInstanceServerMockRecorder) GetIdentityAuthenticationMethodsIdentifiers

GetIdentityAuthenticationMethodsIdentifiers indicates an expected call of GetIdentityAuthenticationMethodsIdentifiers.

func (*MockInstanceServerMockRecorder) GetIdentityIdentifiersByAuthenticationMethod

func (mr *MockInstanceServerMockRecorder) GetIdentityIdentifiersByAuthenticationMethod(arg0 any) *MockInstanceServerGetIdentityIdentifiersByAuthenticationMethodCall

GetIdentityIdentifiersByAuthenticationMethod indicates an expected call of GetIdentityIdentifiersByAuthenticationMethod.

func (*MockInstanceServerMockRecorder) GetIdentityProviderGroup

GetIdentityProviderGroup indicates an expected call of GetIdentityProviderGroup.

func (*MockInstanceServerMockRecorder) GetIdentityProviderGroupNames

GetIdentityProviderGroupNames indicates an expected call of GetIdentityProviderGroupNames.

func (*MockInstanceServerMockRecorder) GetIdentityProviderGroups

GetIdentityProviderGroups indicates an expected call of GetIdentityProviderGroups.

func (*MockInstanceServerMockRecorder) GetImage

GetImage indicates an expected call of GetImage.

func (*MockInstanceServerMockRecorder) GetImageAlias

GetImageAlias indicates an expected call of GetImageAlias.

func (*MockInstanceServerMockRecorder) GetImageAliasArchitectures

func (mr *MockInstanceServerMockRecorder) GetImageAliasArchitectures(arg0, arg1 any) *MockInstanceServerGetImageAliasArchitecturesCall

GetImageAliasArchitectures indicates an expected call of GetImageAliasArchitectures.

func (*MockInstanceServerMockRecorder) GetImageAliasNames

GetImageAliasNames indicates an expected call of GetImageAliasNames.

func (*MockInstanceServerMockRecorder) GetImageAliasType

GetImageAliasType indicates an expected call of GetImageAliasType.

func (*MockInstanceServerMockRecorder) GetImageAliases

GetImageAliases indicates an expected call of GetImageAliases.

func (*MockInstanceServerMockRecorder) GetImageFile

GetImageFile indicates an expected call of GetImageFile.

func (*MockInstanceServerMockRecorder) GetImageFingerprints

GetImageFingerprints indicates an expected call of GetImageFingerprints.

func (*MockInstanceServerMockRecorder) GetImageSecret

GetImageSecret indicates an expected call of GetImageSecret.

func (*MockInstanceServerMockRecorder) GetImages

GetImages indicates an expected call of GetImages.

func (*MockInstanceServerMockRecorder) GetImagesWithFilter

GetImagesWithFilter indicates an expected call of GetImagesWithFilter.

func (*MockInstanceServerMockRecorder) GetInstance

GetInstance indicates an expected call of GetInstance.

func (*MockInstanceServerMockRecorder) GetInstanceBackup

GetInstanceBackup indicates an expected call of GetInstanceBackup.

func (*MockInstanceServerMockRecorder) GetInstanceBackupFile

func (mr *MockInstanceServerMockRecorder) GetInstanceBackupFile(arg0, arg1, arg2 any) *MockInstanceServerGetInstanceBackupFileCall

GetInstanceBackupFile indicates an expected call of GetInstanceBackupFile.

func (*MockInstanceServerMockRecorder) GetInstanceBackupNames

GetInstanceBackupNames indicates an expected call of GetInstanceBackupNames.

func (*MockInstanceServerMockRecorder) GetInstanceBackups

GetInstanceBackups indicates an expected call of GetInstanceBackups.

func (*MockInstanceServerMockRecorder) GetInstanceConsoleLog

GetInstanceConsoleLog indicates an expected call of GetInstanceConsoleLog.

func (*MockInstanceServerMockRecorder) GetInstanceFile

GetInstanceFile indicates an expected call of GetInstanceFile.

func (*MockInstanceServerMockRecorder) GetInstanceFileSFTP

GetInstanceFileSFTP indicates an expected call of GetInstanceFileSFTP.

func (*MockInstanceServerMockRecorder) GetInstanceFileSFTPConn

GetInstanceFileSFTPConn indicates an expected call of GetInstanceFileSFTPConn.

func (*MockInstanceServerMockRecorder) GetInstanceFull

GetInstanceFull indicates an expected call of GetInstanceFull.

func (*MockInstanceServerMockRecorder) GetInstanceLogfile

GetInstanceLogfile indicates an expected call of GetInstanceLogfile.

func (*MockInstanceServerMockRecorder) GetInstanceLogfiles

GetInstanceLogfiles indicates an expected call of GetInstanceLogfiles.

func (*MockInstanceServerMockRecorder) GetInstanceMetadata

GetInstanceMetadata indicates an expected call of GetInstanceMetadata.

func (*MockInstanceServerMockRecorder) GetInstanceNames

GetInstanceNames indicates an expected call of GetInstanceNames.

func (*MockInstanceServerMockRecorder) GetInstanceNamesAllProjects

GetInstanceNamesAllProjects indicates an expected call of GetInstanceNamesAllProjects.

func (*MockInstanceServerMockRecorder) GetInstanceSnapshot

GetInstanceSnapshot indicates an expected call of GetInstanceSnapshot.

func (*MockInstanceServerMockRecorder) GetInstanceSnapshotNames

GetInstanceSnapshotNames indicates an expected call of GetInstanceSnapshotNames.

func (*MockInstanceServerMockRecorder) GetInstanceSnapshots

GetInstanceSnapshots indicates an expected call of GetInstanceSnapshots.

func (*MockInstanceServerMockRecorder) GetInstanceState

GetInstanceState indicates an expected call of GetInstanceState.

func (*MockInstanceServerMockRecorder) GetInstanceTemplateFile

func (mr *MockInstanceServerMockRecorder) GetInstanceTemplateFile(arg0, arg1 any) *MockInstanceServerGetInstanceTemplateFileCall

GetInstanceTemplateFile indicates an expected call of GetInstanceTemplateFile.

func (*MockInstanceServerMockRecorder) GetInstanceTemplateFiles

GetInstanceTemplateFiles indicates an expected call of GetInstanceTemplateFiles.

func (*MockInstanceServerMockRecorder) GetInstanceUEFIVars

GetInstanceUEFIVars indicates an expected call of GetInstanceUEFIVars.

func (*MockInstanceServerMockRecorder) GetInstances

GetInstances indicates an expected call of GetInstances.

func (*MockInstanceServerMockRecorder) GetInstancesAllProjects

GetInstancesAllProjects indicates an expected call of GetInstancesAllProjects.

func (*MockInstanceServerMockRecorder) GetInstancesAllProjectsWithFilter

func (mr *MockInstanceServerMockRecorder) GetInstancesAllProjectsWithFilter(arg0, arg1 any) *MockInstanceServerGetInstancesAllProjectsWithFilterCall

GetInstancesAllProjectsWithFilter indicates an expected call of GetInstancesAllProjectsWithFilter.

func (*MockInstanceServerMockRecorder) GetInstancesFull

GetInstancesFull indicates an expected call of GetInstancesFull.

func (*MockInstanceServerMockRecorder) GetInstancesFullAllProjects

GetInstancesFullAllProjects indicates an expected call of GetInstancesFullAllProjects.

func (*MockInstanceServerMockRecorder) GetInstancesFullAllProjectsWithFilter

func (mr *MockInstanceServerMockRecorder) GetInstancesFullAllProjectsWithFilter(arg0, arg1 any) *MockInstanceServerGetInstancesFullAllProjectsWithFilterCall

GetInstancesFullAllProjectsWithFilter indicates an expected call of GetInstancesFullAllProjectsWithFilter.

func (*MockInstanceServerMockRecorder) GetInstancesFullWithFilter

func (mr *MockInstanceServerMockRecorder) GetInstancesFullWithFilter(arg0, arg1 any) *MockInstanceServerGetInstancesFullWithFilterCall

GetInstancesFullWithFilter indicates an expected call of GetInstancesFullWithFilter.

func (*MockInstanceServerMockRecorder) GetInstancesWithFilter

GetInstancesWithFilter indicates an expected call of GetInstancesWithFilter.

func (*MockInstanceServerMockRecorder) GetMetrics

GetMetrics indicates an expected call of GetMetrics.

func (*MockInstanceServerMockRecorder) GetNetwork

GetNetwork indicates an expected call of GetNetwork.

func (*MockInstanceServerMockRecorder) GetNetworkACL

GetNetworkACL indicates an expected call of GetNetworkACL.

func (*MockInstanceServerMockRecorder) GetNetworkACLLogfile

GetNetworkACLLogfile indicates an expected call of GetNetworkACLLogfile.

func (*MockInstanceServerMockRecorder) GetNetworkACLNames

GetNetworkACLNames indicates an expected call of GetNetworkACLNames.

func (*MockInstanceServerMockRecorder) GetNetworkACLs

GetNetworkACLs indicates an expected call of GetNetworkACLs.

func (*MockInstanceServerMockRecorder) GetNetworkAllocations

GetNetworkAllocations indicates an expected call of GetNetworkAllocations.

func (*MockInstanceServerMockRecorder) GetNetworkForward

GetNetworkForward indicates an expected call of GetNetworkForward.

func (*MockInstanceServerMockRecorder) GetNetworkForwardAddresses

GetNetworkForwardAddresses indicates an expected call of GetNetworkForwardAddresses.

func (*MockInstanceServerMockRecorder) GetNetworkForwards

GetNetworkForwards indicates an expected call of GetNetworkForwards.

func (*MockInstanceServerMockRecorder) GetNetworkLeases

GetNetworkLeases indicates an expected call of GetNetworkLeases.

func (*MockInstanceServerMockRecorder) GetNetworkLoadBalancer

GetNetworkLoadBalancer indicates an expected call of GetNetworkLoadBalancer.

func (*MockInstanceServerMockRecorder) GetNetworkLoadBalancerAddresses

GetNetworkLoadBalancerAddresses indicates an expected call of GetNetworkLoadBalancerAddresses.

func (*MockInstanceServerMockRecorder) GetNetworkLoadBalancers

GetNetworkLoadBalancers indicates an expected call of GetNetworkLoadBalancers.

func (*MockInstanceServerMockRecorder) GetNetworkNames

GetNetworkNames indicates an expected call of GetNetworkNames.

func (*MockInstanceServerMockRecorder) GetNetworkPeer

GetNetworkPeer indicates an expected call of GetNetworkPeer.

func (*MockInstanceServerMockRecorder) GetNetworkPeerNames

GetNetworkPeerNames indicates an expected call of GetNetworkPeerNames.

func (*MockInstanceServerMockRecorder) GetNetworkPeers

GetNetworkPeers indicates an expected call of GetNetworkPeers.

func (*MockInstanceServerMockRecorder) GetNetworkState

GetNetworkState indicates an expected call of GetNetworkState.

func (*MockInstanceServerMockRecorder) GetNetworkZone

GetNetworkZone indicates an expected call of GetNetworkZone.

func (*MockInstanceServerMockRecorder) GetNetworkZoneNames

GetNetworkZoneNames indicates an expected call of GetNetworkZoneNames.

func (*MockInstanceServerMockRecorder) GetNetworkZoneRecord

GetNetworkZoneRecord indicates an expected call of GetNetworkZoneRecord.

func (*MockInstanceServerMockRecorder) GetNetworkZoneRecordNames

GetNetworkZoneRecordNames indicates an expected call of GetNetworkZoneRecordNames.

func (*MockInstanceServerMockRecorder) GetNetworkZoneRecords

GetNetworkZoneRecords indicates an expected call of GetNetworkZoneRecords.

func (*MockInstanceServerMockRecorder) GetNetworkZones

GetNetworkZones indicates an expected call of GetNetworkZones.

func (*MockInstanceServerMockRecorder) GetNetworks

GetNetworks indicates an expected call of GetNetworks.

func (*MockInstanceServerMockRecorder) GetOperation

GetOperation indicates an expected call of GetOperation.

func (*MockInstanceServerMockRecorder) GetOperationUUIDs

GetOperationUUIDs indicates an expected call of GetOperationUUIDs.

func (*MockInstanceServerMockRecorder) GetOperationWait

GetOperationWait indicates an expected call of GetOperationWait.

func (*MockInstanceServerMockRecorder) GetOperationWaitSecret

func (mr *MockInstanceServerMockRecorder) GetOperationWaitSecret(arg0, arg1, arg2 any) *MockInstanceServerGetOperationWaitSecretCall

GetOperationWaitSecret indicates an expected call of GetOperationWaitSecret.

func (*MockInstanceServerMockRecorder) GetOperationWebsocket

GetOperationWebsocket indicates an expected call of GetOperationWebsocket.

func (*MockInstanceServerMockRecorder) GetOperations

GetOperations indicates an expected call of GetOperations.

func (*MockInstanceServerMockRecorder) GetOperationsAllProjects

GetOperationsAllProjects indicates an expected call of GetOperationsAllProjects.

func (*MockInstanceServerMockRecorder) GetPermissions

GetPermissions indicates an expected call of GetPermissions.

func (*MockInstanceServerMockRecorder) GetPermissionsInfo

GetPermissionsInfo indicates an expected call of GetPermissionsInfo.

func (*MockInstanceServerMockRecorder) GetPrivateImage

GetPrivateImage indicates an expected call of GetPrivateImage.

func (*MockInstanceServerMockRecorder) GetPrivateImageFile

func (mr *MockInstanceServerMockRecorder) GetPrivateImageFile(arg0, arg1, arg2 any) *MockInstanceServerGetPrivateImageFileCall

GetPrivateImageFile indicates an expected call of GetPrivateImageFile.

func (*MockInstanceServerMockRecorder) GetProfile

GetProfile indicates an expected call of GetProfile.

func (*MockInstanceServerMockRecorder) GetProfileNames

GetProfileNames indicates an expected call of GetProfileNames.

func (*MockInstanceServerMockRecorder) GetProfiles

GetProfiles indicates an expected call of GetProfiles.

func (*MockInstanceServerMockRecorder) GetProject

GetProject indicates an expected call of GetProject.

func (*MockInstanceServerMockRecorder) GetProjectNames

GetProjectNames indicates an expected call of GetProjectNames.

func (*MockInstanceServerMockRecorder) GetProjectState

GetProjectState indicates an expected call of GetProjectState.

func (*MockInstanceServerMockRecorder) GetProjects

GetProjects indicates an expected call of GetProjects.

func (*MockInstanceServerMockRecorder) GetServer

GetServer indicates an expected call of GetServer.

func (*MockInstanceServerMockRecorder) GetServerResources

GetServerResources indicates an expected call of GetServerResources.

func (*MockInstanceServerMockRecorder) GetStoragePool

GetStoragePool indicates an expected call of GetStoragePool.

func (*MockInstanceServerMockRecorder) GetStoragePoolBucket

GetStoragePoolBucket indicates an expected call of GetStoragePoolBucket.

func (*MockInstanceServerMockRecorder) GetStoragePoolBucketKey

func (mr *MockInstanceServerMockRecorder) GetStoragePoolBucketKey(arg0, arg1, arg2 any) *MockInstanceServerGetStoragePoolBucketKeyCall

GetStoragePoolBucketKey indicates an expected call of GetStoragePoolBucketKey.

func (*MockInstanceServerMockRecorder) GetStoragePoolBucketKeyNames

func (mr *MockInstanceServerMockRecorder) GetStoragePoolBucketKeyNames(arg0, arg1 any) *MockInstanceServerGetStoragePoolBucketKeyNamesCall

GetStoragePoolBucketKeyNames indicates an expected call of GetStoragePoolBucketKeyNames.

func (*MockInstanceServerMockRecorder) GetStoragePoolBucketKeys

func (mr *MockInstanceServerMockRecorder) GetStoragePoolBucketKeys(arg0, arg1 any) *MockInstanceServerGetStoragePoolBucketKeysCall

GetStoragePoolBucketKeys indicates an expected call of GetStoragePoolBucketKeys.

func (*MockInstanceServerMockRecorder) GetStoragePoolBucketNames

GetStoragePoolBucketNames indicates an expected call of GetStoragePoolBucketNames.

func (*MockInstanceServerMockRecorder) GetStoragePoolBuckets

GetStoragePoolBuckets indicates an expected call of GetStoragePoolBuckets.

func (*MockInstanceServerMockRecorder) GetStoragePoolNames

GetStoragePoolNames indicates an expected call of GetStoragePoolNames.

func (*MockInstanceServerMockRecorder) GetStoragePoolResources

GetStoragePoolResources indicates an expected call of GetStoragePoolResources.

func (*MockInstanceServerMockRecorder) GetStoragePoolVolume

func (mr *MockInstanceServerMockRecorder) GetStoragePoolVolume(arg0, arg1, arg2 any) *MockInstanceServerGetStoragePoolVolumeCall

GetStoragePoolVolume indicates an expected call of GetStoragePoolVolume.

func (*MockInstanceServerMockRecorder) GetStoragePoolVolumeBackup

func (mr *MockInstanceServerMockRecorder) GetStoragePoolVolumeBackup(arg0, arg1, arg2 any) *MockInstanceServerGetStoragePoolVolumeBackupCall

GetStoragePoolVolumeBackup indicates an expected call of GetStoragePoolVolumeBackup.

func (*MockInstanceServerMockRecorder) GetStoragePoolVolumeBackupFile

func (mr *MockInstanceServerMockRecorder) GetStoragePoolVolumeBackupFile(arg0, arg1, arg2, arg3 any) *MockInstanceServerGetStoragePoolVolumeBackupFileCall

GetStoragePoolVolumeBackupFile indicates an expected call of GetStoragePoolVolumeBackupFile.

func (*MockInstanceServerMockRecorder) GetStoragePoolVolumeBackupNames

func (mr *MockInstanceServerMockRecorder) GetStoragePoolVolumeBackupNames(arg0, arg1 any) *MockInstanceServerGetStoragePoolVolumeBackupNamesCall

GetStoragePoolVolumeBackupNames indicates an expected call of GetStoragePoolVolumeBackupNames.

func (*MockInstanceServerMockRecorder) GetStoragePoolVolumeBackups

func (mr *MockInstanceServerMockRecorder) GetStoragePoolVolumeBackups(arg0, arg1 any) *MockInstanceServerGetStoragePoolVolumeBackupsCall

GetStoragePoolVolumeBackups indicates an expected call of GetStoragePoolVolumeBackups.

func (*MockInstanceServerMockRecorder) GetStoragePoolVolumeNames

GetStoragePoolVolumeNames indicates an expected call of GetStoragePoolVolumeNames.

func (*MockInstanceServerMockRecorder) GetStoragePoolVolumeNamesAllProjects

GetStoragePoolVolumeNamesAllProjects indicates an expected call of GetStoragePoolVolumeNamesAllProjects.

func (*MockInstanceServerMockRecorder) GetStoragePoolVolumeSnapshot

func (mr *MockInstanceServerMockRecorder) GetStoragePoolVolumeSnapshot(arg0, arg1, arg2, arg3 any) *MockInstanceServerGetStoragePoolVolumeSnapshotCall

GetStoragePoolVolumeSnapshot indicates an expected call of GetStoragePoolVolumeSnapshot.

func (*MockInstanceServerMockRecorder) GetStoragePoolVolumeSnapshotNames

func (mr *MockInstanceServerMockRecorder) GetStoragePoolVolumeSnapshotNames(arg0, arg1, arg2 any) *MockInstanceServerGetStoragePoolVolumeSnapshotNamesCall

GetStoragePoolVolumeSnapshotNames indicates an expected call of GetStoragePoolVolumeSnapshotNames.

func (*MockInstanceServerMockRecorder) GetStoragePoolVolumeSnapshots

func (mr *MockInstanceServerMockRecorder) GetStoragePoolVolumeSnapshots(arg0, arg1, arg2 any) *MockInstanceServerGetStoragePoolVolumeSnapshotsCall

GetStoragePoolVolumeSnapshots indicates an expected call of GetStoragePoolVolumeSnapshots.

func (*MockInstanceServerMockRecorder) GetStoragePoolVolumeState

func (mr *MockInstanceServerMockRecorder) GetStoragePoolVolumeState(arg0, arg1, arg2 any) *MockInstanceServerGetStoragePoolVolumeStateCall

GetStoragePoolVolumeState indicates an expected call of GetStoragePoolVolumeState.

func (*MockInstanceServerMockRecorder) GetStoragePoolVolumes

GetStoragePoolVolumes indicates an expected call of GetStoragePoolVolumes.

func (*MockInstanceServerMockRecorder) GetStoragePoolVolumesAllProjects

GetStoragePoolVolumesAllProjects indicates an expected call of GetStoragePoolVolumesAllProjects.

func (*MockInstanceServerMockRecorder) GetStoragePoolVolumesWithFilter

func (mr *MockInstanceServerMockRecorder) GetStoragePoolVolumesWithFilter(arg0, arg1 any) *MockInstanceServerGetStoragePoolVolumesWithFilterCall

GetStoragePoolVolumesWithFilter indicates an expected call of GetStoragePoolVolumesWithFilter.

func (*MockInstanceServerMockRecorder) GetStoragePoolVolumesWithFilterAllProjects

func (mr *MockInstanceServerMockRecorder) GetStoragePoolVolumesWithFilterAllProjects(arg0, arg1 any) *MockInstanceServerGetStoragePoolVolumesWithFilterAllProjectsCall

GetStoragePoolVolumesWithFilterAllProjects indicates an expected call of GetStoragePoolVolumesWithFilterAllProjects.

func (*MockInstanceServerMockRecorder) GetStoragePools

GetStoragePools indicates an expected call of GetStoragePools.

func (*MockInstanceServerMockRecorder) GetVolumesWithFilter

GetVolumesWithFilter indicates an expected call of GetVolumesWithFilter.

func (*MockInstanceServerMockRecorder) GetVolumesWithFilterAllProjects

GetVolumesWithFilterAllProjects indicates an expected call of GetVolumesWithFilterAllProjects.

func (*MockInstanceServerMockRecorder) GetWarning

GetWarning indicates an expected call of GetWarning.

func (*MockInstanceServerMockRecorder) GetWarningUUIDs

GetWarningUUIDs indicates an expected call of GetWarningUUIDs.

func (*MockInstanceServerMockRecorder) GetWarnings

GetWarnings indicates an expected call of GetWarnings.

func (*MockInstanceServerMockRecorder) HasExtension

HasExtension indicates an expected call of HasExtension.

func (*MockInstanceServerMockRecorder) IsClustered

IsClustered indicates an expected call of IsClustered.

func (*MockInstanceServerMockRecorder) MigrateContainer

MigrateContainer indicates an expected call of MigrateContainer.

func (*MockInstanceServerMockRecorder) MigrateContainerSnapshot

func (mr *MockInstanceServerMockRecorder) MigrateContainerSnapshot(arg0, arg1, arg2 any) *MockInstanceServerMigrateContainerSnapshotCall

MigrateContainerSnapshot indicates an expected call of MigrateContainerSnapshot.

func (*MockInstanceServerMockRecorder) MigrateInstance

MigrateInstance indicates an expected call of MigrateInstance.

func (*MockInstanceServerMockRecorder) MigrateInstanceSnapshot

func (mr *MockInstanceServerMockRecorder) MigrateInstanceSnapshot(arg0, arg1, arg2 any) *MockInstanceServerMigrateInstanceSnapshotCall

MigrateInstanceSnapshot indicates an expected call of MigrateInstanceSnapshot.

func (*MockInstanceServerMockRecorder) MigrateStoragePoolVolume

func (mr *MockInstanceServerMockRecorder) MigrateStoragePoolVolume(arg0, arg1 any) *MockInstanceServerMigrateStoragePoolVolumeCall

MigrateStoragePoolVolume indicates an expected call of MigrateStoragePoolVolume.

func (*MockInstanceServerMockRecorder) MoveStoragePoolVolume

func (mr *MockInstanceServerMockRecorder) MoveStoragePoolVolume(arg0, arg1, arg2, arg3, arg4 any) *MockInstanceServerMoveStoragePoolVolumeCall

MoveStoragePoolVolume indicates an expected call of MoveStoragePoolVolume.

func (*MockInstanceServerMockRecorder) RawOperation

func (mr *MockInstanceServerMockRecorder) RawOperation(arg0, arg1, arg2, arg3 any) *MockInstanceServerRawOperationCall

RawOperation indicates an expected call of RawOperation.

func (*MockInstanceServerMockRecorder) RawQuery

func (mr *MockInstanceServerMockRecorder) RawQuery(arg0, arg1, arg2, arg3 any) *MockInstanceServerRawQueryCall

RawQuery indicates an expected call of RawQuery.

func (*MockInstanceServerMockRecorder) RawWebsocket

RawWebsocket indicates an expected call of RawWebsocket.

func (*MockInstanceServerMockRecorder) RebuildInstance

RebuildInstance indicates an expected call of RebuildInstance.

func (*MockInstanceServerMockRecorder) RebuildInstanceFromImage

func (mr *MockInstanceServerMockRecorder) RebuildInstanceFromImage(arg0, arg1, arg2, arg3 any) *MockInstanceServerRebuildInstanceFromImageCall

RebuildInstanceFromImage indicates an expected call of RebuildInstanceFromImage.

func (*MockInstanceServerMockRecorder) RefreshImage

RefreshImage indicates an expected call of RefreshImage.

func (*MockInstanceServerMockRecorder) RenameAuthGroup

RenameAuthGroup indicates an expected call of RenameAuthGroup.

func (*MockInstanceServerMockRecorder) RenameClusterGroup

RenameClusterGroup indicates an expected call of RenameClusterGroup.

func (*MockInstanceServerMockRecorder) RenameClusterMember

RenameClusterMember indicates an expected call of RenameClusterMember.

func (*MockInstanceServerMockRecorder) RenameContainer

RenameContainer indicates an expected call of RenameContainer.

func (*MockInstanceServerMockRecorder) RenameContainerBackup

func (mr *MockInstanceServerMockRecorder) RenameContainerBackup(arg0, arg1, arg2 any) *MockInstanceServerRenameContainerBackupCall

RenameContainerBackup indicates an expected call of RenameContainerBackup.

func (*MockInstanceServerMockRecorder) RenameContainerSnapshot

func (mr *MockInstanceServerMockRecorder) RenameContainerSnapshot(arg0, arg1, arg2 any) *MockInstanceServerRenameContainerSnapshotCall

RenameContainerSnapshot indicates an expected call of RenameContainerSnapshot.

func (*MockInstanceServerMockRecorder) RenameIdentityProviderGroup

func (mr *MockInstanceServerMockRecorder) RenameIdentityProviderGroup(arg0, arg1 any) *MockInstanceServerRenameIdentityProviderGroupCall

RenameIdentityProviderGroup indicates an expected call of RenameIdentityProviderGroup.

func (*MockInstanceServerMockRecorder) RenameImageAlias

RenameImageAlias indicates an expected call of RenameImageAlias.

func (*MockInstanceServerMockRecorder) RenameInstance

RenameInstance indicates an expected call of RenameInstance.

func (*MockInstanceServerMockRecorder) RenameInstanceBackup

func (mr *MockInstanceServerMockRecorder) RenameInstanceBackup(arg0, arg1, arg2 any) *MockInstanceServerRenameInstanceBackupCall

RenameInstanceBackup indicates an expected call of RenameInstanceBackup.

func (*MockInstanceServerMockRecorder) RenameInstanceSnapshot

func (mr *MockInstanceServerMockRecorder) RenameInstanceSnapshot(arg0, arg1, arg2 any) *MockInstanceServerRenameInstanceSnapshotCall

RenameInstanceSnapshot indicates an expected call of RenameInstanceSnapshot.

func (*MockInstanceServerMockRecorder) RenameNetwork

RenameNetwork indicates an expected call of RenameNetwork.

func (*MockInstanceServerMockRecorder) RenameNetworkACL

RenameNetworkACL indicates an expected call of RenameNetworkACL.

func (*MockInstanceServerMockRecorder) RenameProfile

RenameProfile indicates an expected call of RenameProfile.

func (*MockInstanceServerMockRecorder) RenameProject

RenameProject indicates an expected call of RenameProject.

func (*MockInstanceServerMockRecorder) RenameStoragePoolVolume

func (mr *MockInstanceServerMockRecorder) RenameStoragePoolVolume(arg0, arg1, arg2, arg3 any) *MockInstanceServerRenameStoragePoolVolumeCall

RenameStoragePoolVolume indicates an expected call of RenameStoragePoolVolume.

func (*MockInstanceServerMockRecorder) RenameStoragePoolVolumeBackup

func (mr *MockInstanceServerMockRecorder) RenameStoragePoolVolumeBackup(arg0, arg1, arg2, arg3 any) *MockInstanceServerRenameStoragePoolVolumeBackupCall

RenameStoragePoolVolumeBackup indicates an expected call of RenameStoragePoolVolumeBackup.

func (*MockInstanceServerMockRecorder) RenameStoragePoolVolumeSnapshot

func (mr *MockInstanceServerMockRecorder) RenameStoragePoolVolumeSnapshot(arg0, arg1, arg2, arg3, arg4 any) *MockInstanceServerRenameStoragePoolVolumeSnapshotCall

RenameStoragePoolVolumeSnapshot indicates an expected call of RenameStoragePoolVolumeSnapshot.

func (*MockInstanceServerMockRecorder) RequireAuthenticated

RequireAuthenticated indicates an expected call of RequireAuthenticated.

func (*MockInstanceServerMockRecorder) SendEvent

SendEvent indicates an expected call of SendEvent.

func (*MockInstanceServerMockRecorder) SetContainerMetadata

func (mr *MockInstanceServerMockRecorder) SetContainerMetadata(arg0, arg1, arg2 any) *MockInstanceServerSetContainerMetadataCall

SetContainerMetadata indicates an expected call of SetContainerMetadata.

func (*MockInstanceServerMockRecorder) UpdateAuthGroup

func (mr *MockInstanceServerMockRecorder) UpdateAuthGroup(arg0, arg1, arg2 any) *MockInstanceServerUpdateAuthGroupCall

UpdateAuthGroup indicates an expected call of UpdateAuthGroup.

func (*MockInstanceServerMockRecorder) UpdateCertificate

func (mr *MockInstanceServerMockRecorder) UpdateCertificate(arg0, arg1, arg2 any) *MockInstanceServerUpdateCertificateCall

UpdateCertificate indicates an expected call of UpdateCertificate.

func (*MockInstanceServerMockRecorder) UpdateCluster

UpdateCluster indicates an expected call of UpdateCluster.

func (*MockInstanceServerMockRecorder) UpdateClusterCertificate

func (mr *MockInstanceServerMockRecorder) UpdateClusterCertificate(arg0, arg1 any) *MockInstanceServerUpdateClusterCertificateCall

UpdateClusterCertificate indicates an expected call of UpdateClusterCertificate.

func (*MockInstanceServerMockRecorder) UpdateClusterGroup

func (mr *MockInstanceServerMockRecorder) UpdateClusterGroup(arg0, arg1, arg2 any) *MockInstanceServerUpdateClusterGroupCall

UpdateClusterGroup indicates an expected call of UpdateClusterGroup.

func (*MockInstanceServerMockRecorder) UpdateClusterMember

func (mr *MockInstanceServerMockRecorder) UpdateClusterMember(arg0, arg1, arg2 any) *MockInstanceServerUpdateClusterMemberCall

UpdateClusterMember indicates an expected call of UpdateClusterMember.

func (*MockInstanceServerMockRecorder) UpdateClusterMemberState

func (mr *MockInstanceServerMockRecorder) UpdateClusterMemberState(arg0, arg1 any) *MockInstanceServerUpdateClusterMemberStateCall

UpdateClusterMemberState indicates an expected call of UpdateClusterMemberState.

func (*MockInstanceServerMockRecorder) UpdateContainer

func (mr *MockInstanceServerMockRecorder) UpdateContainer(arg0, arg1, arg2 any) *MockInstanceServerUpdateContainerCall

UpdateContainer indicates an expected call of UpdateContainer.

func (*MockInstanceServerMockRecorder) UpdateContainerSnapshot

func (mr *MockInstanceServerMockRecorder) UpdateContainerSnapshot(arg0, arg1, arg2, arg3 any) *MockInstanceServerUpdateContainerSnapshotCall

UpdateContainerSnapshot indicates an expected call of UpdateContainerSnapshot.

func (*MockInstanceServerMockRecorder) UpdateContainerState

func (mr *MockInstanceServerMockRecorder) UpdateContainerState(arg0, arg1, arg2 any) *MockInstanceServerUpdateContainerStateCall

UpdateContainerState indicates an expected call of UpdateContainerState.

func (*MockInstanceServerMockRecorder) UpdateContainerTemplateFile

func (mr *MockInstanceServerMockRecorder) UpdateContainerTemplateFile(arg0, arg1, arg2 any) *MockInstanceServerUpdateContainerTemplateFileCall

UpdateContainerTemplateFile indicates an expected call of UpdateContainerTemplateFile.

func (*MockInstanceServerMockRecorder) UpdateIdentity

func (mr *MockInstanceServerMockRecorder) UpdateIdentity(arg0, arg1, arg2, arg3 any) *MockInstanceServerUpdateIdentityCall

UpdateIdentity indicates an expected call of UpdateIdentity.

func (*MockInstanceServerMockRecorder) UpdateIdentityProviderGroup

func (mr *MockInstanceServerMockRecorder) UpdateIdentityProviderGroup(arg0, arg1, arg2 any) *MockInstanceServerUpdateIdentityProviderGroupCall

UpdateIdentityProviderGroup indicates an expected call of UpdateIdentityProviderGroup.

func (*MockInstanceServerMockRecorder) UpdateImage

func (mr *MockInstanceServerMockRecorder) UpdateImage(arg0, arg1, arg2 any) *MockInstanceServerUpdateImageCall

UpdateImage indicates an expected call of UpdateImage.

func (*MockInstanceServerMockRecorder) UpdateImageAlias

func (mr *MockInstanceServerMockRecorder) UpdateImageAlias(arg0, arg1, arg2 any) *MockInstanceServerUpdateImageAliasCall

UpdateImageAlias indicates an expected call of UpdateImageAlias.

func (*MockInstanceServerMockRecorder) UpdateInstance

func (mr *MockInstanceServerMockRecorder) UpdateInstance(arg0, arg1, arg2 any) *MockInstanceServerUpdateInstanceCall

UpdateInstance indicates an expected call of UpdateInstance.

func (*MockInstanceServerMockRecorder) UpdateInstanceMetadata

func (mr *MockInstanceServerMockRecorder) UpdateInstanceMetadata(arg0, arg1, arg2 any) *MockInstanceServerUpdateInstanceMetadataCall

UpdateInstanceMetadata indicates an expected call of UpdateInstanceMetadata.

func (*MockInstanceServerMockRecorder) UpdateInstanceSnapshot

func (mr *MockInstanceServerMockRecorder) UpdateInstanceSnapshot(arg0, arg1, arg2, arg3 any) *MockInstanceServerUpdateInstanceSnapshotCall

UpdateInstanceSnapshot indicates an expected call of UpdateInstanceSnapshot.

func (*MockInstanceServerMockRecorder) UpdateInstanceState

func (mr *MockInstanceServerMockRecorder) UpdateInstanceState(arg0, arg1, arg2 any) *MockInstanceServerUpdateInstanceStateCall

UpdateInstanceState indicates an expected call of UpdateInstanceState.

func (*MockInstanceServerMockRecorder) UpdateInstanceUEFIVars

func (mr *MockInstanceServerMockRecorder) UpdateInstanceUEFIVars(arg0, arg1, arg2 any) *MockInstanceServerUpdateInstanceUEFIVarsCall

UpdateInstanceUEFIVars indicates an expected call of UpdateInstanceUEFIVars.

func (*MockInstanceServerMockRecorder) UpdateInstances

UpdateInstances indicates an expected call of UpdateInstances.

func (*MockInstanceServerMockRecorder) UpdateNetwork

func (mr *MockInstanceServerMockRecorder) UpdateNetwork(arg0, arg1, arg2 any) *MockInstanceServerUpdateNetworkCall

UpdateNetwork indicates an expected call of UpdateNetwork.

func (*MockInstanceServerMockRecorder) UpdateNetworkACL

func (mr *MockInstanceServerMockRecorder) UpdateNetworkACL(arg0, arg1, arg2 any) *MockInstanceServerUpdateNetworkACLCall

UpdateNetworkACL indicates an expected call of UpdateNetworkACL.

func (*MockInstanceServerMockRecorder) UpdateNetworkForward

func (mr *MockInstanceServerMockRecorder) UpdateNetworkForward(arg0, arg1, arg2, arg3 any) *MockInstanceServerUpdateNetworkForwardCall

UpdateNetworkForward indicates an expected call of UpdateNetworkForward.

func (*MockInstanceServerMockRecorder) UpdateNetworkLoadBalancer

func (mr *MockInstanceServerMockRecorder) UpdateNetworkLoadBalancer(arg0, arg1, arg2, arg3 any) *MockInstanceServerUpdateNetworkLoadBalancerCall

UpdateNetworkLoadBalancer indicates an expected call of UpdateNetworkLoadBalancer.

func (*MockInstanceServerMockRecorder) UpdateNetworkPeer

func (mr *MockInstanceServerMockRecorder) UpdateNetworkPeer(arg0, arg1, arg2, arg3 any) *MockInstanceServerUpdateNetworkPeerCall

UpdateNetworkPeer indicates an expected call of UpdateNetworkPeer.

func (*MockInstanceServerMockRecorder) UpdateNetworkZone

func (mr *MockInstanceServerMockRecorder) UpdateNetworkZone(arg0, arg1, arg2 any) *MockInstanceServerUpdateNetworkZoneCall

UpdateNetworkZone indicates an expected call of UpdateNetworkZone.

func (*MockInstanceServerMockRecorder) UpdateNetworkZoneRecord

func (mr *MockInstanceServerMockRecorder) UpdateNetworkZoneRecord(arg0, arg1, arg2, arg3 any) *MockInstanceServerUpdateNetworkZoneRecordCall

UpdateNetworkZoneRecord indicates an expected call of UpdateNetworkZoneRecord.

func (*MockInstanceServerMockRecorder) UpdateProfile

func (mr *MockInstanceServerMockRecorder) UpdateProfile(arg0, arg1, arg2 any) *MockInstanceServerUpdateProfileCall

UpdateProfile indicates an expected call of UpdateProfile.

func (*MockInstanceServerMockRecorder) UpdateProject

func (mr *MockInstanceServerMockRecorder) UpdateProject(arg0, arg1, arg2 any) *MockInstanceServerUpdateProjectCall

UpdateProject indicates an expected call of UpdateProject.

func (*MockInstanceServerMockRecorder) UpdateServer

UpdateServer indicates an expected call of UpdateServer.

func (*MockInstanceServerMockRecorder) UpdateStoragePool

func (mr *MockInstanceServerMockRecorder) UpdateStoragePool(arg0, arg1, arg2 any) *MockInstanceServerUpdateStoragePoolCall

UpdateStoragePool indicates an expected call of UpdateStoragePool.

func (*MockInstanceServerMockRecorder) UpdateStoragePoolBucket

func (mr *MockInstanceServerMockRecorder) UpdateStoragePoolBucket(arg0, arg1, arg2, arg3 any) *MockInstanceServerUpdateStoragePoolBucketCall

UpdateStoragePoolBucket indicates an expected call of UpdateStoragePoolBucket.

func (*MockInstanceServerMockRecorder) UpdateStoragePoolBucketKey

func (mr *MockInstanceServerMockRecorder) UpdateStoragePoolBucketKey(arg0, arg1, arg2, arg3, arg4 any) *MockInstanceServerUpdateStoragePoolBucketKeyCall

UpdateStoragePoolBucketKey indicates an expected call of UpdateStoragePoolBucketKey.

func (*MockInstanceServerMockRecorder) UpdateStoragePoolVolume

func (mr *MockInstanceServerMockRecorder) UpdateStoragePoolVolume(arg0, arg1, arg2, arg3, arg4 any) *MockInstanceServerUpdateStoragePoolVolumeCall

UpdateStoragePoolVolume indicates an expected call of UpdateStoragePoolVolume.

func (*MockInstanceServerMockRecorder) UpdateStoragePoolVolumeSnapshot

func (mr *MockInstanceServerMockRecorder) UpdateStoragePoolVolumeSnapshot(arg0, arg1, arg2, arg3, arg4, arg5 any) *MockInstanceServerUpdateStoragePoolVolumeSnapshotCall

UpdateStoragePoolVolumeSnapshot indicates an expected call of UpdateStoragePoolVolumeSnapshot.

func (*MockInstanceServerMockRecorder) UpdateWarning

func (mr *MockInstanceServerMockRecorder) UpdateWarning(arg0, arg1, arg2 any) *MockInstanceServerUpdateWarningCall

UpdateWarning indicates an expected call of UpdateWarning.

func (*MockInstanceServerMockRecorder) UseProject

UseProject indicates an expected call of UseProject.

func (*MockInstanceServerMockRecorder) UseTarget

UseTarget indicates an expected call of UseTarget.

type MockInstanceServerMoveStoragePoolVolumeCall

type MockInstanceServerMoveStoragePoolVolumeCall struct {
	*gomock.Call
}

MockInstanceServerMoveStoragePoolVolumeCall wrap *gomock.Call

func (*MockInstanceServerMoveStoragePoolVolumeCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerMoveStoragePoolVolumeCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerMoveStoragePoolVolumeCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerRawOperationCall

type MockInstanceServerRawOperationCall struct {
	*gomock.Call
}

MockInstanceServerRawOperationCall wrap *gomock.Call

func (*MockInstanceServerRawOperationCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerRawOperationCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerRawOperationCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerRawQueryCall

type MockInstanceServerRawQueryCall struct {
	*gomock.Call
}

MockInstanceServerRawQueryCall wrap *gomock.Call

func (*MockInstanceServerRawQueryCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerRawQueryCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerRawQueryCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerRawWebsocketCall

type MockInstanceServerRawWebsocketCall struct {
	*gomock.Call
}

MockInstanceServerRawWebsocketCall wrap *gomock.Call

func (*MockInstanceServerRawWebsocketCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerRawWebsocketCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerRawWebsocketCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerRebuildInstanceCall

type MockInstanceServerRebuildInstanceCall struct {
	*gomock.Call
}

MockInstanceServerRebuildInstanceCall wrap *gomock.Call

func (*MockInstanceServerRebuildInstanceCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerRebuildInstanceCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerRebuildInstanceCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerRebuildInstanceFromImageCall

type MockInstanceServerRebuildInstanceFromImageCall struct {
	*gomock.Call
}

MockInstanceServerRebuildInstanceFromImageCall wrap *gomock.Call

func (*MockInstanceServerRebuildInstanceFromImageCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerRebuildInstanceFromImageCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerRebuildInstanceFromImageCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerRefreshImageCall

type MockInstanceServerRefreshImageCall struct {
	*gomock.Call
}

MockInstanceServerRefreshImageCall wrap *gomock.Call

func (*MockInstanceServerRefreshImageCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerRefreshImageCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerRefreshImageCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerRenameAuthGroupCall

type MockInstanceServerRenameAuthGroupCall struct {
	*gomock.Call
}

MockInstanceServerRenameAuthGroupCall wrap *gomock.Call

func (*MockInstanceServerRenameAuthGroupCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerRenameAuthGroupCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerRenameAuthGroupCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerRenameClusterGroupCall

type MockInstanceServerRenameClusterGroupCall struct {
	*gomock.Call
}

MockInstanceServerRenameClusterGroupCall wrap *gomock.Call

func (*MockInstanceServerRenameClusterGroupCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerRenameClusterGroupCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerRenameClusterGroupCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerRenameClusterMemberCall

type MockInstanceServerRenameClusterMemberCall struct {
	*gomock.Call
}

MockInstanceServerRenameClusterMemberCall wrap *gomock.Call

func (*MockInstanceServerRenameClusterMemberCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerRenameClusterMemberCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerRenameClusterMemberCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerRenameContainerBackupCall

type MockInstanceServerRenameContainerBackupCall struct {
	*gomock.Call
}

MockInstanceServerRenameContainerBackupCall wrap *gomock.Call

func (*MockInstanceServerRenameContainerBackupCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerRenameContainerBackupCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerRenameContainerBackupCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerRenameContainerCall

type MockInstanceServerRenameContainerCall struct {
	*gomock.Call
}

MockInstanceServerRenameContainerCall wrap *gomock.Call

func (*MockInstanceServerRenameContainerCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerRenameContainerCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerRenameContainerCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerRenameContainerSnapshotCall

type MockInstanceServerRenameContainerSnapshotCall struct {
	*gomock.Call
}

MockInstanceServerRenameContainerSnapshotCall wrap *gomock.Call

func (*MockInstanceServerRenameContainerSnapshotCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerRenameContainerSnapshotCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerRenameContainerSnapshotCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerRenameIdentityProviderGroupCall

type MockInstanceServerRenameIdentityProviderGroupCall struct {
	*gomock.Call
}

MockInstanceServerRenameIdentityProviderGroupCall wrap *gomock.Call

func (*MockInstanceServerRenameIdentityProviderGroupCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerRenameIdentityProviderGroupCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerRenameIdentityProviderGroupCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerRenameImageAliasCall

type MockInstanceServerRenameImageAliasCall struct {
	*gomock.Call
}

MockInstanceServerRenameImageAliasCall wrap *gomock.Call

func (*MockInstanceServerRenameImageAliasCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerRenameImageAliasCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerRenameImageAliasCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerRenameInstanceBackupCall

type MockInstanceServerRenameInstanceBackupCall struct {
	*gomock.Call
}

MockInstanceServerRenameInstanceBackupCall wrap *gomock.Call

func (*MockInstanceServerRenameInstanceBackupCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerRenameInstanceBackupCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerRenameInstanceBackupCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerRenameInstanceCall

type MockInstanceServerRenameInstanceCall struct {
	*gomock.Call
}

MockInstanceServerRenameInstanceCall wrap *gomock.Call

func (*MockInstanceServerRenameInstanceCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerRenameInstanceCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerRenameInstanceCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerRenameInstanceSnapshotCall

type MockInstanceServerRenameInstanceSnapshotCall struct {
	*gomock.Call
}

MockInstanceServerRenameInstanceSnapshotCall wrap *gomock.Call

func (*MockInstanceServerRenameInstanceSnapshotCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerRenameInstanceSnapshotCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerRenameInstanceSnapshotCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerRenameNetworkACLCall

type MockInstanceServerRenameNetworkACLCall struct {
	*gomock.Call
}

MockInstanceServerRenameNetworkACLCall wrap *gomock.Call

func (*MockInstanceServerRenameNetworkACLCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerRenameNetworkACLCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerRenameNetworkACLCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerRenameNetworkCall

type MockInstanceServerRenameNetworkCall struct {
	*gomock.Call
}

MockInstanceServerRenameNetworkCall wrap *gomock.Call

func (*MockInstanceServerRenameNetworkCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerRenameNetworkCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerRenameNetworkCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerRenameProfileCall

type MockInstanceServerRenameProfileCall struct {
	*gomock.Call
}

MockInstanceServerRenameProfileCall wrap *gomock.Call

func (*MockInstanceServerRenameProfileCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerRenameProfileCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerRenameProfileCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerRenameProjectCall

type MockInstanceServerRenameProjectCall struct {
	*gomock.Call
}

MockInstanceServerRenameProjectCall wrap *gomock.Call

func (*MockInstanceServerRenameProjectCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerRenameProjectCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerRenameProjectCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerRenameStoragePoolVolumeBackupCall

type MockInstanceServerRenameStoragePoolVolumeBackupCall struct {
	*gomock.Call
}

MockInstanceServerRenameStoragePoolVolumeBackupCall wrap *gomock.Call

func (*MockInstanceServerRenameStoragePoolVolumeBackupCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerRenameStoragePoolVolumeBackupCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerRenameStoragePoolVolumeBackupCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerRenameStoragePoolVolumeCall

type MockInstanceServerRenameStoragePoolVolumeCall struct {
	*gomock.Call
}

MockInstanceServerRenameStoragePoolVolumeCall wrap *gomock.Call

func (*MockInstanceServerRenameStoragePoolVolumeCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerRenameStoragePoolVolumeCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerRenameStoragePoolVolumeCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerRenameStoragePoolVolumeSnapshotCall

type MockInstanceServerRenameStoragePoolVolumeSnapshotCall struct {
	*gomock.Call
}

MockInstanceServerRenameStoragePoolVolumeSnapshotCall wrap *gomock.Call

func (*MockInstanceServerRenameStoragePoolVolumeSnapshotCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerRenameStoragePoolVolumeSnapshotCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerRenameStoragePoolVolumeSnapshotCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerRequireAuthenticatedCall

type MockInstanceServerRequireAuthenticatedCall struct {
	*gomock.Call
}

MockInstanceServerRequireAuthenticatedCall wrap *gomock.Call

func (*MockInstanceServerRequireAuthenticatedCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerRequireAuthenticatedCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerRequireAuthenticatedCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerSendEventCall

type MockInstanceServerSendEventCall struct {
	*gomock.Call
}

MockInstanceServerSendEventCall wrap *gomock.Call

func (*MockInstanceServerSendEventCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerSendEventCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerSendEventCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerSetContainerMetadataCall

type MockInstanceServerSetContainerMetadataCall struct {
	*gomock.Call
}

MockInstanceServerSetContainerMetadataCall wrap *gomock.Call

func (*MockInstanceServerSetContainerMetadataCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerSetContainerMetadataCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerSetContainerMetadataCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerUpdateAuthGroupCall

type MockInstanceServerUpdateAuthGroupCall struct {
	*gomock.Call
}

MockInstanceServerUpdateAuthGroupCall wrap *gomock.Call

func (*MockInstanceServerUpdateAuthGroupCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerUpdateAuthGroupCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerUpdateAuthGroupCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerUpdateCertificateCall

type MockInstanceServerUpdateCertificateCall struct {
	*gomock.Call
}

MockInstanceServerUpdateCertificateCall wrap *gomock.Call

func (*MockInstanceServerUpdateCertificateCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerUpdateCertificateCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerUpdateCertificateCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerUpdateClusterCall

type MockInstanceServerUpdateClusterCall struct {
	*gomock.Call
}

MockInstanceServerUpdateClusterCall wrap *gomock.Call

func (*MockInstanceServerUpdateClusterCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerUpdateClusterCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerUpdateClusterCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerUpdateClusterCertificateCall

type MockInstanceServerUpdateClusterCertificateCall struct {
	*gomock.Call
}

MockInstanceServerUpdateClusterCertificateCall wrap *gomock.Call

func (*MockInstanceServerUpdateClusterCertificateCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerUpdateClusterCertificateCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerUpdateClusterCertificateCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerUpdateClusterGroupCall

type MockInstanceServerUpdateClusterGroupCall struct {
	*gomock.Call
}

MockInstanceServerUpdateClusterGroupCall wrap *gomock.Call

func (*MockInstanceServerUpdateClusterGroupCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerUpdateClusterGroupCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerUpdateClusterGroupCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerUpdateClusterMemberCall

type MockInstanceServerUpdateClusterMemberCall struct {
	*gomock.Call
}

MockInstanceServerUpdateClusterMemberCall wrap *gomock.Call

func (*MockInstanceServerUpdateClusterMemberCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerUpdateClusterMemberCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerUpdateClusterMemberCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerUpdateClusterMemberStateCall

type MockInstanceServerUpdateClusterMemberStateCall struct {
	*gomock.Call
}

MockInstanceServerUpdateClusterMemberStateCall wrap *gomock.Call

func (*MockInstanceServerUpdateClusterMemberStateCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerUpdateClusterMemberStateCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerUpdateClusterMemberStateCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerUpdateContainerCall

type MockInstanceServerUpdateContainerCall struct {
	*gomock.Call
}

MockInstanceServerUpdateContainerCall wrap *gomock.Call

func (*MockInstanceServerUpdateContainerCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerUpdateContainerCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerUpdateContainerCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerUpdateContainerSnapshotCall

type MockInstanceServerUpdateContainerSnapshotCall struct {
	*gomock.Call
}

MockInstanceServerUpdateContainerSnapshotCall wrap *gomock.Call

func (*MockInstanceServerUpdateContainerSnapshotCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerUpdateContainerSnapshotCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerUpdateContainerSnapshotCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerUpdateContainerStateCall

type MockInstanceServerUpdateContainerStateCall struct {
	*gomock.Call
}

MockInstanceServerUpdateContainerStateCall wrap *gomock.Call

func (*MockInstanceServerUpdateContainerStateCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerUpdateContainerStateCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerUpdateContainerStateCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerUpdateContainerTemplateFileCall

type MockInstanceServerUpdateContainerTemplateFileCall struct {
	*gomock.Call
}

MockInstanceServerUpdateContainerTemplateFileCall wrap *gomock.Call

func (*MockInstanceServerUpdateContainerTemplateFileCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerUpdateContainerTemplateFileCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerUpdateContainerTemplateFileCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerUpdateIdentityCall

type MockInstanceServerUpdateIdentityCall struct {
	*gomock.Call
}

MockInstanceServerUpdateIdentityCall wrap *gomock.Call

func (*MockInstanceServerUpdateIdentityCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerUpdateIdentityCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerUpdateIdentityCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerUpdateIdentityProviderGroupCall

type MockInstanceServerUpdateIdentityProviderGroupCall struct {
	*gomock.Call
}

MockInstanceServerUpdateIdentityProviderGroupCall wrap *gomock.Call

func (*MockInstanceServerUpdateIdentityProviderGroupCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerUpdateIdentityProviderGroupCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerUpdateIdentityProviderGroupCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerUpdateImageAliasCall

type MockInstanceServerUpdateImageAliasCall struct {
	*gomock.Call
}

MockInstanceServerUpdateImageAliasCall wrap *gomock.Call

func (*MockInstanceServerUpdateImageAliasCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerUpdateImageAliasCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerUpdateImageAliasCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerUpdateImageCall

type MockInstanceServerUpdateImageCall struct {
	*gomock.Call
}

MockInstanceServerUpdateImageCall wrap *gomock.Call

func (*MockInstanceServerUpdateImageCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerUpdateImageCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerUpdateImageCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerUpdateInstanceCall

type MockInstanceServerUpdateInstanceCall struct {
	*gomock.Call
}

MockInstanceServerUpdateInstanceCall wrap *gomock.Call

func (*MockInstanceServerUpdateInstanceCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerUpdateInstanceCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerUpdateInstanceCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerUpdateInstanceMetadataCall

type MockInstanceServerUpdateInstanceMetadataCall struct {
	*gomock.Call
}

MockInstanceServerUpdateInstanceMetadataCall wrap *gomock.Call

func (*MockInstanceServerUpdateInstanceMetadataCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerUpdateInstanceMetadataCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerUpdateInstanceMetadataCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerUpdateInstanceSnapshotCall

type MockInstanceServerUpdateInstanceSnapshotCall struct {
	*gomock.Call
}

MockInstanceServerUpdateInstanceSnapshotCall wrap *gomock.Call

func (*MockInstanceServerUpdateInstanceSnapshotCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerUpdateInstanceSnapshotCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerUpdateInstanceSnapshotCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerUpdateInstanceStateCall

type MockInstanceServerUpdateInstanceStateCall struct {
	*gomock.Call
}

MockInstanceServerUpdateInstanceStateCall wrap *gomock.Call

func (*MockInstanceServerUpdateInstanceStateCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerUpdateInstanceStateCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerUpdateInstanceStateCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerUpdateInstanceUEFIVarsCall

type MockInstanceServerUpdateInstanceUEFIVarsCall struct {
	*gomock.Call
}

MockInstanceServerUpdateInstanceUEFIVarsCall wrap *gomock.Call

func (*MockInstanceServerUpdateInstanceUEFIVarsCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerUpdateInstanceUEFIVarsCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerUpdateInstanceUEFIVarsCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerUpdateInstancesCall

type MockInstanceServerUpdateInstancesCall struct {
	*gomock.Call
}

MockInstanceServerUpdateInstancesCall wrap *gomock.Call

func (*MockInstanceServerUpdateInstancesCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerUpdateInstancesCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerUpdateInstancesCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerUpdateNetworkACLCall

type MockInstanceServerUpdateNetworkACLCall struct {
	*gomock.Call
}

MockInstanceServerUpdateNetworkACLCall wrap *gomock.Call

func (*MockInstanceServerUpdateNetworkACLCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerUpdateNetworkACLCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerUpdateNetworkACLCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerUpdateNetworkCall

type MockInstanceServerUpdateNetworkCall struct {
	*gomock.Call
}

MockInstanceServerUpdateNetworkCall wrap *gomock.Call

func (*MockInstanceServerUpdateNetworkCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerUpdateNetworkCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerUpdateNetworkCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerUpdateNetworkForwardCall

type MockInstanceServerUpdateNetworkForwardCall struct {
	*gomock.Call
}

MockInstanceServerUpdateNetworkForwardCall wrap *gomock.Call

func (*MockInstanceServerUpdateNetworkForwardCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerUpdateNetworkForwardCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerUpdateNetworkForwardCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerUpdateNetworkLoadBalancerCall

type MockInstanceServerUpdateNetworkLoadBalancerCall struct {
	*gomock.Call
}

MockInstanceServerUpdateNetworkLoadBalancerCall wrap *gomock.Call

func (*MockInstanceServerUpdateNetworkLoadBalancerCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerUpdateNetworkLoadBalancerCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerUpdateNetworkLoadBalancerCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerUpdateNetworkPeerCall

type MockInstanceServerUpdateNetworkPeerCall struct {
	*gomock.Call
}

MockInstanceServerUpdateNetworkPeerCall wrap *gomock.Call

func (*MockInstanceServerUpdateNetworkPeerCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerUpdateNetworkPeerCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerUpdateNetworkPeerCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerUpdateNetworkZoneCall

type MockInstanceServerUpdateNetworkZoneCall struct {
	*gomock.Call
}

MockInstanceServerUpdateNetworkZoneCall wrap *gomock.Call

func (*MockInstanceServerUpdateNetworkZoneCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerUpdateNetworkZoneCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerUpdateNetworkZoneCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerUpdateNetworkZoneRecordCall

type MockInstanceServerUpdateNetworkZoneRecordCall struct {
	*gomock.Call
}

MockInstanceServerUpdateNetworkZoneRecordCall wrap *gomock.Call

func (*MockInstanceServerUpdateNetworkZoneRecordCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerUpdateNetworkZoneRecordCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerUpdateNetworkZoneRecordCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerUpdateProfileCall

type MockInstanceServerUpdateProfileCall struct {
	*gomock.Call
}

MockInstanceServerUpdateProfileCall wrap *gomock.Call

func (*MockInstanceServerUpdateProfileCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerUpdateProfileCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerUpdateProfileCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerUpdateProjectCall

type MockInstanceServerUpdateProjectCall struct {
	*gomock.Call
}

MockInstanceServerUpdateProjectCall wrap *gomock.Call

func (*MockInstanceServerUpdateProjectCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerUpdateProjectCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerUpdateProjectCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerUpdateServerCall

type MockInstanceServerUpdateServerCall struct {
	*gomock.Call
}

MockInstanceServerUpdateServerCall wrap *gomock.Call

func (*MockInstanceServerUpdateServerCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerUpdateServerCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerUpdateServerCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerUpdateStoragePoolBucketCall

type MockInstanceServerUpdateStoragePoolBucketCall struct {
	*gomock.Call
}

MockInstanceServerUpdateStoragePoolBucketCall wrap *gomock.Call

func (*MockInstanceServerUpdateStoragePoolBucketCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerUpdateStoragePoolBucketCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerUpdateStoragePoolBucketCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerUpdateStoragePoolBucketKeyCall

type MockInstanceServerUpdateStoragePoolBucketKeyCall struct {
	*gomock.Call
}

MockInstanceServerUpdateStoragePoolBucketKeyCall wrap *gomock.Call

func (*MockInstanceServerUpdateStoragePoolBucketKeyCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerUpdateStoragePoolBucketKeyCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerUpdateStoragePoolBucketKeyCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerUpdateStoragePoolCall

type MockInstanceServerUpdateStoragePoolCall struct {
	*gomock.Call
}

MockInstanceServerUpdateStoragePoolCall wrap *gomock.Call

func (*MockInstanceServerUpdateStoragePoolCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerUpdateStoragePoolCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerUpdateStoragePoolCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerUpdateStoragePoolVolumeCall

type MockInstanceServerUpdateStoragePoolVolumeCall struct {
	*gomock.Call
}

MockInstanceServerUpdateStoragePoolVolumeCall wrap *gomock.Call

func (*MockInstanceServerUpdateStoragePoolVolumeCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerUpdateStoragePoolVolumeCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerUpdateStoragePoolVolumeCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerUpdateStoragePoolVolumeSnapshotCall

type MockInstanceServerUpdateStoragePoolVolumeSnapshotCall struct {
	*gomock.Call
}

MockInstanceServerUpdateStoragePoolVolumeSnapshotCall wrap *gomock.Call

func (*MockInstanceServerUpdateStoragePoolVolumeSnapshotCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerUpdateStoragePoolVolumeSnapshotCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerUpdateStoragePoolVolumeSnapshotCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerUpdateWarningCall

type MockInstanceServerUpdateWarningCall struct {
	*gomock.Call
}

MockInstanceServerUpdateWarningCall wrap *gomock.Call

func (*MockInstanceServerUpdateWarningCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerUpdateWarningCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerUpdateWarningCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerUseProjectCall

type MockInstanceServerUseProjectCall struct {
	*gomock.Call
}

MockInstanceServerUseProjectCall wrap *gomock.Call

func (*MockInstanceServerUseProjectCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerUseProjectCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerUseProjectCall) Return

Return rewrite *gomock.Call.Return

type MockInstanceServerUseTargetCall

type MockInstanceServerUseTargetCall struct {
	*gomock.Call
}

MockInstanceServerUseTargetCall wrap *gomock.Call

func (*MockInstanceServerUseTargetCall) Do

Do rewrite *gomock.Call.Do

func (*MockInstanceServerUseTargetCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockInstanceServerUseTargetCall) Return

Return rewrite *gomock.Call.Return

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 MockOperationAddHandlerCall

type MockOperationAddHandlerCall struct {
	*gomock.Call
}

MockOperationAddHandlerCall wrap *gomock.Call

func (*MockOperationAddHandlerCall) Do

Do rewrite *gomock.Call.Do

func (*MockOperationAddHandlerCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockOperationAddHandlerCall) Return

Return rewrite *gomock.Call.Return

type MockOperationCancelCall

type MockOperationCancelCall struct {
	*gomock.Call
}

MockOperationCancelCall wrap *gomock.Call

func (*MockOperationCancelCall) Do

Do rewrite *gomock.Call.Do

func (*MockOperationCancelCall) DoAndReturn

func (c *MockOperationCancelCall) DoAndReturn(f func() error) *MockOperationCancelCall

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockOperationCancelCall) Return

Return rewrite *gomock.Call.Return

type MockOperationGetCall

type MockOperationGetCall struct {
	*gomock.Call
}

MockOperationGetCall wrap *gomock.Call

func (*MockOperationGetCall) Do

Do rewrite *gomock.Call.Do

func (*MockOperationGetCall) DoAndReturn

func (c *MockOperationGetCall) DoAndReturn(f func() api.Operation) *MockOperationGetCall

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockOperationGetCall) Return

Return rewrite *gomock.Call.Return

type MockOperationGetWebsocketCall

type MockOperationGetWebsocketCall struct {
	*gomock.Call
}

MockOperationGetWebsocketCall wrap *gomock.Call

func (*MockOperationGetWebsocketCall) Do

Do rewrite *gomock.Call.Do

func (*MockOperationGetWebsocketCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockOperationGetWebsocketCall) Return

Return rewrite *gomock.Call.Return

type MockOperationMockRecorder

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

MockOperationMockRecorder is the mock recorder for MockOperation.

func (*MockOperationMockRecorder) AddHandler

AddHandler indicates an expected call of AddHandler.

func (*MockOperationMockRecorder) Cancel

Cancel indicates an expected call of Cancel.

func (*MockOperationMockRecorder) Get

Get indicates an expected call of Get.

func (*MockOperationMockRecorder) GetWebsocket

GetWebsocket indicates an expected call of GetWebsocket.

func (*MockOperationMockRecorder) Refresh

Refresh indicates an expected call of Refresh.

func (*MockOperationMockRecorder) RemoveHandler

RemoveHandler indicates an expected call of RemoveHandler.

func (*MockOperationMockRecorder) Wait

Wait indicates an expected call of Wait.

func (*MockOperationMockRecorder) WaitContext

WaitContext indicates an expected call of WaitContext.

type MockOperationRefreshCall

type MockOperationRefreshCall struct {
	*gomock.Call
}

MockOperationRefreshCall wrap *gomock.Call

func (*MockOperationRefreshCall) Do

Do rewrite *gomock.Call.Do

func (*MockOperationRefreshCall) DoAndReturn

func (c *MockOperationRefreshCall) DoAndReturn(f func() error) *MockOperationRefreshCall

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockOperationRefreshCall) Return

Return rewrite *gomock.Call.Return

type MockOperationRemoveHandlerCall

type MockOperationRemoveHandlerCall struct {
	*gomock.Call
}

MockOperationRemoveHandlerCall wrap *gomock.Call

func (*MockOperationRemoveHandlerCall) Do

Do rewrite *gomock.Call.Do

func (*MockOperationRemoveHandlerCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockOperationRemoveHandlerCall) Return

Return rewrite *gomock.Call.Return

type MockOperationWaitCall

type MockOperationWaitCall struct {
	*gomock.Call
}

MockOperationWaitCall wrap *gomock.Call

func (*MockOperationWaitCall) Do

Do rewrite *gomock.Call.Do

func (*MockOperationWaitCall) DoAndReturn

func (c *MockOperationWaitCall) DoAndReturn(f func() error) *MockOperationWaitCall

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockOperationWaitCall) Return

Return rewrite *gomock.Call.Return

type MockOperationWaitContextCall

type MockOperationWaitContextCall struct {
	*gomock.Call
}

MockOperationWaitContextCall wrap *gomock.Call

func (*MockOperationWaitContextCall) Do

Do rewrite *gomock.Call.Do

func (*MockOperationWaitContextCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockOperationWaitContextCall) Return

Return rewrite *gomock.Call.Return

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 MockRemoteOperationAddHandlerCall

type MockRemoteOperationAddHandlerCall struct {
	*gomock.Call
}

MockRemoteOperationAddHandlerCall wrap *gomock.Call

func (*MockRemoteOperationAddHandlerCall) Do

Do rewrite *gomock.Call.Do

func (*MockRemoteOperationAddHandlerCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockRemoteOperationAddHandlerCall) Return

Return rewrite *gomock.Call.Return

type MockRemoteOperationCancelTargetCall

type MockRemoteOperationCancelTargetCall struct {
	*gomock.Call
}

MockRemoteOperationCancelTargetCall wrap *gomock.Call

func (*MockRemoteOperationCancelTargetCall) Do

Do rewrite *gomock.Call.Do

func (*MockRemoteOperationCancelTargetCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockRemoteOperationCancelTargetCall) Return

Return rewrite *gomock.Call.Return

type MockRemoteOperationGetTargetCall

type MockRemoteOperationGetTargetCall struct {
	*gomock.Call
}

MockRemoteOperationGetTargetCall wrap *gomock.Call

func (*MockRemoteOperationGetTargetCall) Do

Do rewrite *gomock.Call.Do

func (*MockRemoteOperationGetTargetCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockRemoteOperationGetTargetCall) Return

Return rewrite *gomock.Call.Return

type MockRemoteOperationMockRecorder

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

MockRemoteOperationMockRecorder is the mock recorder for MockRemoteOperation.

func (*MockRemoteOperationMockRecorder) AddHandler

AddHandler indicates an expected call of AddHandler.

func (*MockRemoteOperationMockRecorder) CancelTarget

CancelTarget indicates an expected call of CancelTarget.

func (*MockRemoteOperationMockRecorder) GetTarget

GetTarget indicates an expected call of GetTarget.

func (*MockRemoteOperationMockRecorder) Wait

Wait indicates an expected call of Wait.

type MockRemoteOperationWaitCall

type MockRemoteOperationWaitCall struct {
	*gomock.Call
}

MockRemoteOperationWaitCall wrap *gomock.Call

func (*MockRemoteOperationWaitCall) Do

Do rewrite *gomock.Call.Do

func (*MockRemoteOperationWaitCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockRemoteOperationWaitCall) Return

Return rewrite *gomock.Call.Return

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 MockServerDisconnectCall

type MockServerDisconnectCall struct {
	*gomock.Call
}

MockServerDisconnectCall wrap *gomock.Call

func (*MockServerDisconnectCall) Do

Do rewrite *gomock.Call.Do

func (*MockServerDisconnectCall) DoAndReturn

func (c *MockServerDisconnectCall) DoAndReturn(f func()) *MockServerDisconnectCall

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockServerDisconnectCall) Return

Return rewrite *gomock.Call.Return

type MockServerDoHTTPCall

type MockServerDoHTTPCall struct {
	*gomock.Call
}

MockServerDoHTTPCall wrap *gomock.Call

func (*MockServerDoHTTPCall) Do

Do rewrite *gomock.Call.Do

func (*MockServerDoHTTPCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockServerDoHTTPCall) Return

Return rewrite *gomock.Call.Return

type MockServerGetConnectionInfoCall

type MockServerGetConnectionInfoCall struct {
	*gomock.Call
}

MockServerGetConnectionInfoCall wrap *gomock.Call

func (*MockServerGetConnectionInfoCall) Do

Do rewrite *gomock.Call.Do

func (*MockServerGetConnectionInfoCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockServerGetConnectionInfoCall) Return

Return rewrite *gomock.Call.Return

type MockServerGetHTTPClientCall

type MockServerGetHTTPClientCall struct {
	*gomock.Call
}

MockServerGetHTTPClientCall wrap *gomock.Call

func (*MockServerGetHTTPClientCall) Do

Do rewrite *gomock.Call.Do

func (*MockServerGetHTTPClientCall) DoAndReturn

DoAndReturn rewrite *gomock.Call.DoAndReturn

func (*MockServerGetHTTPClientCall) Return

Return rewrite *gomock.Call.Return

type MockServerMockRecorder

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

MockServerMockRecorder is the mock recorder for MockServer.

func (*MockServerMockRecorder) Disconnect

Disconnect indicates an expected call of Disconnect.

func (*MockServerMockRecorder) DoHTTP

DoHTTP indicates an expected call of DoHTTP.

func (*MockServerMockRecorder) GetConnectionInfo

GetConnectionInfo indicates an expected call of GetConnectionInfo.

func (*MockServerMockRecorder) GetHTTPClient

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