extenders

package
v1.76.2 Latest Latest
Warning

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

Go to latest
Published: Jul 1, 2026 License: Apache-2.0 Imports: 18 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type ExtendersStack added in v1.71.0

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

func NewExtendersStack added in v1.71.0

func NewExtendersStack(edition *d8edition.Edition, bootstrappedHelper func() (bool, error), logger *log.Logger) *ExtendersStack

func (*ExtendersStack) AddConstraints added in v1.71.0

func (b *ExtendersStack) AddConstraints(module string, critical bool, access *moduletypes.ModuleAccessibility, requirements *v1alpha1.ModuleRequirements) error

func (*ExtendersStack) CheckModuleReleaseRequirements added in v1.71.0

func (b *ExtendersStack) CheckModuleReleaseRequirements(moduleName, moduleRelease string, moduleReleaseVersion *semver.Version, requirements *v1alpha1.ModuleReleaseRequirements) error

func (*ExtendersStack) DeleteConstraints added in v1.71.0

func (b *ExtendersStack) DeleteConstraints(module string)

func (*ExtendersStack) GetBootstrapped added in v1.76.1

func (b *ExtendersStack) GetBootstrapped() bootstrapped.IExtender

func (*ExtendersStack) GetDeckhouseVersion added in v1.76.1

func (b *ExtendersStack) GetDeckhouseVersion() deckhouseversion.IExtender

func (*ExtendersStack) GetEditionAvailable added in v1.76.1

func (b *ExtendersStack) GetEditionAvailable() editionavailable.IExtender

func (*ExtendersStack) GetEditionEnabled added in v1.76.1

func (b *ExtendersStack) GetEditionEnabled() editionenabled.IExtender

func (*ExtendersStack) GetExtenders added in v1.71.0

func (b *ExtendersStack) GetExtenders() []extenders.Extender

func (*ExtendersStack) GetKubernetesVersion added in v1.76.1

func (b *ExtendersStack) GetKubernetesVersion() kubernetesversion.IExtender

func (*ExtendersStack) GetModuleDependency added in v1.76.1

func (b *ExtendersStack) GetModuleDependency() moduledependency.IExtender

func (*ExtendersStack) IsExtendersField added in v1.71.0

func (b *ExtendersStack) IsExtendersField(field string) bool

type IExtendersStack added in v1.76.1

type IExtendersStack interface {
	GetExtenders() []extenders.Extender
	AddConstraints(module string, critical bool, access *moduletypes.ModuleAccessibility, requirements *v1alpha1.ModuleRequirements) error
	DeleteConstraints(module string)
	CheckModuleReleaseRequirements(moduleName, moduleRelease string, moduleReleaseVersion *semver.Version, requirements *v1alpha1.ModuleReleaseRequirements) error
	IsExtendersField(field string) bool

	GetDeckhouseVersion() deckhouseversion.IExtender
	GetKubernetesVersion() kubernetesversion.IExtender
	GetModuleDependency() moduledependency.IExtender
	GetBootstrapped() bootstrapped.IExtender
	GetEditionAvailable() editionavailable.IExtender
	GetEditionEnabled() editionenabled.IExtender
}

type IExtendersStackMock added in v1.76.1

type IExtendersStackMock struct {
	AddConstraintsMock mIExtendersStackMockAddConstraints

	CheckModuleReleaseRequirementsMock mIExtendersStackMockCheckModuleReleaseRequirements

	DeleteConstraintsMock mIExtendersStackMockDeleteConstraints

	GetBootstrappedMock mIExtendersStackMockGetBootstrapped

	GetDeckhouseVersionMock mIExtendersStackMockGetDeckhouseVersion

	GetEditionAvailableMock mIExtendersStackMockGetEditionAvailable

	GetEditionEnabledMock mIExtendersStackMockGetEditionEnabled

	GetExtendersMock mIExtendersStackMockGetExtenders

	GetKubernetesVersionMock mIExtendersStackMockGetKubernetesVersion

	GetModuleDependencyMock mIExtendersStackMockGetModuleDependency

	IsExtendersFieldMock mIExtendersStackMockIsExtendersField
	// contains filtered or unexported fields
}

IExtendersStackMock implements IExtendersStack

func NewIExtendersStackMock added in v1.76.1

func NewIExtendersStackMock(t minimock.Tester) *IExtendersStackMock

NewIExtendersStackMock returns a mock for IExtendersStack

func (*IExtendersStackMock) AddConstraints added in v1.76.1

func (mmAddConstraints *IExtendersStackMock) AddConstraints(module string, critical bool, access *moduletypes.ModuleAccessibility, requirements *v1alpha1.ModuleRequirements) (err error)

AddConstraints implements IExtendersStack

func (*IExtendersStackMock) AddConstraintsAfterCounter added in v1.76.1

func (mmAddConstraints *IExtendersStackMock) AddConstraintsAfterCounter() uint64

AddConstraintsAfterCounter returns a count of finished IExtendersStackMock.AddConstraints invocations

func (*IExtendersStackMock) AddConstraintsBeforeCounter added in v1.76.1

func (mmAddConstraints *IExtendersStackMock) AddConstraintsBeforeCounter() uint64

AddConstraintsBeforeCounter returns a count of IExtendersStackMock.AddConstraints invocations

func (*IExtendersStackMock) CheckModuleReleaseRequirements added in v1.76.1

func (mmCheckModuleReleaseRequirements *IExtendersStackMock) CheckModuleReleaseRequirements(moduleName string, moduleRelease string, moduleReleaseVersion *semver.Version, requirements *v1alpha1.ModuleReleaseRequirements) (err error)

CheckModuleReleaseRequirements implements IExtendersStack

func (*IExtendersStackMock) CheckModuleReleaseRequirementsAfterCounter added in v1.76.1

func (mmCheckModuleReleaseRequirements *IExtendersStackMock) CheckModuleReleaseRequirementsAfterCounter() uint64

CheckModuleReleaseRequirementsAfterCounter returns a count of finished IExtendersStackMock.CheckModuleReleaseRequirements invocations

func (*IExtendersStackMock) CheckModuleReleaseRequirementsBeforeCounter added in v1.76.1

func (mmCheckModuleReleaseRequirements *IExtendersStackMock) CheckModuleReleaseRequirementsBeforeCounter() uint64

CheckModuleReleaseRequirementsBeforeCounter returns a count of IExtendersStackMock.CheckModuleReleaseRequirements invocations

func (*IExtendersStackMock) DeleteConstraints added in v1.76.1

func (mmDeleteConstraints *IExtendersStackMock) DeleteConstraints(module string)

DeleteConstraints implements IExtendersStack

func (*IExtendersStackMock) DeleteConstraintsAfterCounter added in v1.76.1

func (mmDeleteConstraints *IExtendersStackMock) DeleteConstraintsAfterCounter() uint64

DeleteConstraintsAfterCounter returns a count of finished IExtendersStackMock.DeleteConstraints invocations

func (*IExtendersStackMock) DeleteConstraintsBeforeCounter added in v1.76.1

func (mmDeleteConstraints *IExtendersStackMock) DeleteConstraintsBeforeCounter() uint64

DeleteConstraintsBeforeCounter returns a count of IExtendersStackMock.DeleteConstraints invocations

func (*IExtendersStackMock) GetBootstrapped added in v1.76.1

func (mmGetBootstrapped *IExtendersStackMock) GetBootstrapped() (i1 bootstrapped.IExtender)

GetBootstrapped implements IExtendersStack

func (*IExtendersStackMock) GetBootstrappedAfterCounter added in v1.76.1

func (mmGetBootstrapped *IExtendersStackMock) GetBootstrappedAfterCounter() uint64

GetBootstrappedAfterCounter returns a count of finished IExtendersStackMock.GetBootstrapped invocations

func (*IExtendersStackMock) GetBootstrappedBeforeCounter added in v1.76.1

func (mmGetBootstrapped *IExtendersStackMock) GetBootstrappedBeforeCounter() uint64

GetBootstrappedBeforeCounter returns a count of IExtendersStackMock.GetBootstrapped invocations

func (*IExtendersStackMock) GetDeckhouseVersion added in v1.76.1

func (mmGetDeckhouseVersion *IExtendersStackMock) GetDeckhouseVersion() (i1 deckhouseversion.IExtender)

GetDeckhouseVersion implements IExtendersStack

func (*IExtendersStackMock) GetDeckhouseVersionAfterCounter added in v1.76.1

func (mmGetDeckhouseVersion *IExtendersStackMock) GetDeckhouseVersionAfterCounter() uint64

GetDeckhouseVersionAfterCounter returns a count of finished IExtendersStackMock.GetDeckhouseVersion invocations

func (*IExtendersStackMock) GetDeckhouseVersionBeforeCounter added in v1.76.1

func (mmGetDeckhouseVersion *IExtendersStackMock) GetDeckhouseVersionBeforeCounter() uint64

GetDeckhouseVersionBeforeCounter returns a count of IExtendersStackMock.GetDeckhouseVersion invocations

func (*IExtendersStackMock) GetEditionAvailable added in v1.76.1

func (mmGetEditionAvailable *IExtendersStackMock) GetEditionAvailable() (i1 editionavailable.IExtender)

GetEditionAvailable implements IExtendersStack

func (*IExtendersStackMock) GetEditionAvailableAfterCounter added in v1.76.1

func (mmGetEditionAvailable *IExtendersStackMock) GetEditionAvailableAfterCounter() uint64

GetEditionAvailableAfterCounter returns a count of finished IExtendersStackMock.GetEditionAvailable invocations

func (*IExtendersStackMock) GetEditionAvailableBeforeCounter added in v1.76.1

func (mmGetEditionAvailable *IExtendersStackMock) GetEditionAvailableBeforeCounter() uint64

GetEditionAvailableBeforeCounter returns a count of IExtendersStackMock.GetEditionAvailable invocations

func (*IExtendersStackMock) GetEditionEnabled added in v1.76.1

func (mmGetEditionEnabled *IExtendersStackMock) GetEditionEnabled() (i1 editionenabled.IExtender)

GetEditionEnabled implements IExtendersStack

func (*IExtendersStackMock) GetEditionEnabledAfterCounter added in v1.76.1

func (mmGetEditionEnabled *IExtendersStackMock) GetEditionEnabledAfterCounter() uint64

GetEditionEnabledAfterCounter returns a count of finished IExtendersStackMock.GetEditionEnabled invocations

func (*IExtendersStackMock) GetEditionEnabledBeforeCounter added in v1.76.1

func (mmGetEditionEnabled *IExtendersStackMock) GetEditionEnabledBeforeCounter() uint64

GetEditionEnabledBeforeCounter returns a count of IExtendersStackMock.GetEditionEnabled invocations

func (*IExtendersStackMock) GetExtenders added in v1.76.1

func (mmGetExtenders *IExtendersStackMock) GetExtenders() (ea1 []extenders.Extender)

GetExtenders implements IExtendersStack

func (*IExtendersStackMock) GetExtendersAfterCounter added in v1.76.1

func (mmGetExtenders *IExtendersStackMock) GetExtendersAfterCounter() uint64

GetExtendersAfterCounter returns a count of finished IExtendersStackMock.GetExtenders invocations

func (*IExtendersStackMock) GetExtendersBeforeCounter added in v1.76.1

func (mmGetExtenders *IExtendersStackMock) GetExtendersBeforeCounter() uint64

GetExtendersBeforeCounter returns a count of IExtendersStackMock.GetExtenders invocations

func (*IExtendersStackMock) GetKubernetesVersion added in v1.76.1

func (mmGetKubernetesVersion *IExtendersStackMock) GetKubernetesVersion() (i1 kubernetesversion.IExtender)

GetKubernetesVersion implements IExtendersStack

func (*IExtendersStackMock) GetKubernetesVersionAfterCounter added in v1.76.1

func (mmGetKubernetesVersion *IExtendersStackMock) GetKubernetesVersionAfterCounter() uint64

GetKubernetesVersionAfterCounter returns a count of finished IExtendersStackMock.GetKubernetesVersion invocations

func (*IExtendersStackMock) GetKubernetesVersionBeforeCounter added in v1.76.1

func (mmGetKubernetesVersion *IExtendersStackMock) GetKubernetesVersionBeforeCounter() uint64

GetKubernetesVersionBeforeCounter returns a count of IExtendersStackMock.GetKubernetesVersion invocations

func (*IExtendersStackMock) GetModuleDependency added in v1.76.1

func (mmGetModuleDependency *IExtendersStackMock) GetModuleDependency() (i1 moduledependency.IExtender)

GetModuleDependency implements IExtendersStack

func (*IExtendersStackMock) GetModuleDependencyAfterCounter added in v1.76.1

func (mmGetModuleDependency *IExtendersStackMock) GetModuleDependencyAfterCounter() uint64

GetModuleDependencyAfterCounter returns a count of finished IExtendersStackMock.GetModuleDependency invocations

func (*IExtendersStackMock) GetModuleDependencyBeforeCounter added in v1.76.1

func (mmGetModuleDependency *IExtendersStackMock) GetModuleDependencyBeforeCounter() uint64

GetModuleDependencyBeforeCounter returns a count of IExtendersStackMock.GetModuleDependency invocations

func (*IExtendersStackMock) IsExtendersField added in v1.76.1

func (mmIsExtendersField *IExtendersStackMock) IsExtendersField(field string) (b1 bool)

IsExtendersField implements IExtendersStack

func (*IExtendersStackMock) IsExtendersFieldAfterCounter added in v1.76.1

func (mmIsExtendersField *IExtendersStackMock) IsExtendersFieldAfterCounter() uint64

IsExtendersFieldAfterCounter returns a count of finished IExtendersStackMock.IsExtendersField invocations

func (*IExtendersStackMock) IsExtendersFieldBeforeCounter added in v1.76.1

func (mmIsExtendersField *IExtendersStackMock) IsExtendersFieldBeforeCounter() uint64

IsExtendersFieldBeforeCounter returns a count of IExtendersStackMock.IsExtendersField invocations

func (*IExtendersStackMock) MinimockAddConstraintsDone added in v1.76.1

func (m *IExtendersStackMock) MinimockAddConstraintsDone() bool

MinimockAddConstraintsDone returns true if the count of the AddConstraints invocations corresponds the number of defined expectations

func (*IExtendersStackMock) MinimockAddConstraintsInspect added in v1.76.1

func (m *IExtendersStackMock) MinimockAddConstraintsInspect()

MinimockAddConstraintsInspect logs each unmet expectation

func (*IExtendersStackMock) MinimockCheckModuleReleaseRequirementsDone added in v1.76.1

func (m *IExtendersStackMock) MinimockCheckModuleReleaseRequirementsDone() bool

MinimockCheckModuleReleaseRequirementsDone returns true if the count of the CheckModuleReleaseRequirements invocations corresponds the number of defined expectations

func (*IExtendersStackMock) MinimockCheckModuleReleaseRequirementsInspect added in v1.76.1

func (m *IExtendersStackMock) MinimockCheckModuleReleaseRequirementsInspect()

MinimockCheckModuleReleaseRequirementsInspect logs each unmet expectation

func (*IExtendersStackMock) MinimockDeleteConstraintsDone added in v1.76.1

func (m *IExtendersStackMock) MinimockDeleteConstraintsDone() bool

MinimockDeleteConstraintsDone returns true if the count of the DeleteConstraints invocations corresponds the number of defined expectations

func (*IExtendersStackMock) MinimockDeleteConstraintsInspect added in v1.76.1

func (m *IExtendersStackMock) MinimockDeleteConstraintsInspect()

MinimockDeleteConstraintsInspect logs each unmet expectation

func (*IExtendersStackMock) MinimockFinish added in v1.76.1

func (m *IExtendersStackMock) MinimockFinish()

MinimockFinish checks that all mocked methods have been called the expected number of times

func (*IExtendersStackMock) MinimockGetBootstrappedDone added in v1.76.1

func (m *IExtendersStackMock) MinimockGetBootstrappedDone() bool

MinimockGetBootstrappedDone returns true if the count of the GetBootstrapped invocations corresponds the number of defined expectations

func (*IExtendersStackMock) MinimockGetBootstrappedInspect added in v1.76.1

func (m *IExtendersStackMock) MinimockGetBootstrappedInspect()

MinimockGetBootstrappedInspect logs each unmet expectation

func (*IExtendersStackMock) MinimockGetDeckhouseVersionDone added in v1.76.1

func (m *IExtendersStackMock) MinimockGetDeckhouseVersionDone() bool

MinimockGetDeckhouseVersionDone returns true if the count of the GetDeckhouseVersion invocations corresponds the number of defined expectations

func (*IExtendersStackMock) MinimockGetDeckhouseVersionInspect added in v1.76.1

func (m *IExtendersStackMock) MinimockGetDeckhouseVersionInspect()

MinimockGetDeckhouseVersionInspect logs each unmet expectation

func (*IExtendersStackMock) MinimockGetEditionAvailableDone added in v1.76.1

func (m *IExtendersStackMock) MinimockGetEditionAvailableDone() bool

MinimockGetEditionAvailableDone returns true if the count of the GetEditionAvailable invocations corresponds the number of defined expectations

func (*IExtendersStackMock) MinimockGetEditionAvailableInspect added in v1.76.1

func (m *IExtendersStackMock) MinimockGetEditionAvailableInspect()

MinimockGetEditionAvailableInspect logs each unmet expectation

func (*IExtendersStackMock) MinimockGetEditionEnabledDone added in v1.76.1

func (m *IExtendersStackMock) MinimockGetEditionEnabledDone() bool

MinimockGetEditionEnabledDone returns true if the count of the GetEditionEnabled invocations corresponds the number of defined expectations

func (*IExtendersStackMock) MinimockGetEditionEnabledInspect added in v1.76.1

func (m *IExtendersStackMock) MinimockGetEditionEnabledInspect()

MinimockGetEditionEnabledInspect logs each unmet expectation

func (*IExtendersStackMock) MinimockGetExtendersDone added in v1.76.1

func (m *IExtendersStackMock) MinimockGetExtendersDone() bool

MinimockGetExtendersDone returns true if the count of the GetExtenders invocations corresponds the number of defined expectations

func (*IExtendersStackMock) MinimockGetExtendersInspect added in v1.76.1

func (m *IExtendersStackMock) MinimockGetExtendersInspect()

MinimockGetExtendersInspect logs each unmet expectation

func (*IExtendersStackMock) MinimockGetKubernetesVersionDone added in v1.76.1

func (m *IExtendersStackMock) MinimockGetKubernetesVersionDone() bool

MinimockGetKubernetesVersionDone returns true if the count of the GetKubernetesVersion invocations corresponds the number of defined expectations

func (*IExtendersStackMock) MinimockGetKubernetesVersionInspect added in v1.76.1

func (m *IExtendersStackMock) MinimockGetKubernetesVersionInspect()

MinimockGetKubernetesVersionInspect logs each unmet expectation

func (*IExtendersStackMock) MinimockGetModuleDependencyDone added in v1.76.1

func (m *IExtendersStackMock) MinimockGetModuleDependencyDone() bool

MinimockGetModuleDependencyDone returns true if the count of the GetModuleDependency invocations corresponds the number of defined expectations

func (*IExtendersStackMock) MinimockGetModuleDependencyInspect added in v1.76.1

func (m *IExtendersStackMock) MinimockGetModuleDependencyInspect()

MinimockGetModuleDependencyInspect logs each unmet expectation

func (*IExtendersStackMock) MinimockIsExtendersFieldDone added in v1.76.1

func (m *IExtendersStackMock) MinimockIsExtendersFieldDone() bool

MinimockIsExtendersFieldDone returns true if the count of the IsExtendersField invocations corresponds the number of defined expectations

func (*IExtendersStackMock) MinimockIsExtendersFieldInspect added in v1.76.1

func (m *IExtendersStackMock) MinimockIsExtendersFieldInspect()

MinimockIsExtendersFieldInspect logs each unmet expectation

func (*IExtendersStackMock) MinimockWait added in v1.76.1

func (m *IExtendersStackMock) MinimockWait(timeout mm_time.Duration)

MinimockWait waits for all mocked methods to be called the expected number of times

type IExtendersStackMockAddConstraintsExpectation added in v1.76.1

type IExtendersStackMockAddConstraintsExpectation struct {
	Counter uint64
	// contains filtered or unexported fields
}

IExtendersStackMockAddConstraintsExpectation specifies expectation struct of the IExtendersStack.AddConstraints

func (*IExtendersStackMockAddConstraintsExpectation) Then added in v1.76.1

Then sets up IExtendersStack.AddConstraints return parameters for the expectation previously defined by the When method

type IExtendersStackMockAddConstraintsExpectationOrigins added in v1.76.1

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

IExtendersStackMockAddConstraintsOrigins contains origins of expectations of the IExtendersStack.AddConstraints

type IExtendersStackMockAddConstraintsParamPtrs added in v1.76.1

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

IExtendersStackMockAddConstraintsParamPtrs contains pointers to parameters of the IExtendersStack.AddConstraints

type IExtendersStackMockAddConstraintsParams added in v1.76.1

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

IExtendersStackMockAddConstraintsParams contains parameters of the IExtendersStack.AddConstraints

type IExtendersStackMockAddConstraintsResults added in v1.76.1

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

IExtendersStackMockAddConstraintsResults contains results of the IExtendersStack.AddConstraints

type IExtendersStackMockCheckModuleReleaseRequirementsExpectation added in v1.76.1

type IExtendersStackMockCheckModuleReleaseRequirementsExpectation struct {
	Counter uint64
	// contains filtered or unexported fields
}

IExtendersStackMockCheckModuleReleaseRequirementsExpectation specifies expectation struct of the IExtendersStack.CheckModuleReleaseRequirements

func (*IExtendersStackMockCheckModuleReleaseRequirementsExpectation) Then added in v1.76.1

Then sets up IExtendersStack.CheckModuleReleaseRequirements return parameters for the expectation previously defined by the When method

type IExtendersStackMockCheckModuleReleaseRequirementsExpectationOrigins added in v1.76.1

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

IExtendersStackMockCheckModuleReleaseRequirementsOrigins contains origins of expectations of the IExtendersStack.CheckModuleReleaseRequirements

type IExtendersStackMockCheckModuleReleaseRequirementsParamPtrs added in v1.76.1

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

IExtendersStackMockCheckModuleReleaseRequirementsParamPtrs contains pointers to parameters of the IExtendersStack.CheckModuleReleaseRequirements

type IExtendersStackMockCheckModuleReleaseRequirementsParams added in v1.76.1

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

IExtendersStackMockCheckModuleReleaseRequirementsParams contains parameters of the IExtendersStack.CheckModuleReleaseRequirements

type IExtendersStackMockCheckModuleReleaseRequirementsResults added in v1.76.1

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

IExtendersStackMockCheckModuleReleaseRequirementsResults contains results of the IExtendersStack.CheckModuleReleaseRequirements

type IExtendersStackMockDeleteConstraintsExpectation added in v1.76.1

type IExtendersStackMockDeleteConstraintsExpectation struct {
	Counter uint64
	// contains filtered or unexported fields
}

IExtendersStackMockDeleteConstraintsExpectation specifies expectation struct of the IExtendersStack.DeleteConstraints

func (*IExtendersStackMockDeleteConstraintsExpectation) Then added in v1.76.1

type IExtendersStackMockDeleteConstraintsExpectationOrigins added in v1.76.1

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

IExtendersStackMockDeleteConstraintsOrigins contains origins of expectations of the IExtendersStack.DeleteConstraints

type IExtendersStackMockDeleteConstraintsParamPtrs added in v1.76.1

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

IExtendersStackMockDeleteConstraintsParamPtrs contains pointers to parameters of the IExtendersStack.DeleteConstraints

type IExtendersStackMockDeleteConstraintsParams added in v1.76.1

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

IExtendersStackMockDeleteConstraintsParams contains parameters of the IExtendersStack.DeleteConstraints

type IExtendersStackMockGetBootstrappedExpectation added in v1.76.1

type IExtendersStackMockGetBootstrappedExpectation struct {
	Counter uint64
	// contains filtered or unexported fields
}

IExtendersStackMockGetBootstrappedExpectation specifies expectation struct of the IExtendersStack.GetBootstrapped

type IExtendersStackMockGetBootstrappedResults added in v1.76.1

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

IExtendersStackMockGetBootstrappedResults contains results of the IExtendersStack.GetBootstrapped

type IExtendersStackMockGetDeckhouseVersionExpectation added in v1.76.1

type IExtendersStackMockGetDeckhouseVersionExpectation struct {
	Counter uint64
	// contains filtered or unexported fields
}

IExtendersStackMockGetDeckhouseVersionExpectation specifies expectation struct of the IExtendersStack.GetDeckhouseVersion

type IExtendersStackMockGetDeckhouseVersionResults added in v1.76.1

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

IExtendersStackMockGetDeckhouseVersionResults contains results of the IExtendersStack.GetDeckhouseVersion

type IExtendersStackMockGetEditionAvailableExpectation added in v1.76.1

type IExtendersStackMockGetEditionAvailableExpectation struct {
	Counter uint64
	// contains filtered or unexported fields
}

IExtendersStackMockGetEditionAvailableExpectation specifies expectation struct of the IExtendersStack.GetEditionAvailable

type IExtendersStackMockGetEditionAvailableResults added in v1.76.1

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

IExtendersStackMockGetEditionAvailableResults contains results of the IExtendersStack.GetEditionAvailable

type IExtendersStackMockGetEditionEnabledExpectation added in v1.76.1

type IExtendersStackMockGetEditionEnabledExpectation struct {
	Counter uint64
	// contains filtered or unexported fields
}

IExtendersStackMockGetEditionEnabledExpectation specifies expectation struct of the IExtendersStack.GetEditionEnabled

type IExtendersStackMockGetEditionEnabledResults added in v1.76.1

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

IExtendersStackMockGetEditionEnabledResults contains results of the IExtendersStack.GetEditionEnabled

type IExtendersStackMockGetExtendersExpectation added in v1.76.1

type IExtendersStackMockGetExtendersExpectation struct {
	Counter uint64
	// contains filtered or unexported fields
}

IExtendersStackMockGetExtendersExpectation specifies expectation struct of the IExtendersStack.GetExtenders

type IExtendersStackMockGetExtendersResults added in v1.76.1

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

IExtendersStackMockGetExtendersResults contains results of the IExtendersStack.GetExtenders

type IExtendersStackMockGetKubernetesVersionExpectation added in v1.76.1

type IExtendersStackMockGetKubernetesVersionExpectation struct {
	Counter uint64
	// contains filtered or unexported fields
}

IExtendersStackMockGetKubernetesVersionExpectation specifies expectation struct of the IExtendersStack.GetKubernetesVersion

type IExtendersStackMockGetKubernetesVersionResults added in v1.76.1

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

IExtendersStackMockGetKubernetesVersionResults contains results of the IExtendersStack.GetKubernetesVersion

type IExtendersStackMockGetModuleDependencyExpectation added in v1.76.1

type IExtendersStackMockGetModuleDependencyExpectation struct {
	Counter uint64
	// contains filtered or unexported fields
}

IExtendersStackMockGetModuleDependencyExpectation specifies expectation struct of the IExtendersStack.GetModuleDependency

type IExtendersStackMockGetModuleDependencyResults added in v1.76.1

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

IExtendersStackMockGetModuleDependencyResults contains results of the IExtendersStack.GetModuleDependency

type IExtendersStackMockIsExtendersFieldExpectation added in v1.76.1

type IExtendersStackMockIsExtendersFieldExpectation struct {
	Counter uint64
	// contains filtered or unexported fields
}

IExtendersStackMockIsExtendersFieldExpectation specifies expectation struct of the IExtendersStack.IsExtendersField

func (*IExtendersStackMockIsExtendersFieldExpectation) Then added in v1.76.1

Then sets up IExtendersStack.IsExtendersField return parameters for the expectation previously defined by the When method

type IExtendersStackMockIsExtendersFieldExpectationOrigins added in v1.76.1

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

IExtendersStackMockIsExtendersFieldOrigins contains origins of expectations of the IExtendersStack.IsExtendersField

type IExtendersStackMockIsExtendersFieldParamPtrs added in v1.76.1

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

IExtendersStackMockIsExtendersFieldParamPtrs contains pointers to parameters of the IExtendersStack.IsExtendersField

type IExtendersStackMockIsExtendersFieldParams added in v1.76.1

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

IExtendersStackMockIsExtendersFieldParams contains parameters of the IExtendersStack.IsExtendersField

type IExtendersStackMockIsExtendersFieldResults added in v1.76.1

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

IExtendersStackMockIsExtendersFieldResults contains results of the IExtendersStack.IsExtendersField

Jump to

Keyboard shortcuts

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