Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type APIBindingLister ¶
type APIBindingLister interface { // List lists all APIBindings in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.APIBinding, err error) // ListWithContext lists all APIBindings in the indexer. // Objects returned here must be treated as read-only. ListWithContext(ctx context.Context, selector labels.Selector) (ret []*v1alpha1.APIBinding, err error) // Get retrieves the APIBinding from the index for a given name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.APIBinding, error) // GetWithContext retrieves the APIBinding from the index for a given name. // Objects returned here must be treated as read-only. GetWithContext(ctx context.Context, name string) (*v1alpha1.APIBinding, error) APIBindingListerExpansion }
APIBindingLister helps list APIBindings. All objects returned here must be treated as read-only.
func NewAPIBindingLister ¶
func NewAPIBindingLister(indexer cache.Indexer) APIBindingLister
NewAPIBindingLister returns a new APIBindingLister.
type APIBindingListerExpansion ¶
type APIBindingListerExpansion interface{}
APIBindingListerExpansion allows custom methods to be added to APIBindingLister.
type APIExportLister ¶
type APIExportLister interface { // List lists all APIExports in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.APIExport, err error) // ListWithContext lists all APIExports in the indexer. // Objects returned here must be treated as read-only. ListWithContext(ctx context.Context, selector labels.Selector) (ret []*v1alpha1.APIExport, err error) // Get retrieves the APIExport from the index for a given name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.APIExport, error) // GetWithContext retrieves the APIExport from the index for a given name. // Objects returned here must be treated as read-only. GetWithContext(ctx context.Context, name string) (*v1alpha1.APIExport, error) APIExportListerExpansion }
APIExportLister helps list APIExports. All objects returned here must be treated as read-only.
func NewAPIExportLister ¶
func NewAPIExportLister(indexer cache.Indexer) APIExportLister
NewAPIExportLister returns a new APIExportLister.
type APIExportListerExpansion ¶
type APIExportListerExpansion interface{}
APIExportListerExpansion allows custom methods to be added to APIExportLister.
type APIResourceSchemaLister ¶
type APIResourceSchemaLister interface { // List lists all APIResourceSchemas in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.APIResourceSchema, err error) // ListWithContext lists all APIResourceSchemas in the indexer. // Objects returned here must be treated as read-only. ListWithContext(ctx context.Context, selector labels.Selector) (ret []*v1alpha1.APIResourceSchema, err error) // Get retrieves the APIResourceSchema from the index for a given name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.APIResourceSchema, error) // GetWithContext retrieves the APIResourceSchema from the index for a given name. // Objects returned here must be treated as read-only. GetWithContext(ctx context.Context, name string) (*v1alpha1.APIResourceSchema, error) APIResourceSchemaListerExpansion }
APIResourceSchemaLister helps list APIResourceSchemas. All objects returned here must be treated as read-only.
func NewAPIResourceSchemaLister ¶
func NewAPIResourceSchemaLister(indexer cache.Indexer) APIResourceSchemaLister
NewAPIResourceSchemaLister returns a new APIResourceSchemaLister.
type APIResourceSchemaListerExpansion ¶
type APIResourceSchemaListerExpansion interface{}
APIResourceSchemaListerExpansion allows custom methods to be added to APIResourceSchemaLister.