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