mocks

package
v1.13.2 Latest Latest
Warning

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

Go to latest
Published: Apr 11, 2024 License: Apache-2.0 Imports: 9 Imported by: 0

Documentation

Overview

Code generated by mockery v1.0.0. DO NOT EDIT.

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type BackupStore

type BackupStore struct {
	mock.Mock
}

BackupStore is an autogenerated mock type for the BackupStore type

func NewBackupStore added in v1.11.0

func NewBackupStore(t mockConstructorTestingTNewBackupStore) *BackupStore

NewBackupStore creates a new instance of BackupStore. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations.

func (*BackupStore) BackupExists added in v1.0.0

func (_m *BackupStore) BackupExists(bucket string, backupName string) (bool, error)

BackupExists provides a mock function with given fields: bucket, backupName

func (*BackupStore) DeleteBackup

func (_m *BackupStore) DeleteBackup(name string) error

DeleteBackup provides a mock function with given fields: name

func (*BackupStore) DeleteRestore

func (_m *BackupStore) DeleteRestore(name string) error

DeleteRestore provides a mock function with given fields: name

func (*BackupStore) GetBackupContents

func (_m *BackupStore) GetBackupContents(name string) (io.ReadCloser, error)

GetBackupContents provides a mock function with given fields: name

func (*BackupStore) GetBackupItemOperations added in v1.11.0

func (_m *BackupStore) GetBackupItemOperations(name string) ([]*itemoperation.BackupOperation, error)

GetBackupItemOperations provides a mock function with given fields: name

func (*BackupStore) GetBackupMetadata

func (_m *BackupStore) GetBackupMetadata(name string) (*v1.Backup, error)

GetBackupMetadata provides a mock function with given fields: name

func (*BackupStore) GetBackupVolumeInfos added in v1.13.0

func (_m *BackupStore) GetBackupVolumeInfos(name string) ([]*internalVolume.VolumeInfo, error)

GetRestoreItemOperations provides a mock function with given fields: name

func (*BackupStore) GetBackupVolumeSnapshots

func (_m *BackupStore) GetBackupVolumeSnapshots(name string) ([]*volume.Snapshot, error)

GetBackupVolumeSnapshots provides a mock function with given fields: name

func (*BackupStore) GetCSIVolumeSnapshotClasses added in v1.9.0

func (_m *BackupStore) GetCSIVolumeSnapshotClasses(name string) ([]*volumesnapshotv1.VolumeSnapshotClass, error)

GetCSIVolumeSnapshotClasses provides a mock function with given fields: name

func (*BackupStore) GetCSIVolumeSnapshotContents added in v1.4.0

func (_m *BackupStore) GetCSIVolumeSnapshotContents(name string) ([]*volumesnapshotv1.VolumeSnapshotContent, error)

GetCSIVolumeSnapshotContents provides a mock function with given fields: name

func (*BackupStore) GetCSIVolumeSnapshots added in v1.4.0

func (_m *BackupStore) GetCSIVolumeSnapshots(name string) ([]*volumesnapshotv1.VolumeSnapshot, error)

GetCSIVolumeSnapshots provides a mock function with given fields: name

func (*BackupStore) GetDownloadURL

func (_m *BackupStore) GetDownloadURL(target v1.DownloadTarget) (string, error)

GetDownloadURL provides a mock function with given fields: target

func (*BackupStore) GetPodVolumeBackups added in v1.0.1

func (_m *BackupStore) GetPodVolumeBackups(name string) ([]*v1.PodVolumeBackup, error)

GetPodVolumeBackups provides a mock function with given fields: name

func (*BackupStore) GetRestoreItemOperations added in v1.11.0

func (_m *BackupStore) GetRestoreItemOperations(name string) ([]*itemoperation.RestoreOperation, error)

GetRestoreItemOperations provides a mock function with given fields: name

func (*BackupStore) IsValid

func (_m *BackupStore) IsValid() error

IsValid provides a mock function with given fields:

func (*BackupStore) ListBackups

func (_m *BackupStore) ListBackups() ([]string, error)

ListBackups provides a mock function with given fields:

func (*BackupStore) PutBackup

func (_m *BackupStore) PutBackup(info persistence.BackupInfo) error

PutBackup provides a mock function with given fields: info

func (*BackupStore) PutBackupContents added in v1.11.0

func (_m *BackupStore) PutBackupContents(backup string, backupContents io.Reader) error

PutBackupContents provides a mock function with given fields: backup, backupContents

func (*BackupStore) PutBackupItemOperations added in v1.11.0

func (_m *BackupStore) PutBackupItemOperations(backup string, backupItemOperations io.Reader) error

PutBackupItemOperations provides a mock function with given fields: backup, backupItemOperations

func (*BackupStore) PutBackupMetadata added in v1.11.0

func (_m *BackupStore) PutBackupMetadata(backup string, backupMetadata io.Reader) error

PutBackupMetadata provides a mock function with given fields: backup, backupMetadata

func (*BackupStore) PutRestoreItemOperations added in v1.11.0

func (_m *BackupStore) PutRestoreItemOperations(restore string, restoreItemOperations io.Reader) error

PutRestoreItemOperations provides a mock function with given fields: restore, restoreItemOperations

func (*BackupStore) PutRestoreLog

func (_m *BackupStore) PutRestoreLog(backup string, restore string, log io.Reader) error

PutRestoreLog provides a mock function with given fields: backup, restore, log

func (*BackupStore) PutRestoreResults

func (_m *BackupStore) PutRestoreResults(backup string, restore string, results io.Reader) error

PutRestoreResults provides a mock function with given fields: backup, restore, results

func (*BackupStore) PutRestoredResourceList added in v1.11.0

func (_m *BackupStore) PutRestoredResourceList(restore string, results io.Reader) error

PutRestoredResourceList provides a mock function with given fields: restore, results

type ObjectStore added in v1.2.0

type ObjectStore struct {
	mock.Mock
}

ObjectStore is an autogenerated mock type for the ObjectStore type

func (*ObjectStore) CreateSignedURL added in v1.2.0

func (_m *ObjectStore) CreateSignedURL(bucket string, key string, ttl time.Duration) (string, error)

CreateSignedURL provides a mock function with given fields: bucket, key, ttl

func (*ObjectStore) DeleteObject added in v1.2.0

func (_m *ObjectStore) DeleteObject(bucket string, key string) error

DeleteObject provides a mock function with given fields: bucket, key

func (*ObjectStore) GetObject added in v1.2.0

func (_m *ObjectStore) GetObject(bucket string, key string) (io.ReadCloser, error)

GetObject provides a mock function with given fields: bucket, key

func (*ObjectStore) Init added in v1.2.0

func (_m *ObjectStore) Init(config map[string]string) error

Init provides a mock function with given fields: config

func (*ObjectStore) ListCommonPrefixes added in v1.2.0

func (_m *ObjectStore) ListCommonPrefixes(bucket string, prefix string, delimiter string) ([]string, error)

ListCommonPrefixes provides a mock function with given fields: bucket, prefix, delimiter

func (*ObjectStore) ListObjects added in v1.2.0

func (_m *ObjectStore) ListObjects(bucket string, prefix string) ([]string, error)

ListObjects provides a mock function with given fields: bucket, prefix

func (*ObjectStore) ObjectExists added in v1.2.0

func (_m *ObjectStore) ObjectExists(bucket string, key string) (bool, error)

ObjectExists provides a mock function with given fields: bucket, key

func (*ObjectStore) PutObject added in v1.2.0

func (_m *ObjectStore) PutObject(bucket string, key string, body io.Reader) error

PutObject provides a mock function with given fields: bucket, key, body

Jump to

Keyboard shortcuts

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