Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type DomainConfigLister ¶
type DomainConfigLister interface { // List lists all DomainConfigs in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.DomainConfig, err error) // DomainConfigs returns an object that can list and get DomainConfigs. DomainConfigs(namespace string) DomainConfigNamespaceLister DomainConfigListerExpansion }
DomainConfigLister helps list DomainConfigs. All objects returned here must be treated as read-only.
func NewDomainConfigLister ¶
func NewDomainConfigLister(indexer cache.Indexer) DomainConfigLister
NewDomainConfigLister returns a new DomainConfigLister.
type DomainConfigListerExpansion ¶
type DomainConfigListerExpansion interface{}
DomainConfigListerExpansion allows custom methods to be added to DomainConfigLister.
type DomainConfigNamespaceLister ¶
type DomainConfigNamespaceLister interface { // List lists all DomainConfigs in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.DomainConfig, err error) // Get retrieves the DomainConfig from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.DomainConfig, error) DomainConfigNamespaceListerExpansion }
DomainConfigNamespaceLister helps list and get DomainConfigs. All objects returned here must be treated as read-only.
type DomainConfigNamespaceListerExpansion ¶
type DomainConfigNamespaceListerExpansion interface{}
DomainConfigNamespaceListerExpansion allows custom methods to be added to DomainConfigNamespaceLister.
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.