Documentation ¶
Index ¶
- type ConfigurationLister
- type ConfigurationListerExpansion
- type ConfigurationNamespaceLister
- type ConfigurationNamespaceListerExpansion
- type RevisionLister
- type RevisionListerExpansion
- type RevisionNamespaceLister
- type RevisionNamespaceListerExpansion
- type RouteLister
- type RouteListerExpansion
- type RouteNamespaceLister
- type RouteNamespaceListerExpansion
- type ServiceLister
- type ServiceListerExpansion
- type ServiceNamespaceLister
- type ServiceNamespaceListerExpansion
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ConfigurationLister ¶
type ConfigurationLister interface { // List lists all Configurations in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1.Configuration, err error) // Configurations returns an object that can list and get Configurations. Configurations(namespace string) ConfigurationNamespaceLister ConfigurationListerExpansion }
ConfigurationLister helps list Configurations. All objects returned here must be treated as read-only.
func NewConfigurationLister ¶
func NewConfigurationLister(indexer cache.Indexer) ConfigurationLister
NewConfigurationLister returns a new ConfigurationLister.
type ConfigurationListerExpansion ¶
type ConfigurationListerExpansion interface{}
ConfigurationListerExpansion allows custom methods to be added to ConfigurationLister.
type ConfigurationNamespaceLister ¶
type ConfigurationNamespaceLister interface { // List lists all Configurations in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1.Configuration, err error) // Get retrieves the Configuration from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1.Configuration, error) ConfigurationNamespaceListerExpansion }
ConfigurationNamespaceLister helps list and get Configurations. All objects returned here must be treated as read-only.
type ConfigurationNamespaceListerExpansion ¶
type ConfigurationNamespaceListerExpansion interface{}
ConfigurationNamespaceListerExpansion allows custom methods to be added to ConfigurationNamespaceLister.
type RevisionLister ¶
type RevisionLister interface { // List lists all Revisions in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1.Revision, err error) // Revisions returns an object that can list and get Revisions. Revisions(namespace string) RevisionNamespaceLister RevisionListerExpansion }
RevisionLister helps list Revisions. All objects returned here must be treated as read-only.
func NewRevisionLister ¶
func NewRevisionLister(indexer cache.Indexer) RevisionLister
NewRevisionLister returns a new RevisionLister.
type RevisionListerExpansion ¶
type RevisionListerExpansion interface{}
RevisionListerExpansion allows custom methods to be added to RevisionLister.
type RevisionNamespaceLister ¶
type RevisionNamespaceLister interface { // List lists all Revisions in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1.Revision, err error) // Get retrieves the Revision from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1.Revision, error) RevisionNamespaceListerExpansion }
RevisionNamespaceLister helps list and get Revisions. All objects returned here must be treated as read-only.
type RevisionNamespaceListerExpansion ¶
type RevisionNamespaceListerExpansion interface{}
RevisionNamespaceListerExpansion allows custom methods to be added to RevisionNamespaceLister.
type RouteLister ¶
type RouteLister interface { // List lists all Routes in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1.Route, err error) // Routes returns an object that can list and get Routes. Routes(namespace string) RouteNamespaceLister RouteListerExpansion }
RouteLister helps list Routes. All objects returned here must be treated as read-only.
func NewRouteLister ¶
func NewRouteLister(indexer cache.Indexer) RouteLister
NewRouteLister returns a new RouteLister.
type RouteListerExpansion ¶
type RouteListerExpansion interface{}
RouteListerExpansion allows custom methods to be added to RouteLister.
type RouteNamespaceLister ¶
type RouteNamespaceLister interface { // List lists all Routes in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1.Route, err error) // Get retrieves the Route from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1.Route, error) RouteNamespaceListerExpansion }
RouteNamespaceLister helps list and get Routes. All objects returned here must be treated as read-only.
type RouteNamespaceListerExpansion ¶
type RouteNamespaceListerExpansion interface{}
RouteNamespaceListerExpansion allows custom methods to be added to RouteNamespaceLister.
type ServiceLister ¶
type ServiceLister interface { // List lists all Services in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1.Service, err error) // Services returns an object that can list and get Services. Services(namespace string) ServiceNamespaceLister ServiceListerExpansion }
ServiceLister helps list Services. All objects returned here must be treated as read-only.
func NewServiceLister ¶
func NewServiceLister(indexer cache.Indexer) ServiceLister
NewServiceLister returns a new ServiceLister.
type ServiceListerExpansion ¶
type ServiceListerExpansion interface{}
ServiceListerExpansion allows custom methods to be added to ServiceLister.
type ServiceNamespaceLister ¶
type ServiceNamespaceLister interface { // List lists all Services in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1.Service, err error) // Get retrieves the Service from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1.Service, error) ServiceNamespaceListerExpansion }
ServiceNamespaceLister helps list and get Services. All objects returned here must be treated as read-only.
type ServiceNamespaceListerExpansion ¶
type ServiceNamespaceListerExpansion interface{}
ServiceNamespaceListerExpansion allows custom methods to be added to ServiceNamespaceLister.