Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type OpsDefinitionLister ¶
type OpsDefinitionLister interface { // List lists all OpsDefinitions in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.OpsDefinition, err error) // Get retrieves the OpsDefinition from the index for a given name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.OpsDefinition, error) OpsDefinitionListerExpansion }
OpsDefinitionLister helps list OpsDefinitions. All objects returned here must be treated as read-only.
func NewOpsDefinitionLister ¶
func NewOpsDefinitionLister(indexer cache.Indexer) OpsDefinitionLister
NewOpsDefinitionLister returns a new OpsDefinitionLister.
type OpsDefinitionListerExpansion ¶
type OpsDefinitionListerExpansion interface{}
OpsDefinitionListerExpansion allows custom methods to be added to OpsDefinitionLister.
type OpsRequestLister ¶
type OpsRequestLister interface { // List lists all OpsRequests in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.OpsRequest, err error) // OpsRequests returns an object that can list and get OpsRequests. OpsRequests(namespace string) OpsRequestNamespaceLister OpsRequestListerExpansion }
OpsRequestLister helps list OpsRequests. All objects returned here must be treated as read-only.
func NewOpsRequestLister ¶
func NewOpsRequestLister(indexer cache.Indexer) OpsRequestLister
NewOpsRequestLister returns a new OpsRequestLister.
type OpsRequestListerExpansion ¶
type OpsRequestListerExpansion interface{}
OpsRequestListerExpansion allows custom methods to be added to OpsRequestLister.
type OpsRequestNamespaceLister ¶
type OpsRequestNamespaceLister interface { // List lists all OpsRequests in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.OpsRequest, err error) // Get retrieves the OpsRequest from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.OpsRequest, error) OpsRequestNamespaceListerExpansion }
OpsRequestNamespaceLister helps list and get OpsRequests. All objects returned here must be treated as read-only.
type OpsRequestNamespaceListerExpansion ¶
type OpsRequestNamespaceListerExpansion interface{}
OpsRequestNamespaceListerExpansion allows custom methods to be added to OpsRequestNamespaceLister.