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