Documentation ¶
Index ¶
- type AttributeLister
- type AttributeListerExpansion
- type AttributeNamespaceLister
- type AttributeNamespaceListerExpansion
- type NamingLister
- type NamingListerExpansion
- type NamingNamespaceLister
- type NamingNamespaceListerExpansion
- type NamingsLister
- type NamingsListerExpansion
- type NamingsNamespaceLister
- type NamingsNamespaceListerExpansion
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type AttributeLister ¶
type AttributeLister interface { // List lists all Attributes in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Attribute, err error) // Attributes returns an object that can list and get Attributes. Attributes(namespace string) AttributeNamespaceLister AttributeListerExpansion }
AttributeLister helps list Attributes. All objects returned here must be treated as read-only.
func NewAttributeLister ¶
func NewAttributeLister(indexer cache.Indexer) AttributeLister
NewAttributeLister returns a new AttributeLister.
type AttributeListerExpansion ¶
type AttributeListerExpansion interface{}
AttributeListerExpansion allows custom methods to be added to AttributeLister.
type AttributeNamespaceLister ¶
type AttributeNamespaceLister interface { // List lists all Attributes in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Attribute, err error) // Get retrieves the Attribute from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.Attribute, error) AttributeNamespaceListerExpansion }
AttributeNamespaceLister helps list and get Attributes. All objects returned here must be treated as read-only.
type AttributeNamespaceListerExpansion ¶
type AttributeNamespaceListerExpansion interface{}
AttributeNamespaceListerExpansion allows custom methods to be added to AttributeNamespaceLister.
type NamingLister ¶ added in v0.5.0
type NamingLister interface { // List lists all Namings in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Naming, err error) // Namings returns an object that can list and get Namings. Namings(namespace string) NamingNamespaceLister NamingListerExpansion }
NamingLister helps list Namings. All objects returned here must be treated as read-only.
func NewNamingLister ¶ added in v0.5.0
func NewNamingLister(indexer cache.Indexer) NamingLister
NewNamingLister returns a new NamingLister.
type NamingListerExpansion ¶ added in v0.5.0
type NamingListerExpansion interface{}
NamingListerExpansion allows custom methods to be added to NamingLister.
type NamingNamespaceLister ¶ added in v0.5.0
type NamingNamespaceLister interface { // List lists all Namings in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Naming, err error) // Get retrieves the Naming from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.Naming, error) NamingNamespaceListerExpansion }
NamingNamespaceLister helps list and get Namings. All objects returned here must be treated as read-only.
type NamingNamespaceListerExpansion ¶ added in v0.5.0
type NamingNamespaceListerExpansion interface{}
NamingNamespaceListerExpansion allows custom methods to be added to NamingNamespaceLister.
type NamingsLister ¶ added in v0.5.0
type NamingsLister interface { // List lists all Namingses in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Namings, err error) // Namingses returns an object that can list and get Namingses. Namingses(namespace string) NamingsNamespaceLister NamingsListerExpansion }
NamingsLister helps list Namingses. All objects returned here must be treated as read-only.
func NewNamingsLister ¶ added in v0.5.0
func NewNamingsLister(indexer cache.Indexer) NamingsLister
NewNamingsLister returns a new NamingsLister.
type NamingsListerExpansion ¶ added in v0.5.0
type NamingsListerExpansion interface{}
NamingsListerExpansion allows custom methods to be added to NamingsLister.
type NamingsNamespaceLister ¶ added in v0.5.0
type NamingsNamespaceLister interface { // List lists all Namingses in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Namings, err error) // Get retrieves the Namings from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.Namings, error) NamingsNamespaceListerExpansion }
NamingsNamespaceLister helps list and get Namingses. All objects returned here must be treated as read-only.
type NamingsNamespaceListerExpansion ¶ added in v0.5.0
type NamingsNamespaceListerExpansion interface{}
NamingsNamespaceListerExpansion allows custom methods to be added to NamingsNamespaceLister.