Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type EdgeApplicationLister ¶
type EdgeApplicationLister interface { // List lists all EdgeApplications in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.EdgeApplication, err error) // EdgeApplications returns an object that can list and get EdgeApplications. EdgeApplications(namespace string) EdgeApplicationNamespaceLister EdgeApplicationListerExpansion }
EdgeApplicationLister helps list EdgeApplications. All objects returned here must be treated as read-only.
func NewEdgeApplicationLister ¶
func NewEdgeApplicationLister(indexer cache.Indexer) EdgeApplicationLister
NewEdgeApplicationLister returns a new EdgeApplicationLister.
type EdgeApplicationListerExpansion ¶
type EdgeApplicationListerExpansion interface{}
EdgeApplicationListerExpansion allows custom methods to be added to EdgeApplicationLister.
type EdgeApplicationNamespaceLister ¶
type EdgeApplicationNamespaceLister interface { // List lists all EdgeApplications in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.EdgeApplication, err error) // Get retrieves the EdgeApplication from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.EdgeApplication, error) EdgeApplicationNamespaceListerExpansion }
EdgeApplicationNamespaceLister helps list and get EdgeApplications. All objects returned here must be treated as read-only.
type EdgeApplicationNamespaceListerExpansion ¶
type EdgeApplicationNamespaceListerExpansion interface{}
EdgeApplicationNamespaceListerExpansion allows custom methods to be added to EdgeApplicationNamespaceLister.
type NodeGroupLister ¶
type NodeGroupLister interface { // List lists all NodeGroups in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.NodeGroup, err error) // Get retrieves the NodeGroup from the index for a given name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.NodeGroup, error) NodeGroupListerExpansion }
NodeGroupLister helps list NodeGroups. All objects returned here must be treated as read-only.
func NewNodeGroupLister ¶
func NewNodeGroupLister(indexer cache.Indexer) NodeGroupLister
NewNodeGroupLister returns a new NodeGroupLister.
type NodeGroupListerExpansion ¶
type NodeGroupListerExpansion interface{}
NodeGroupListerExpansion allows custom methods to be added to NodeGroupLister.