types

package
v2.0.0-beta.1 Latest Latest
Warning

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

Go to latest
Published: Nov 7, 2019 License: Apache-2.0 Imports: 9 Imported by: 0

Documentation

Overview

Code generated by go generate; DO NOT EDIT.

Code generated by go generate; DO NOT EDIT.

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func LoadBucketList

func LoadBucketList(t navvy.Task, v BucketListSetter)

func LoadByteSize

func LoadByteSize(t navvy.Task, v ByteSizeSetter)

func LoadBytesPool

func LoadBytesPool(t navvy.Task, v BytesPoolSetter)

func LoadContent

func LoadContent(t navvy.Task, v ContentSetter)

func LoadDelete

func LoadDelete(t navvy.Task, v DeleteSetter)

func LoadDestinationPath

func LoadDestinationPath(t navvy.Task, v DestinationPathSetter)

func LoadDestinationService

func LoadDestinationService(t navvy.Task, v DestinationServiceSetter)

func LoadDestinationStorage

func LoadDestinationStorage(t navvy.Task, v DestinationStorageSetter)

func LoadDestinationType

func LoadDestinationType(t navvy.Task, v DestinationTypeSetter)

func LoadDone

func LoadDone(t navvy.Task, v DoneSetter)

func LoadEnableBenchmark

func LoadEnableBenchmark(t navvy.Task, v EnableBenchmarkSetter)

func LoadExpectSize

func LoadExpectSize(t navvy.Task, v ExpectSizeSetter)

func LoadExpire

func LoadExpire(t navvy.Task, v ExpireSetter)

func LoadFault

func LoadFault(t navvy.Task, v FaultSetter)

func LoadForce

func LoadForce(t navvy.Task, v ForceSetter)

func LoadHumanReadable

func LoadHumanReadable(t navvy.Task, v HumanReadableSetter)

func LoadID

func LoadID(t navvy.Task, v IDSetter)

func LoadLongFormat

func LoadLongFormat(t navvy.Task, v LongFormatSetter)

func LoadMD5Sum

func LoadMD5Sum(t navvy.Task, v MD5SumSetter)

func LoadName

func LoadName(t navvy.Task, v NameSetter)

func LoadObject

func LoadObject(t navvy.Task, v ObjectSetter)

func LoadObjectChannel

func LoadObjectChannel(t navvy.Task, v ObjectChannelSetter)

func LoadObjectLongList

func LoadObjectLongList(t navvy.Task, v ObjectLongListSetter)

func LoadOffset

func LoadOffset(t navvy.Task, v OffsetSetter)

func LoadPartNumber

func LoadPartNumber(t navvy.Task, v PartNumberSetter)

func LoadPartSize

func LoadPartSize(t navvy.Task, v PartSizeSetter)

func LoadPath

func LoadPath(t navvy.Task, v PathSetter)

func LoadPathFunc

func LoadPathFunc(t navvy.Task, v PathFuncSetter)

func LoadPool

func LoadPool(t navvy.Task, v PoolSetter)

func LoadReadableSize

func LoadReadableSize(t navvy.Task, v ReadableSizeSetter)

func LoadRecursive

func LoadRecursive(t navvy.Task, v RecursiveSetter)

func LoadScheduleFunc

func LoadScheduleFunc(t navvy.Task, v ScheduleFuncSetter)

func LoadScheduler

func LoadScheduler(t navvy.Task, v SchedulerSetter)

func LoadSegmentChannel

func LoadSegmentChannel(t navvy.Task, v SegmentChannelSetter)

func LoadSegmentID

func LoadSegmentID(t navvy.Task, v SegmentIDSetter)

func LoadSegmentIDFunc

func LoadSegmentIDFunc(t navvy.Task, v SegmentIDFuncSetter)

func LoadService

func LoadService(t navvy.Task, v ServiceSetter)

func LoadSize

func LoadSize(t navvy.Task, v SizeSetter)

func LoadSourcePath

func LoadSourcePath(t navvy.Task, v SourcePathSetter)

func LoadSourceService

func LoadSourceService(t navvy.Task, v SourceServiceSetter)

func LoadSourceStorage

func LoadSourceStorage(t navvy.Task, v SourceStorageSetter)

func LoadSourceType

func LoadSourceType(t navvy.Task, v SourceTypeSetter)

func LoadStorage

func LoadStorage(t navvy.Task, v StorageSetter)

func LoadStorageName

func LoadStorageName(t navvy.Task, v StorageNameSetter)

func LoadTotalSize

func LoadTotalSize(t navvy.Task, v TotalSizeSetter)

func LoadType

func LoadType(t navvy.Task, v TypeSetter)

func LoadURL

func LoadURL(t navvy.Task, v URLSetter)

func LoadWholeFile

func LoadWholeFile(t navvy.Task, v WholeFileSetter)

func LoadZone

func LoadZone(t navvy.Task, v ZoneSetter)

func NewErrLocalFileNotExist

func NewErrLocalFileNotExist(err error, sourcePath string) error

func NewErrLocalFileTooLarge

func NewErrLocalFileTooLarge(err error, size int64) error

func NewErrReadableSizeFormatInvalid

func NewErrReadableSizeFormatInvalid(err error, byteSize string) error

func NewErrStorageBucketInitFailed

func NewErrStorageBucketInitFailed(err error, storageName string, zone string) error

func NewErrStorageObjectNoPermission

func NewErrStorageObjectNoPermission(err error, destinationPath string) error

func NewErrStorageObjectNotFound

func NewErrStorageObjectNotFound(err error, destinationPath string) error

func NewErrStorageServiceInitFailed

func NewErrStorageServiceInitFailed(err error) error

func NewErrUnhandled

func NewErrUnhandled(err error) error

func NewErrUserInputByteSizeInvalid

func NewErrUserInputByteSizeInvalid(err error, byteSize string) error

func NewErrUserInputDestinationPathInvalid

func NewErrUserInputDestinationPathInvalid(err error, destinationPath string) error

Types

type BucketList

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

func (*BucketList) GetBucketList

func (o *BucketList) GetBucketList() []string

func (*BucketList) SetBucketList

func (o *BucketList) SetBucketList(v []string)

func (*BucketList) ValidateBucketList

func (o *BucketList) ValidateBucketList() bool

type BucketListGetter

type BucketListGetter interface {
	GetBucketList() []string
}

type BucketListSetter

type BucketListSetter interface {
	SetBucketList([]string)
}

type BucketListValidator

type BucketListValidator interface {
	ValidateBucketList() bool
}

type ByteSize

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

func (*ByteSize) GetByteSize

func (o *ByteSize) GetByteSize() string

func (*ByteSize) SetByteSize

func (o *ByteSize) SetByteSize(v string)

func (*ByteSize) ValidateByteSize

func (o *ByteSize) ValidateByteSize() bool

type ByteSizeGetter

type ByteSizeGetter interface {
	GetByteSize() string
}

type ByteSizeSetter

type ByteSizeSetter interface {
	SetByteSize(string)
}

type ByteSizeValidator

type ByteSizeValidator interface {
	ValidateByteSize() bool
}

type BytesPool

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

func (*BytesPool) GetBytesPool

func (o *BytesPool) GetBytesPool() *sync.Pool

func (*BytesPool) SetBytesPool

func (o *BytesPool) SetBytesPool(v *sync.Pool)

func (*BytesPool) ValidateBytesPool

func (o *BytesPool) ValidateBytesPool() bool

type BytesPoolGetter

type BytesPoolGetter interface {
	GetBytesPool() *sync.Pool
}

type BytesPoolSetter

type BytesPoolSetter interface {
	SetBytesPool(*sync.Pool)
}

type BytesPoolValidator

type BytesPoolValidator interface {
	ValidateBytesPool() bool
}

type Content

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

func (*Content) GetContent

func (o *Content) GetContent() *bytes.Buffer

func (*Content) SetContent

func (o *Content) SetContent(v *bytes.Buffer)

func (*Content) ValidateContent

func (o *Content) ValidateContent() bool

type ContentGetter

type ContentGetter interface {
	GetContent() *bytes.Buffer
}

type ContentSetter

type ContentSetter interface {
	SetContent(*bytes.Buffer)
}

type ContentValidator

type ContentValidator interface {
	ValidateContent() bool
}

type Delete

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

func (*Delete) GetDelete

func (o *Delete) GetDelete() bool

func (*Delete) SetDelete

func (o *Delete) SetDelete(v bool)

func (*Delete) ValidateDelete

func (o *Delete) ValidateDelete() bool

type DeleteGetter

type DeleteGetter interface {
	GetDelete() bool
}

type DeleteSetter

type DeleteSetter interface {
	SetDelete(bool)
}

type DeleteValidator

type DeleteValidator interface {
	ValidateDelete() bool
}

type DestinationPath

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

func (*DestinationPath) GetDestinationPath

func (o *DestinationPath) GetDestinationPath() string

func (*DestinationPath) SetDestinationPath

func (o *DestinationPath) SetDestinationPath(v string)

func (*DestinationPath) ValidateDestinationPath

func (o *DestinationPath) ValidateDestinationPath() bool

type DestinationPathGetter

type DestinationPathGetter interface {
	GetDestinationPath() string
}

type DestinationPathSetter

type DestinationPathSetter interface {
	SetDestinationPath(string)
}

type DestinationPathValidator

type DestinationPathValidator interface {
	ValidateDestinationPath() bool
}

type DestinationService

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

func (*DestinationService) GetDestinationService

func (o *DestinationService) GetDestinationService() storage.Servicer

func (*DestinationService) SetDestinationService

func (o *DestinationService) SetDestinationService(v storage.Servicer)

func (*DestinationService) ValidateDestinationService

func (o *DestinationService) ValidateDestinationService() bool

type DestinationServiceGetter

type DestinationServiceGetter interface {
	GetDestinationService() storage.Servicer
}

type DestinationServiceSetter

type DestinationServiceSetter interface {
	SetDestinationService(storage.Servicer)
}

type DestinationServiceValidator

type DestinationServiceValidator interface {
	ValidateDestinationService() bool
}

type DestinationStorage

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

func (*DestinationStorage) GetDestinationStorage

func (o *DestinationStorage) GetDestinationStorage() storage.Storager

func (*DestinationStorage) SetDestinationStorage

func (o *DestinationStorage) SetDestinationStorage(v storage.Storager)

func (*DestinationStorage) ValidateDestinationStorage

func (o *DestinationStorage) ValidateDestinationStorage() bool

type DestinationStorageGetter

type DestinationStorageGetter interface {
	GetDestinationStorage() storage.Storager
}

type DestinationStorageSetter

type DestinationStorageSetter interface {
	SetDestinationStorage(storage.Storager)
}

type DestinationStorageValidator

type DestinationStorageValidator interface {
	ValidateDestinationStorage() bool
}

type DestinationType

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

func (*DestinationType) GetDestinationType

func (o *DestinationType) GetDestinationType() types.ObjectType

func (*DestinationType) SetDestinationType

func (o *DestinationType) SetDestinationType(v types.ObjectType)

func (*DestinationType) ValidateDestinationType

func (o *DestinationType) ValidateDestinationType() bool

type DestinationTypeGetter

type DestinationTypeGetter interface {
	GetDestinationType() types.ObjectType
}

type DestinationTypeSetter

type DestinationTypeSetter interface {
	SetDestinationType(types.ObjectType)
}

type DestinationTypeValidator

type DestinationTypeValidator interface {
	ValidateDestinationType() bool
}

type Done

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

func (*Done) GetDone

func (o *Done) GetDone() bool

func (*Done) SetDone

func (o *Done) SetDone(v bool)

func (*Done) ValidateDone

func (o *Done) ValidateDone() bool

type DoneGetter

type DoneGetter interface {
	GetDone() bool
}

type DoneSetter

type DoneSetter interface {
	SetDone(bool)
}

type DoneValidator

type DoneValidator interface {
	ValidateDone() bool
}

type EnableBenchmark

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

func (*EnableBenchmark) GetEnableBenchmark

func (o *EnableBenchmark) GetEnableBenchmark() bool

func (*EnableBenchmark) SetEnableBenchmark

func (o *EnableBenchmark) SetEnableBenchmark(v bool)

func (*EnableBenchmark) ValidateEnableBenchmark

func (o *EnableBenchmark) ValidateEnableBenchmark() bool

type EnableBenchmarkGetter

type EnableBenchmarkGetter interface {
	GetEnableBenchmark() bool
}

type EnableBenchmarkSetter

type EnableBenchmarkSetter interface {
	SetEnableBenchmark(bool)
}

type EnableBenchmarkValidator

type EnableBenchmarkValidator interface {
	ValidateEnableBenchmark() bool
}

type ExpectSize

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

func (*ExpectSize) GetExpectSize

func (o *ExpectSize) GetExpectSize() int64

func (*ExpectSize) SetExpectSize

func (o *ExpectSize) SetExpectSize(v int64)

func (*ExpectSize) ValidateExpectSize

func (o *ExpectSize) ValidateExpectSize() bool

type ExpectSizeGetter

type ExpectSizeGetter interface {
	GetExpectSize() int64
}

type ExpectSizeSetter

type ExpectSizeSetter interface {
	SetExpectSize(int64)
}

type ExpectSizeValidator

type ExpectSizeValidator interface {
	ValidateExpectSize() bool
}

type Expire

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

func (*Expire) GetExpire

func (o *Expire) GetExpire() int

func (*Expire) SetExpire

func (o *Expire) SetExpire(v int)

func (*Expire) ValidateExpire

func (o *Expire) ValidateExpire() bool

type ExpireGetter

type ExpireGetter interface {
	GetExpire() int
}

type ExpireSetter

type ExpireSetter interface {
	SetExpire(int)
}

type ExpireValidator

type ExpireValidator interface {
	ValidateExpire() bool
}

type Fault

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

func (*Fault) GetFault

func (o *Fault) GetFault() *fault.Fault

func (*Fault) SetFault

func (o *Fault) SetFault(v *fault.Fault)

func (*Fault) ValidateFault

func (o *Fault) ValidateFault() bool

type FaultGetter

type FaultGetter interface {
	GetFault() *fault.Fault
}

type FaultSetter

type FaultSetter interface {
	SetFault(*fault.Fault)
}

type FaultValidator

type FaultValidator interface {
	ValidateFault() bool
}

type Force

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

func (*Force) GetForce

func (o *Force) GetForce() bool

func (*Force) SetForce

func (o *Force) SetForce(v bool)

func (*Force) ValidateForce

func (o *Force) ValidateForce() bool

type ForceGetter

type ForceGetter interface {
	GetForce() bool
}

type ForceSetter

type ForceSetter interface {
	SetForce(bool)
}

type ForceValidator

type ForceValidator interface {
	ValidateForce() bool
}

type HumanReadable

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

func (*HumanReadable) GetHumanReadable

func (o *HumanReadable) GetHumanReadable() bool

func (*HumanReadable) SetHumanReadable

func (o *HumanReadable) SetHumanReadable(v bool)

func (*HumanReadable) ValidateHumanReadable

func (o *HumanReadable) ValidateHumanReadable() bool

type HumanReadableGetter

type HumanReadableGetter interface {
	GetHumanReadable() bool
}

type HumanReadableSetter

type HumanReadableSetter interface {
	SetHumanReadable(bool)
}

type HumanReadableValidator

type HumanReadableValidator interface {
	ValidateHumanReadable() bool
}

type ID

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

func (*ID) GetID

func (o *ID) GetID() string

func (*ID) SetID

func (o *ID) SetID(v string)

func (*ID) ValidateID

func (o *ID) ValidateID() bool

type IDGetter

type IDGetter interface {
	GetID() string
}

type IDSetter

type IDSetter interface {
	SetID(string)
}

type IDValidator

type IDValidator interface {
	ValidateID() bool
}

type LocalFileNotExist

type LocalFileNotExist struct {
	SourcePath
	// contains filtered or unexported fields
}

func (*LocalFileNotExist) Error

func (f *LocalFileNotExist) Error() string

func (*LocalFileNotExist) Unwrap

func (f *LocalFileNotExist) Unwrap() error

type LocalFileTooLarge

type LocalFileTooLarge struct {
	Size
	// contains filtered or unexported fields
}

func (*LocalFileTooLarge) Error

func (f *LocalFileTooLarge) Error() string

func (*LocalFileTooLarge) Unwrap

func (f *LocalFileTooLarge) Unwrap() error

type LongFormat

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

func (*LongFormat) GetLongFormat

func (o *LongFormat) GetLongFormat() bool

func (*LongFormat) SetLongFormat

func (o *LongFormat) SetLongFormat(v bool)

func (*LongFormat) ValidateLongFormat

func (o *LongFormat) ValidateLongFormat() bool

type LongFormatGetter

type LongFormatGetter interface {
	GetLongFormat() bool
}

type LongFormatSetter

type LongFormatSetter interface {
	SetLongFormat(bool)
}

type LongFormatValidator

type LongFormatValidator interface {
	ValidateLongFormat() bool
}

type MD5Sum

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

func (*MD5Sum) GetMD5Sum

func (o *MD5Sum) GetMD5Sum() []byte

func (*MD5Sum) SetMD5Sum

func (o *MD5Sum) SetMD5Sum(v []byte)

func (*MD5Sum) ValidateMD5Sum

func (o *MD5Sum) ValidateMD5Sum() bool

type MD5SumGetter

type MD5SumGetter interface {
	GetMD5Sum() []byte
}

type MD5SumSetter

type MD5SumSetter interface {
	SetMD5Sum([]byte)
}

type MD5SumValidator

type MD5SumValidator interface {
	ValidateMD5Sum() bool
}

type Name

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

func (*Name) GetName

func (o *Name) GetName() string

func (*Name) SetName

func (o *Name) SetName(v string)

func (*Name) ValidateName

func (o *Name) ValidateName() bool

type NameGetter

type NameGetter interface {
	GetName() string
}

type NameSetter

type NameSetter interface {
	SetName(string)
}

type NameValidator

type NameValidator interface {
	ValidateName() bool
}

type Object

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

func (*Object) GetObject

func (o *Object) GetObject() *types.Object

func (*Object) SetObject

func (o *Object) SetObject(v *types.Object)

func (*Object) ValidateObject

func (o *Object) ValidateObject() bool

type ObjectChannel

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

func (*ObjectChannel) GetObjectChannel

func (o *ObjectChannel) GetObjectChannel() chan *types.Object

func (*ObjectChannel) SetObjectChannel

func (o *ObjectChannel) SetObjectChannel(v chan *types.Object)

func (*ObjectChannel) ValidateObjectChannel

func (o *ObjectChannel) ValidateObjectChannel() bool

type ObjectChannelGetter

type ObjectChannelGetter interface {
	GetObjectChannel() chan *types.Object
}

type ObjectChannelSetter

type ObjectChannelSetter interface {
	SetObjectChannel(chan *types.Object)
}

type ObjectChannelValidator

type ObjectChannelValidator interface {
	ValidateObjectChannel() bool
}

type ObjectGetter

type ObjectGetter interface {
	GetObject() *types.Object
}

type ObjectLongList

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

func (*ObjectLongList) GetObjectLongList

func (o *ObjectLongList) GetObjectLongList() *[][]string

func (*ObjectLongList) SetObjectLongList

func (o *ObjectLongList) SetObjectLongList(v *[][]string)

func (*ObjectLongList) ValidateObjectLongList

func (o *ObjectLongList) ValidateObjectLongList() bool

type ObjectLongListGetter

type ObjectLongListGetter interface {
	GetObjectLongList() *[][]string
}

type ObjectLongListSetter

type ObjectLongListSetter interface {
	SetObjectLongList(*[][]string)
}

type ObjectLongListValidator

type ObjectLongListValidator interface {
	ValidateObjectLongList() bool
}

type ObjectSetter

type ObjectSetter interface {
	SetObject(*types.Object)
}

type ObjectValidator

type ObjectValidator interface {
	ValidateObject() bool
}

type Offset

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

func (*Offset) GetOffset

func (o *Offset) GetOffset() int64

func (*Offset) SetOffset

func (o *Offset) SetOffset(v int64)

func (*Offset) ValidateOffset

func (o *Offset) ValidateOffset() bool

type OffsetGetter

type OffsetGetter interface {
	GetOffset() int64
}

type OffsetSetter

type OffsetSetter interface {
	SetOffset(int64)
}

type OffsetValidator

type OffsetValidator interface {
	ValidateOffset() bool
}

type PartNumber

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

func (*PartNumber) GetPartNumber

func (o *PartNumber) GetPartNumber() int

func (*PartNumber) SetPartNumber

func (o *PartNumber) SetPartNumber(v int)

func (*PartNumber) ValidatePartNumber

func (o *PartNumber) ValidatePartNumber() bool

type PartNumberGetter

type PartNumberGetter interface {
	GetPartNumber() int
}

type PartNumberSetter

type PartNumberSetter interface {
	SetPartNumber(int)
}

type PartNumberValidator

type PartNumberValidator interface {
	ValidatePartNumber() bool
}

type PartSize

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

func (*PartSize) GetPartSize

func (o *PartSize) GetPartSize() int64

func (*PartSize) SetPartSize

func (o *PartSize) SetPartSize(v int64)

func (*PartSize) ValidatePartSize

func (o *PartSize) ValidatePartSize() bool

type PartSizeGetter

type PartSizeGetter interface {
	GetPartSize() int64
}

type PartSizeSetter

type PartSizeSetter interface {
	SetPartSize(int64)
}

type PartSizeValidator

type PartSizeValidator interface {
	ValidatePartSize() bool
}

type Path

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

func (*Path) GetPath

func (o *Path) GetPath() string

func (*Path) SetPath

func (o *Path) SetPath(v string)

func (*Path) ValidatePath

func (o *Path) ValidatePath() bool

type PathFunc

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

func (*PathFunc) GetPathFunc

func (o *PathFunc) GetPathFunc() func(string)

func (*PathFunc) SetPathFunc

func (o *PathFunc) SetPathFunc(v func(string))

func (*PathFunc) ValidatePathFunc

func (o *PathFunc) ValidatePathFunc() bool

type PathFuncGetter

type PathFuncGetter interface {
	GetPathFunc() func(string)
}

type PathFuncSetter

type PathFuncSetter interface {
	SetPathFunc(func(string))
}

type PathFuncValidator

type PathFuncValidator interface {
	ValidatePathFunc() bool
}

type PathGetter

type PathGetter interface {
	GetPath() string
}

type PathSetter

type PathSetter interface {
	SetPath(string)
}

type PathValidator

type PathValidator interface {
	ValidatePath() bool
}

type Pool

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

func (*Pool) GetPool

func (o *Pool) GetPool() *navvy.Pool

func (*Pool) SetPool

func (o *Pool) SetPool(v *navvy.Pool)

func (*Pool) ValidatePool

func (o *Pool) ValidatePool() bool

type PoolGetter

type PoolGetter interface {
	GetPool() *navvy.Pool
}

type PoolSetter

type PoolSetter interface {
	SetPool(*navvy.Pool)
}

type PoolValidator

type PoolValidator interface {
	ValidatePool() bool
}

type ReadableSize

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

func (*ReadableSize) GetReadableSize

func (o *ReadableSize) GetReadableSize() string

func (*ReadableSize) SetReadableSize

func (o *ReadableSize) SetReadableSize(v string)

func (*ReadableSize) ValidateReadableSize

func (o *ReadableSize) ValidateReadableSize() bool

type ReadableSizeFormatInvalid

type ReadableSizeFormatInvalid struct {
	ByteSize
	// contains filtered or unexported fields
}

func (*ReadableSizeFormatInvalid) Error

func (f *ReadableSizeFormatInvalid) Error() string

func (*ReadableSizeFormatInvalid) Unwrap

func (f *ReadableSizeFormatInvalid) Unwrap() error

type ReadableSizeGetter

type ReadableSizeGetter interface {
	GetReadableSize() string
}

type ReadableSizeSetter

type ReadableSizeSetter interface {
	SetReadableSize(string)
}

type ReadableSizeValidator

type ReadableSizeValidator interface {
	ValidateReadableSize() bool
}

type Recursive

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

func (*Recursive) GetRecursive

func (o *Recursive) GetRecursive() bool

func (*Recursive) SetRecursive

func (o *Recursive) SetRecursive(v bool)

func (*Recursive) ValidateRecursive

func (o *Recursive) ValidateRecursive() bool

type RecursiveGetter

type RecursiveGetter interface {
	GetRecursive() bool
}

type RecursiveSetter

type RecursiveSetter interface {
	SetRecursive(bool)
}

type RecursiveValidator

type RecursiveValidator interface {
	ValidateRecursive() bool
}

type ScheduleFunc

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

func (*ScheduleFunc) GetScheduleFunc

func (o *ScheduleFunc) GetScheduleFunc() schedule.TaskFunc

func (*ScheduleFunc) SetScheduleFunc

func (o *ScheduleFunc) SetScheduleFunc(v schedule.TaskFunc)

func (*ScheduleFunc) ValidateScheduleFunc

func (o *ScheduleFunc) ValidateScheduleFunc() bool

type ScheduleFuncGetter

type ScheduleFuncGetter interface {
	GetScheduleFunc() schedule.TaskFunc
}

type ScheduleFuncSetter

type ScheduleFuncSetter interface {
	SetScheduleFunc(schedule.TaskFunc)
}

type ScheduleFuncValidator

type ScheduleFuncValidator interface {
	ValidateScheduleFunc() bool
}

type Scheduler

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

func (*Scheduler) GetScheduler

func (o *Scheduler) GetScheduler() schedule.Scheduler

func (*Scheduler) SetScheduler

func (o *Scheduler) SetScheduler(v schedule.Scheduler)

func (*Scheduler) ValidateScheduler

func (o *Scheduler) ValidateScheduler() bool

type SchedulerGetter

type SchedulerGetter interface {
	GetScheduler() schedule.Scheduler
}

type SchedulerSetter

type SchedulerSetter interface {
	SetScheduler(schedule.Scheduler)
}

type SchedulerValidator

type SchedulerValidator interface {
	ValidateScheduler() bool
}

type SegmentChannel

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

func (*SegmentChannel) GetSegmentChannel

func (o *SegmentChannel) GetSegmentChannel() chan *segment.Segment

func (*SegmentChannel) SetSegmentChannel

func (o *SegmentChannel) SetSegmentChannel(v chan *segment.Segment)

func (*SegmentChannel) ValidateSegmentChannel

func (o *SegmentChannel) ValidateSegmentChannel() bool

type SegmentChannelGetter

type SegmentChannelGetter interface {
	GetSegmentChannel() chan *segment.Segment
}

type SegmentChannelSetter

type SegmentChannelSetter interface {
	SetSegmentChannel(chan *segment.Segment)
}

type SegmentChannelValidator

type SegmentChannelValidator interface {
	ValidateSegmentChannel() bool
}

type SegmentID

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

func (*SegmentID) GetSegmentID

func (o *SegmentID) GetSegmentID() string

func (*SegmentID) SetSegmentID

func (o *SegmentID) SetSegmentID(v string)

func (*SegmentID) ValidateSegmentID

func (o *SegmentID) ValidateSegmentID() bool

type SegmentIDFunc

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

func (*SegmentIDFunc) GetSegmentIDFunc

func (o *SegmentIDFunc) GetSegmentIDFunc() func(string)

func (*SegmentIDFunc) SetSegmentIDFunc

func (o *SegmentIDFunc) SetSegmentIDFunc(v func(string))

func (*SegmentIDFunc) ValidateSegmentIDFunc

func (o *SegmentIDFunc) ValidateSegmentIDFunc() bool

type SegmentIDFuncGetter

type SegmentIDFuncGetter interface {
	GetSegmentIDFunc() func(string)
}

type SegmentIDFuncSetter

type SegmentIDFuncSetter interface {
	SetSegmentIDFunc(func(string))
}

type SegmentIDFuncValidator

type SegmentIDFuncValidator interface {
	ValidateSegmentIDFunc() bool
}

type SegmentIDGetter

type SegmentIDGetter interface {
	GetSegmentID() string
}

type SegmentIDSetter

type SegmentIDSetter interface {
	SetSegmentID(string)
}

type SegmentIDValidator

type SegmentIDValidator interface {
	ValidateSegmentID() bool
}

type Service

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

func (*Service) GetService

func (o *Service) GetService() storage.Servicer

func (*Service) SetService

func (o *Service) SetService(v storage.Servicer)

func (*Service) ValidateService

func (o *Service) ValidateService() bool

type ServiceGetter

type ServiceGetter interface {
	GetService() storage.Servicer
}

type ServiceSetter

type ServiceSetter interface {
	SetService(storage.Servicer)
}

type ServiceValidator

type ServiceValidator interface {
	ValidateService() bool
}

type Size

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

func (*Size) GetSize

func (o *Size) GetSize() int64

func (*Size) SetSize

func (o *Size) SetSize(v int64)

func (*Size) ValidateSize

func (o *Size) ValidateSize() bool

type SizeGetter

type SizeGetter interface {
	GetSize() int64
}

type SizeSetter

type SizeSetter interface {
	SetSize(int64)
}

type SizeValidator

type SizeValidator interface {
	ValidateSize() bool
}

type SourcePath

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

func (*SourcePath) GetSourcePath

func (o *SourcePath) GetSourcePath() string

func (*SourcePath) SetSourcePath

func (o *SourcePath) SetSourcePath(v string)

func (*SourcePath) ValidateSourcePath

func (o *SourcePath) ValidateSourcePath() bool

type SourcePathGetter

type SourcePathGetter interface {
	GetSourcePath() string
}

type SourcePathSetter

type SourcePathSetter interface {
	SetSourcePath(string)
}

type SourcePathValidator

type SourcePathValidator interface {
	ValidateSourcePath() bool
}

type SourceService

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

func (*SourceService) GetSourceService

func (o *SourceService) GetSourceService() storage.Servicer

func (*SourceService) SetSourceService

func (o *SourceService) SetSourceService(v storage.Servicer)

func (*SourceService) ValidateSourceService

func (o *SourceService) ValidateSourceService() bool

type SourceServiceGetter

type SourceServiceGetter interface {
	GetSourceService() storage.Servicer
}

type SourceServiceSetter

type SourceServiceSetter interface {
	SetSourceService(storage.Servicer)
}

type SourceServiceValidator

type SourceServiceValidator interface {
	ValidateSourceService() bool
}

type SourceStorage

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

func (*SourceStorage) GetSourceStorage

func (o *SourceStorage) GetSourceStorage() storage.Storager

func (*SourceStorage) SetSourceStorage

func (o *SourceStorage) SetSourceStorage(v storage.Storager)

func (*SourceStorage) ValidateSourceStorage

func (o *SourceStorage) ValidateSourceStorage() bool

type SourceStorageGetter

type SourceStorageGetter interface {
	GetSourceStorage() storage.Storager
}

type SourceStorageSetter

type SourceStorageSetter interface {
	SetSourceStorage(storage.Storager)
}

type SourceStorageValidator

type SourceStorageValidator interface {
	ValidateSourceStorage() bool
}

type SourceType

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

func (*SourceType) GetSourceType

func (o *SourceType) GetSourceType() types.ObjectType

func (*SourceType) SetSourceType

func (o *SourceType) SetSourceType(v types.ObjectType)

func (*SourceType) ValidateSourceType

func (o *SourceType) ValidateSourceType() bool

type SourceTypeGetter

type SourceTypeGetter interface {
	GetSourceType() types.ObjectType
}

type SourceTypeSetter

type SourceTypeSetter interface {
	SetSourceType(types.ObjectType)
}

type SourceTypeValidator

type SourceTypeValidator interface {
	ValidateSourceType() bool
}

type Storage

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

func (*Storage) GetStorage

func (o *Storage) GetStorage() storage.Storager

func (*Storage) SetStorage

func (o *Storage) SetStorage(v storage.Storager)

func (*Storage) ValidateStorage

func (o *Storage) ValidateStorage() bool

type StorageBucketInitFailed

type StorageBucketInitFailed struct {
	StorageName
	Zone
	// contains filtered or unexported fields
}

func (*StorageBucketInitFailed) Error

func (f *StorageBucketInitFailed) Error() string

func (*StorageBucketInitFailed) Unwrap

func (f *StorageBucketInitFailed) Unwrap() error

type StorageGetter

type StorageGetter interface {
	GetStorage() storage.Storager
}

type StorageName

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

func (*StorageName) GetStorageName

func (o *StorageName) GetStorageName() string

func (*StorageName) SetStorageName

func (o *StorageName) SetStorageName(v string)

func (*StorageName) ValidateStorageName

func (o *StorageName) ValidateStorageName() bool

type StorageNameGetter

type StorageNameGetter interface {
	GetStorageName() string
}

type StorageNameSetter

type StorageNameSetter interface {
	SetStorageName(string)
}

type StorageNameValidator

type StorageNameValidator interface {
	ValidateStorageName() bool
}

type StorageObjectNoPermission

type StorageObjectNoPermission struct {
	DestinationPath
	// contains filtered or unexported fields
}

func (*StorageObjectNoPermission) Error

func (f *StorageObjectNoPermission) Error() string

func (*StorageObjectNoPermission) Unwrap

func (f *StorageObjectNoPermission) Unwrap() error

type StorageObjectNotFound

type StorageObjectNotFound struct {
	DestinationPath
	// contains filtered or unexported fields
}

func (*StorageObjectNotFound) Error

func (f *StorageObjectNotFound) Error() string

func (*StorageObjectNotFound) Unwrap

func (f *StorageObjectNotFound) Unwrap() error

type StorageServiceInitFailed

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

func (*StorageServiceInitFailed) Error

func (f *StorageServiceInitFailed) Error() string

func (*StorageServiceInitFailed) Unwrap

func (f *StorageServiceInitFailed) Unwrap() error

type StorageSetter

type StorageSetter interface {
	SetStorage(storage.Storager)
}

type StorageValidator

type StorageValidator interface {
	ValidateStorage() bool
}

type TotalSize

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

func (*TotalSize) GetTotalSize

func (o *TotalSize) GetTotalSize() int64

func (*TotalSize) SetTotalSize

func (o *TotalSize) SetTotalSize(v int64)

func (*TotalSize) ValidateTotalSize

func (o *TotalSize) ValidateTotalSize() bool

type TotalSizeGetter

type TotalSizeGetter interface {
	GetTotalSize() int64
}

type TotalSizeSetter

type TotalSizeSetter interface {
	SetTotalSize(int64)
}

type TotalSizeValidator

type TotalSizeValidator interface {
	ValidateTotalSize() bool
}

type Type

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

func (*Type) GetType

func (o *Type) GetType() types.ObjectType

func (*Type) SetType

func (o *Type) SetType(v types.ObjectType)

func (*Type) ValidateType

func (o *Type) ValidateType() bool

type TypeGetter

type TypeGetter interface {
	GetType() types.ObjectType
}

type TypeSetter

type TypeSetter interface {
	SetType(types.ObjectType)
}

type TypeValidator

type TypeValidator interface {
	ValidateType() bool
}

type URL

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

func (*URL) GetURL

func (o *URL) GetURL() string

func (*URL) SetURL

func (o *URL) SetURL(v string)

func (*URL) ValidateURL

func (o *URL) ValidateURL() bool

type URLGetter

type URLGetter interface {
	GetURL() string
}

type URLSetter

type URLSetter interface {
	SetURL(string)
}

type URLValidator

type URLValidator interface {
	ValidateURL() bool
}

type Unhandled

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

func (*Unhandled) Error

func (f *Unhandled) Error() string

func (*Unhandled) Unwrap

func (f *Unhandled) Unwrap() error

type UserInputByteSizeInvalid

type UserInputByteSizeInvalid struct {
	ByteSize
	// contains filtered or unexported fields
}

func (*UserInputByteSizeInvalid) Error

func (f *UserInputByteSizeInvalid) Error() string

func (*UserInputByteSizeInvalid) Unwrap

func (f *UserInputByteSizeInvalid) Unwrap() error

type UserInputDestinationPathInvalid

type UserInputDestinationPathInvalid struct {
	DestinationPath
	// contains filtered or unexported fields
}

func (*UserInputDestinationPathInvalid) Error

func (*UserInputDestinationPathInvalid) Unwrap

type WholeFile

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

func (*WholeFile) GetWholeFile

func (o *WholeFile) GetWholeFile() bool

func (*WholeFile) SetWholeFile

func (o *WholeFile) SetWholeFile(v bool)

func (*WholeFile) ValidateWholeFile

func (o *WholeFile) ValidateWholeFile() bool

type WholeFileGetter

type WholeFileGetter interface {
	GetWholeFile() bool
}

type WholeFileSetter

type WholeFileSetter interface {
	SetWholeFile(bool)
}

type WholeFileValidator

type WholeFileValidator interface {
	ValidateWholeFile() bool
}

type Zone

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

func (*Zone) GetZone

func (o *Zone) GetZone() string

func (*Zone) SetZone

func (o *Zone) SetZone(v string)

func (*Zone) ValidateZone

func (o *Zone) ValidateZone() bool

type ZoneGetter

type ZoneGetter interface {
	GetZone() string
}

type ZoneSetter

type ZoneSetter interface {
	SetZone(string)
}

type ZoneValidator

type ZoneValidator interface {
	ValidateZone() bool
}

Jump to

Keyboard shortcuts

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