Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type CodepipelineLister ¶
type CodepipelineLister interface { // List lists all Codepipelines in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Codepipeline, err error) // Codepipelines returns an object that can list and get Codepipelines. Codepipelines(namespace string) CodepipelineNamespaceLister CodepipelineListerExpansion }
CodepipelineLister helps list Codepipelines. All objects returned here must be treated as read-only.
func NewCodepipelineLister ¶
func NewCodepipelineLister(indexer cache.Indexer) CodepipelineLister
NewCodepipelineLister returns a new CodepipelineLister.
type CodepipelineListerExpansion ¶
type CodepipelineListerExpansion interface{}
CodepipelineListerExpansion allows custom methods to be added to CodepipelineLister.
type CodepipelineNamespaceLister ¶
type CodepipelineNamespaceLister interface { // List lists all Codepipelines in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Codepipeline, err error) // Get retrieves the Codepipeline from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.Codepipeline, error) CodepipelineNamespaceListerExpansion }
CodepipelineNamespaceLister helps list and get Codepipelines. All objects returned here must be treated as read-only.
type CodepipelineNamespaceListerExpansion ¶
type CodepipelineNamespaceListerExpansion interface{}
CodepipelineNamespaceListerExpansion allows custom methods to be added to CodepipelineNamespaceLister.
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.