Documentation ¶
Index ¶
- type DNSEndpointLister
- type DNSEndpointListerExpansion
- type DNSEndpointNamespaceLister
- type DNSEndpointNamespaceListerExpansion
- type DomainLister
- type DomainListerExpansion
- type DomainNamespaceLister
- type DomainNamespaceListerExpansion
- type IngressDNSRecordLister
- type IngressDNSRecordListerExpansion
- type IngressDNSRecordNamespaceLister
- type IngressDNSRecordNamespaceListerExpansion
- type ServiceDNSRecordLister
- type ServiceDNSRecordListerExpansion
- type ServiceDNSRecordNamespaceLister
- type ServiceDNSRecordNamespaceListerExpansion
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type DNSEndpointLister ¶ added in v0.0.2
type DNSEndpointLister interface { // List lists all DNSEndpoints in the indexer. List(selector labels.Selector) (ret []*v1alpha1.DNSEndpoint, err error) // DNSEndpoints returns an object that can list and get DNSEndpoints. DNSEndpoints(namespace string) DNSEndpointNamespaceLister DNSEndpointListerExpansion }
DNSEndpointLister helps list DNSEndpoints.
func NewDNSEndpointLister ¶ added in v0.0.2
func NewDNSEndpointLister(indexer cache.Indexer) DNSEndpointLister
NewDNSEndpointLister returns a new DNSEndpointLister.
type DNSEndpointListerExpansion ¶ added in v0.0.2
type DNSEndpointListerExpansion interface{}
DNSEndpointListerExpansion allows custom methods to be added to DNSEndpointLister.
type DNSEndpointNamespaceLister ¶ added in v0.0.2
type DNSEndpointNamespaceLister interface { // List lists all DNSEndpoints in the indexer for a given namespace. List(selector labels.Selector) (ret []*v1alpha1.DNSEndpoint, err error) // Get retrieves the DNSEndpoint from the indexer for a given namespace and name. Get(name string) (*v1alpha1.DNSEndpoint, error) DNSEndpointNamespaceListerExpansion }
DNSEndpointNamespaceLister helps list and get DNSEndpoints.
type DNSEndpointNamespaceListerExpansion ¶ added in v0.0.2
type DNSEndpointNamespaceListerExpansion interface{}
DNSEndpointNamespaceListerExpansion allows custom methods to be added to DNSEndpointNamespaceLister.
type DomainLister ¶ added in v0.0.3
type DomainLister interface { // List lists all Domains in the indexer. 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.
func NewDomainLister ¶ added in v0.0.3
func NewDomainLister(indexer cache.Indexer) DomainLister
NewDomainLister returns a new DomainLister.
type DomainListerExpansion ¶ added in v0.0.3
type DomainListerExpansion interface{}
DomainListerExpansion allows custom methods to be added to DomainLister.
type DomainNamespaceLister ¶ added in v0.0.3
type DomainNamespaceLister interface { // List lists all Domains in the indexer for a given namespace. List(selector labels.Selector) (ret []*v1alpha1.Domain, err error) // Get retrieves the Domain from the indexer for a given namespace and name. Get(name string) (*v1alpha1.Domain, error) DomainNamespaceListerExpansion }
DomainNamespaceLister helps list and get Domains.
type DomainNamespaceListerExpansion ¶ added in v0.0.3
type DomainNamespaceListerExpansion interface{}
DomainNamespaceListerExpansion allows custom methods to be added to DomainNamespaceLister.
type IngressDNSRecordLister ¶ added in v0.0.3
type IngressDNSRecordLister interface { // List lists all IngressDNSRecords in the indexer. List(selector labels.Selector) (ret []*v1alpha1.IngressDNSRecord, err error) // IngressDNSRecords returns an object that can list and get IngressDNSRecords. IngressDNSRecords(namespace string) IngressDNSRecordNamespaceLister IngressDNSRecordListerExpansion }
IngressDNSRecordLister helps list IngressDNSRecords.
func NewIngressDNSRecordLister ¶ added in v0.0.3
func NewIngressDNSRecordLister(indexer cache.Indexer) IngressDNSRecordLister
NewIngressDNSRecordLister returns a new IngressDNSRecordLister.
type IngressDNSRecordListerExpansion ¶ added in v0.0.3
type IngressDNSRecordListerExpansion interface{}
IngressDNSRecordListerExpansion allows custom methods to be added to IngressDNSRecordLister.
type IngressDNSRecordNamespaceLister ¶ added in v0.0.3
type IngressDNSRecordNamespaceLister interface { // List lists all IngressDNSRecords in the indexer for a given namespace. List(selector labels.Selector) (ret []*v1alpha1.IngressDNSRecord, err error) // Get retrieves the IngressDNSRecord from the indexer for a given namespace and name. Get(name string) (*v1alpha1.IngressDNSRecord, error) IngressDNSRecordNamespaceListerExpansion }
IngressDNSRecordNamespaceLister helps list and get IngressDNSRecords.
type IngressDNSRecordNamespaceListerExpansion ¶ added in v0.0.3
type IngressDNSRecordNamespaceListerExpansion interface{}
IngressDNSRecordNamespaceListerExpansion allows custom methods to be added to IngressDNSRecordNamespaceLister.
type ServiceDNSRecordLister ¶ added in v0.0.3
type ServiceDNSRecordLister interface { // List lists all ServiceDNSRecords in the indexer. List(selector labels.Selector) (ret []*v1alpha1.ServiceDNSRecord, err error) // ServiceDNSRecords returns an object that can list and get ServiceDNSRecords. ServiceDNSRecords(namespace string) ServiceDNSRecordNamespaceLister ServiceDNSRecordListerExpansion }
ServiceDNSRecordLister helps list ServiceDNSRecords.
func NewServiceDNSRecordLister ¶ added in v0.0.3
func NewServiceDNSRecordLister(indexer cache.Indexer) ServiceDNSRecordLister
NewServiceDNSRecordLister returns a new ServiceDNSRecordLister.
type ServiceDNSRecordListerExpansion ¶ added in v0.0.3
type ServiceDNSRecordListerExpansion interface{}
ServiceDNSRecordListerExpansion allows custom methods to be added to ServiceDNSRecordLister.
type ServiceDNSRecordNamespaceLister ¶ added in v0.0.3
type ServiceDNSRecordNamespaceLister interface { // List lists all ServiceDNSRecords in the indexer for a given namespace. List(selector labels.Selector) (ret []*v1alpha1.ServiceDNSRecord, err error) // Get retrieves the ServiceDNSRecord from the indexer for a given namespace and name. Get(name string) (*v1alpha1.ServiceDNSRecord, error) ServiceDNSRecordNamespaceListerExpansion }
ServiceDNSRecordNamespaceLister helps list and get ServiceDNSRecords.
type ServiceDNSRecordNamespaceListerExpansion ¶ added in v0.0.3
type ServiceDNSRecordNamespaceListerExpansion interface{}
ServiceDNSRecordNamespaceListerExpansion allows custom methods to be added to ServiceDNSRecordNamespaceLister.