Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type NetBoxIPLister ¶
type NetBoxIPLister interface { // List lists all NetBoxIPs in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1beta1.NetBoxIP, err error) // NetBoxIPs returns an object that can list and get NetBoxIPs. NetBoxIPs(namespace string) NetBoxIPNamespaceLister NetBoxIPListerExpansion }
NetBoxIPLister helps list NetBoxIPs. All objects returned here must be treated as read-only.
func NewNetBoxIPLister ¶
func NewNetBoxIPLister(indexer cache.Indexer) NetBoxIPLister
NewNetBoxIPLister returns a new NetBoxIPLister.
type NetBoxIPListerExpansion ¶
type NetBoxIPListerExpansion interface{}
NetBoxIPListerExpansion allows custom methods to be added to NetBoxIPLister.
type NetBoxIPNamespaceLister ¶
type NetBoxIPNamespaceLister interface { // List lists all NetBoxIPs in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1beta1.NetBoxIP, err error) // Get retrieves the NetBoxIP from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1beta1.NetBoxIP, error) NetBoxIPNamespaceListerExpansion }
NetBoxIPNamespaceLister helps list and get NetBoxIPs. All objects returned here must be treated as read-only.
type NetBoxIPNamespaceListerExpansion ¶
type NetBoxIPNamespaceListerExpansion interface{}
NetBoxIPNamespaceListerExpansion allows custom methods to be added to NetBoxIPNamespaceLister.
Click to show internal directories.
Click to hide internal directories.