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