Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type RunLister ¶ added in v0.15.0
type RunLister interface { // List lists all Runs in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Run, err error) // Runs returns an object that can list and get Runs. Runs(namespace string) RunNamespaceLister RunListerExpansion }
RunLister helps list Runs. All objects returned here must be treated as read-only.
func NewRunLister ¶ added in v0.15.0
NewRunLister returns a new RunLister.
type RunListerExpansion ¶ added in v0.15.0
type RunListerExpansion interface{}
RunListerExpansion allows custom methods to be added to RunLister.
type RunNamespaceLister ¶ added in v0.15.0
type RunNamespaceLister interface { // List lists all Runs in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Run, err error) // Get retrieves the Run from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.Run, error) RunNamespaceListerExpansion }
RunNamespaceLister helps list and get Runs. All objects returned here must be treated as read-only.
type RunNamespaceListerExpansion ¶ added in v0.15.0
type RunNamespaceListerExpansion interface{}
RunNamespaceListerExpansion allows custom methods to be added to RunNamespaceLister.
type VerificationPolicyLister ¶ added in v0.43.0
type VerificationPolicyLister interface { // List lists all VerificationPolicies in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.VerificationPolicy, err error) // VerificationPolicies returns an object that can list and get VerificationPolicies. VerificationPolicies(namespace string) VerificationPolicyNamespaceLister VerificationPolicyListerExpansion }
VerificationPolicyLister helps list VerificationPolicies. All objects returned here must be treated as read-only.
func NewVerificationPolicyLister ¶ added in v0.43.0
func NewVerificationPolicyLister(indexer cache.Indexer) VerificationPolicyLister
NewVerificationPolicyLister returns a new VerificationPolicyLister.
type VerificationPolicyListerExpansion ¶ added in v0.43.0
type VerificationPolicyListerExpansion interface{}
VerificationPolicyListerExpansion allows custom methods to be added to VerificationPolicyLister.
type VerificationPolicyNamespaceLister ¶ added in v0.43.0
type VerificationPolicyNamespaceLister interface { // List lists all VerificationPolicies in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.VerificationPolicy, err error) // Get retrieves the VerificationPolicy from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.VerificationPolicy, error) VerificationPolicyNamespaceListerExpansion }
VerificationPolicyNamespaceLister helps list and get VerificationPolicies. All objects returned here must be treated as read-only.
type VerificationPolicyNamespaceListerExpansion ¶ added in v0.43.0
type VerificationPolicyNamespaceListerExpansion interface{}
VerificationPolicyNamespaceListerExpansion allows custom methods to be added to VerificationPolicyNamespaceLister.