Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type BudgetActionLister ¶
type BudgetActionLister interface { // List lists all BudgetActions in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.BudgetAction, err error) // BudgetActions returns an object that can list and get BudgetActions. BudgetActions(namespace string) BudgetActionNamespaceLister BudgetActionListerExpansion }
BudgetActionLister helps list BudgetActions. All objects returned here must be treated as read-only.
func NewBudgetActionLister ¶
func NewBudgetActionLister(indexer cache.Indexer) BudgetActionLister
NewBudgetActionLister returns a new BudgetActionLister.
type BudgetActionListerExpansion ¶
type BudgetActionListerExpansion interface{}
BudgetActionListerExpansion allows custom methods to be added to BudgetActionLister.
type BudgetActionNamespaceLister ¶
type BudgetActionNamespaceLister interface { // List lists all BudgetActions in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.BudgetAction, err error) // Get retrieves the BudgetAction from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.BudgetAction, error) BudgetActionNamespaceListerExpansion }
BudgetActionNamespaceLister helps list and get BudgetActions. All objects returned here must be treated as read-only.
type BudgetActionNamespaceListerExpansion ¶
type BudgetActionNamespaceListerExpansion interface{}
BudgetActionNamespaceListerExpansion allows custom methods to be added to BudgetActionNamespaceLister.
type BudgetLister ¶
type BudgetLister interface { // List lists all Budgets in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Budget, err error) // Budgets returns an object that can list and get Budgets. Budgets(namespace string) BudgetNamespaceLister BudgetListerExpansion }
BudgetLister helps list Budgets. All objects returned here must be treated as read-only.
func NewBudgetLister ¶
func NewBudgetLister(indexer cache.Indexer) BudgetLister
NewBudgetLister returns a new BudgetLister.
type BudgetListerExpansion ¶
type BudgetListerExpansion interface{}
BudgetListerExpansion allows custom methods to be added to BudgetLister.
type BudgetNamespaceLister ¶
type BudgetNamespaceLister interface { // List lists all Budgets in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Budget, err error) // Get retrieves the Budget from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.Budget, error) BudgetNamespaceListerExpansion }
BudgetNamespaceLister helps list and get Budgets. All objects returned here must be treated as read-only.
type BudgetNamespaceListerExpansion ¶
type BudgetNamespaceListerExpansion interface{}
BudgetNamespaceListerExpansion allows custom methods to be added to BudgetNamespaceLister.