Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ReleasePayloadLister ¶
type ReleasePayloadLister interface { // List lists all ReleasePayloads in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.ReleasePayload, err error) // ReleasePayloads returns an object that can list and get ReleasePayloads. ReleasePayloads(namespace string) ReleasePayloadNamespaceLister ReleasePayloadListerExpansion }
ReleasePayloadLister helps list ReleasePayloads. All objects returned here must be treated as read-only.
func NewReleasePayloadLister ¶
func NewReleasePayloadLister(indexer cache.Indexer) ReleasePayloadLister
NewReleasePayloadLister returns a new ReleasePayloadLister.
type ReleasePayloadListerExpansion ¶
type ReleasePayloadListerExpansion interface{}
ReleasePayloadListerExpansion allows custom methods to be added to ReleasePayloadLister.
type ReleasePayloadNamespaceLister ¶
type ReleasePayloadNamespaceLister interface { // List lists all ReleasePayloads in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.ReleasePayload, err error) // Get retrieves the ReleasePayload from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.ReleasePayload, error) ReleasePayloadNamespaceListerExpansion }
ReleasePayloadNamespaceLister helps list and get ReleasePayloads. All objects returned here must be treated as read-only.
type ReleasePayloadNamespaceListerExpansion ¶
type ReleasePayloadNamespaceListerExpansion interface{}
ReleasePayloadNamespaceListerExpansion allows custom methods to be added to ReleasePayloadNamespaceLister.
Click to show internal directories.
Click to hide internal directories.