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