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