Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type OrganizationLister ¶
type OrganizationLister interface { // List lists all Organizations in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Organization, err error) // Organizations returns an object that can list and get Organizations. Organizations(namespace string) OrganizationNamespaceLister OrganizationListerExpansion }
OrganizationLister helps list Organizations. All objects returned here must be treated as read-only.
func NewOrganizationLister ¶
func NewOrganizationLister(indexer cache.Indexer) OrganizationLister
NewOrganizationLister returns a new OrganizationLister.
type OrganizationListerExpansion ¶
type OrganizationListerExpansion interface{}
OrganizationListerExpansion allows custom methods to be added to OrganizationLister.
type OrganizationNamespaceLister ¶
type OrganizationNamespaceLister interface { // List lists all Organizations in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Organization, err error) // Get retrieves the Organization from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.Organization, error) OrganizationNamespaceListerExpansion }
OrganizationNamespaceLister helps list and get Organizations. All objects returned here must be treated as read-only.
type OrganizationNamespaceListerExpansion ¶
type OrganizationNamespaceListerExpansion interface{}
OrganizationNamespaceListerExpansion allows custom methods to be added to OrganizationNamespaceLister.
Click to show internal directories.
Click to hide internal directories.