Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type CustomVariableLister ¶
type CustomVariableLister interface { // List lists all CustomVariables in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.CustomVariable, err error) // CustomVariables returns an object that can list and get CustomVariables. CustomVariables(namespace string) CustomVariableNamespaceLister CustomVariableListerExpansion }
CustomVariableLister helps list CustomVariables. All objects returned here must be treated as read-only.
func NewCustomVariableLister ¶
func NewCustomVariableLister(indexer cache.Indexer) CustomVariableLister
NewCustomVariableLister returns a new CustomVariableLister.
type CustomVariableListerExpansion ¶
type CustomVariableListerExpansion interface{}
CustomVariableListerExpansion allows custom methods to be added to CustomVariableLister.
type CustomVariableNamespaceLister ¶
type CustomVariableNamespaceLister interface { // List lists all CustomVariables in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.CustomVariable, err error) // Get retrieves the CustomVariable from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.CustomVariable, error) CustomVariableNamespaceListerExpansion }
CustomVariableNamespaceLister helps list and get CustomVariables. All objects returned here must be treated as read-only.
type CustomVariableNamespaceListerExpansion ¶
type CustomVariableNamespaceListerExpansion interface{}
CustomVariableNamespaceListerExpansion allows custom methods to be added to CustomVariableNamespaceLister.
type WebhookLister ¶
type WebhookLister interface { // List lists all Webhooks in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Webhook, err error) // Webhooks returns an object that can list and get Webhooks. Webhooks(namespace string) WebhookNamespaceLister WebhookListerExpansion }
WebhookLister helps list Webhooks. All objects returned here must be treated as read-only.
func NewWebhookLister ¶
func NewWebhookLister(indexer cache.Indexer) WebhookLister
NewWebhookLister returns a new WebhookLister.
type WebhookListerExpansion ¶
type WebhookListerExpansion interface{}
WebhookListerExpansion allows custom methods to be added to WebhookLister.
type WebhookNamespaceLister ¶
type WebhookNamespaceLister interface { // List lists all Webhooks in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Webhook, err error) // Get retrieves the Webhook from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.Webhook, error) WebhookNamespaceListerExpansion }
WebhookNamespaceLister helps list and get Webhooks. All objects returned here must be treated as read-only.
type WebhookNamespaceListerExpansion ¶
type WebhookNamespaceListerExpansion interface{}
WebhookNamespaceListerExpansion allows custom methods to be added to WebhookNamespaceLister.