Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type DomainNameLister ¶
type DomainNameLister interface { // List lists all DomainNames in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.DomainName, err error) // DomainNames returns an object that can list and get DomainNames. DomainNames(namespace string) DomainNameNamespaceLister DomainNameListerExpansion }
DomainNameLister helps list DomainNames. All objects returned here must be treated as read-only.
func NewDomainNameLister ¶
func NewDomainNameLister(indexer cache.Indexer) DomainNameLister
NewDomainNameLister returns a new DomainNameLister.
type DomainNameListerExpansion ¶
type DomainNameListerExpansion interface{}
DomainNameListerExpansion allows custom methods to be added to DomainNameLister.
type DomainNameNamespaceLister ¶
type DomainNameNamespaceLister interface { // List lists all DomainNames in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.DomainName, err error) // Get retrieves the DomainName from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.DomainName, error) DomainNameNamespaceListerExpansion }
DomainNameNamespaceLister helps list and get DomainNames. All objects returned here must be treated as read-only.
type DomainNameNamespaceListerExpansion ¶
type DomainNameNamespaceListerExpansion interface{}
DomainNameNamespaceListerExpansion allows custom methods to be added to DomainNameNamespaceLister.
type DomainRecordLister ¶
type DomainRecordLister interface { // List lists all DomainRecords in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.DomainRecord, err error) // DomainRecords returns an object that can list and get DomainRecords. DomainRecords(namespace string) DomainRecordNamespaceLister DomainRecordListerExpansion }
DomainRecordLister helps list DomainRecords. All objects returned here must be treated as read-only.
func NewDomainRecordLister ¶
func NewDomainRecordLister(indexer cache.Indexer) DomainRecordLister
NewDomainRecordLister returns a new DomainRecordLister.
type DomainRecordListerExpansion ¶
type DomainRecordListerExpansion interface{}
DomainRecordListerExpansion allows custom methods to be added to DomainRecordLister.
type DomainRecordNamespaceLister ¶
type DomainRecordNamespaceLister interface { // List lists all DomainRecords in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.DomainRecord, err error) // Get retrieves the DomainRecord from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.DomainRecord, error) DomainRecordNamespaceListerExpansion }
DomainRecordNamespaceLister helps list and get DomainRecords. All objects returned here must be treated as read-only.
type DomainRecordNamespaceListerExpansion ¶
type DomainRecordNamespaceListerExpansion interface{}
DomainRecordNamespaceListerExpansion allows custom methods to be added to DomainRecordNamespaceLister.