Documentation ¶
Index ¶
- type InstanceLister
- type InstanceListerExpansion
- type InstanceNamespaceLister
- type InstanceNamespaceListerExpansion
- type OperatorLister
- type OperatorListerExpansion
- type OperatorNamespaceLister
- type OperatorNamespaceListerExpansion
- type OperatorVersionLister
- type OperatorVersionListerExpansion
- type OperatorVersionNamespaceLister
- type OperatorVersionNamespaceListerExpansion
- type PlanExecutionLister
- type PlanExecutionListerExpansion
- type PlanExecutionNamespaceLister
- type PlanExecutionNamespaceListerExpansion
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type InstanceLister ¶
type InstanceLister interface { // List lists all Instances in the indexer. List(selector labels.Selector) (ret []*v1alpha1.Instance, err error) // Instances returns an object that can list and get Instances. Instances(namespace string) InstanceNamespaceLister InstanceListerExpansion }
InstanceLister helps list Instances.
func NewInstanceLister ¶
func NewInstanceLister(indexer cache.Indexer) InstanceLister
NewInstanceLister returns a new InstanceLister.
type InstanceListerExpansion ¶
type InstanceListerExpansion interface{}
InstanceListerExpansion allows custom methods to be added to InstanceLister.
type InstanceNamespaceLister ¶
type InstanceNamespaceLister interface { // List lists all Instances in the indexer for a given namespace. List(selector labels.Selector) (ret []*v1alpha1.Instance, err error) // Get retrieves the Instance from the indexer for a given namespace and name. Get(name string) (*v1alpha1.Instance, error) InstanceNamespaceListerExpansion }
InstanceNamespaceLister helps list and get Instances.
type InstanceNamespaceListerExpansion ¶
type InstanceNamespaceListerExpansion interface{}
InstanceNamespaceListerExpansion allows custom methods to be added to InstanceNamespaceLister.
type OperatorLister ¶ added in v0.3.0
type OperatorLister interface { // List lists all Operators in the indexer. List(selector labels.Selector) (ret []*v1alpha1.Operator, err error) // Operators returns an object that can list and get Operators. Operators(namespace string) OperatorNamespaceLister OperatorListerExpansion }
OperatorLister helps list Operators.
func NewOperatorLister ¶ added in v0.3.0
func NewOperatorLister(indexer cache.Indexer) OperatorLister
NewOperatorLister returns a new OperatorLister.
type OperatorListerExpansion ¶ added in v0.3.0
type OperatorListerExpansion interface{}
OperatorListerExpansion allows custom methods to be added to OperatorLister.
type OperatorNamespaceLister ¶ added in v0.3.0
type OperatorNamespaceLister interface { // List lists all Operators in the indexer for a given namespace. List(selector labels.Selector) (ret []*v1alpha1.Operator, err error) // Get retrieves the Operator from the indexer for a given namespace and name. Get(name string) (*v1alpha1.Operator, error) OperatorNamespaceListerExpansion }
OperatorNamespaceLister helps list and get Operators.
type OperatorNamespaceListerExpansion ¶ added in v0.3.0
type OperatorNamespaceListerExpansion interface{}
OperatorNamespaceListerExpansion allows custom methods to be added to OperatorNamespaceLister.
type OperatorVersionLister ¶ added in v0.3.0
type OperatorVersionLister interface { // List lists all OperatorVersions in the indexer. List(selector labels.Selector) (ret []*v1alpha1.OperatorVersion, err error) // OperatorVersions returns an object that can list and get OperatorVersions. OperatorVersions(namespace string) OperatorVersionNamespaceLister OperatorVersionListerExpansion }
OperatorVersionLister helps list OperatorVersions.
func NewOperatorVersionLister ¶ added in v0.3.0
func NewOperatorVersionLister(indexer cache.Indexer) OperatorVersionLister
NewOperatorVersionLister returns a new OperatorVersionLister.
type OperatorVersionListerExpansion ¶ added in v0.3.0
type OperatorVersionListerExpansion interface{}
OperatorVersionListerExpansion allows custom methods to be added to OperatorVersionLister.
type OperatorVersionNamespaceLister ¶ added in v0.3.0
type OperatorVersionNamespaceLister interface { // List lists all OperatorVersions in the indexer for a given namespace. List(selector labels.Selector) (ret []*v1alpha1.OperatorVersion, err error) // Get retrieves the OperatorVersion from the indexer for a given namespace and name. Get(name string) (*v1alpha1.OperatorVersion, error) OperatorVersionNamespaceListerExpansion }
OperatorVersionNamespaceLister helps list and get OperatorVersions.
type OperatorVersionNamespaceListerExpansion ¶ added in v0.3.0
type OperatorVersionNamespaceListerExpansion interface{}
OperatorVersionNamespaceListerExpansion allows custom methods to be added to OperatorVersionNamespaceLister.
type PlanExecutionLister ¶
type PlanExecutionLister interface { // List lists all PlanExecutions in the indexer. List(selector labels.Selector) (ret []*v1alpha1.PlanExecution, err error) // PlanExecutions returns an object that can list and get PlanExecutions. PlanExecutions(namespace string) PlanExecutionNamespaceLister PlanExecutionListerExpansion }
PlanExecutionLister helps list PlanExecutions.
func NewPlanExecutionLister ¶
func NewPlanExecutionLister(indexer cache.Indexer) PlanExecutionLister
NewPlanExecutionLister returns a new PlanExecutionLister.
type PlanExecutionListerExpansion ¶
type PlanExecutionListerExpansion interface{}
PlanExecutionListerExpansion allows custom methods to be added to PlanExecutionLister.
type PlanExecutionNamespaceLister ¶
type PlanExecutionNamespaceLister interface { // List lists all PlanExecutions in the indexer for a given namespace. List(selector labels.Selector) (ret []*v1alpha1.PlanExecution, err error) // Get retrieves the PlanExecution from the indexer for a given namespace and name. Get(name string) (*v1alpha1.PlanExecution, error) PlanExecutionNamespaceListerExpansion }
PlanExecutionNamespaceLister helps list and get PlanExecutions.
type PlanExecutionNamespaceListerExpansion ¶
type PlanExecutionNamespaceListerExpansion interface{}
PlanExecutionNamespaceListerExpansion allows custom methods to be added to PlanExecutionNamespaceLister.