Documentation ¶
Index ¶
- type InvitationLister
- type InvitationListerExpansion
- type InvitationNamespaceLister
- type InvitationNamespaceListerExpansion
- type IpAccessListLister
- type IpAccessListListerExpansion
- type IpAccessListNamespaceLister
- type IpAccessListNamespaceListerExpansion
- type ProjectLister
- type ProjectListerExpansion
- type ProjectNamespaceLister
- type ProjectNamespaceListerExpansion
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type InvitationLister ¶ added in v0.5.0
type InvitationLister interface { // List lists all Invitations in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Invitation, err error) // Invitations returns an object that can list and get Invitations. Invitations(namespace string) InvitationNamespaceLister InvitationListerExpansion }
InvitationLister helps list Invitations. All objects returned here must be treated as read-only.
func NewInvitationLister ¶ added in v0.5.0
func NewInvitationLister(indexer cache.Indexer) InvitationLister
NewInvitationLister returns a new InvitationLister.
type InvitationListerExpansion ¶ added in v0.5.0
type InvitationListerExpansion interface{}
InvitationListerExpansion allows custom methods to be added to InvitationLister.
type InvitationNamespaceLister ¶ added in v0.5.0
type InvitationNamespaceLister interface { // List lists all Invitations in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Invitation, err error) // Get retrieves the Invitation from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.Invitation, error) InvitationNamespaceListerExpansion }
InvitationNamespaceLister helps list and get Invitations. All objects returned here must be treated as read-only.
type InvitationNamespaceListerExpansion ¶ added in v0.5.0
type InvitationNamespaceListerExpansion interface{}
InvitationNamespaceListerExpansion allows custom methods to be added to InvitationNamespaceLister.
type IpAccessListLister ¶
type IpAccessListLister interface { // List lists all IpAccessLists in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.IpAccessList, err error) // IpAccessLists returns an object that can list and get IpAccessLists. IpAccessLists(namespace string) IpAccessListNamespaceLister IpAccessListListerExpansion }
IpAccessListLister helps list IpAccessLists. All objects returned here must be treated as read-only.
func NewIpAccessListLister ¶
func NewIpAccessListLister(indexer cache.Indexer) IpAccessListLister
NewIpAccessListLister returns a new IpAccessListLister.
type IpAccessListListerExpansion ¶
type IpAccessListListerExpansion interface{}
IpAccessListListerExpansion allows custom methods to be added to IpAccessListLister.
type IpAccessListNamespaceLister ¶
type IpAccessListNamespaceLister interface { // List lists all IpAccessLists in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.IpAccessList, err error) // Get retrieves the IpAccessList from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.IpAccessList, error) IpAccessListNamespaceListerExpansion }
IpAccessListNamespaceLister helps list and get IpAccessLists. All objects returned here must be treated as read-only.
type IpAccessListNamespaceListerExpansion ¶
type IpAccessListNamespaceListerExpansion interface{}
IpAccessListNamespaceListerExpansion allows custom methods to be added to IpAccessListNamespaceLister.
type ProjectLister ¶
type ProjectLister interface { // List lists all Projects in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Project, err error) // Projects returns an object that can list and get Projects. Projects(namespace string) ProjectNamespaceLister ProjectListerExpansion }
ProjectLister helps list Projects. All objects returned here must be treated as read-only.
func NewProjectLister ¶
func NewProjectLister(indexer cache.Indexer) ProjectLister
NewProjectLister returns a new ProjectLister.
type ProjectListerExpansion ¶
type ProjectListerExpansion interface{}
ProjectListerExpansion allows custom methods to be added to ProjectLister.
type ProjectNamespaceLister ¶
type ProjectNamespaceLister interface { // List lists all Projects in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Project, err error) // Get retrieves the Project from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.Project, error) ProjectNamespaceListerExpansion }
ProjectNamespaceLister helps list and get Projects. All objects returned here must be treated as read-only.
type ProjectNamespaceListerExpansion ¶
type ProjectNamespaceListerExpansion interface{}
ProjectNamespaceListerExpansion allows custom methods to be added to ProjectNamespaceLister.