Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type PolicyLister ¶
type PolicyLister interface { // List lists all Policies in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Policy, err error) // Policies returns an object that can list and get Policies. Policies(namespace string) PolicyNamespaceLister PolicyListerExpansion }
PolicyLister helps list Policies. All objects returned here must be treated as read-only.
func NewPolicyLister ¶
func NewPolicyLister(indexer cache.Indexer) PolicyLister
NewPolicyLister returns a new PolicyLister.
type PolicyListerExpansion ¶
type PolicyListerExpansion interface{}
PolicyListerExpansion allows custom methods to be added to PolicyLister.
type PolicyNamespaceLister ¶
type PolicyNamespaceLister interface { // List lists all Policies in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Policy, err error) // Get retrieves the Policy from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.Policy, error) PolicyNamespaceListerExpansion }
PolicyNamespaceLister helps list and get Policies. All objects returned here must be treated as read-only.
type PolicyNamespaceListerExpansion ¶
type PolicyNamespaceListerExpansion interface{}
PolicyNamespaceListerExpansion allows custom methods to be added to PolicyNamespaceLister.
type SnapshotLister ¶
type SnapshotLister interface { // List lists all Snapshots in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Snapshot, err error) // Snapshots returns an object that can list and get Snapshots. Snapshots(namespace string) SnapshotNamespaceLister SnapshotListerExpansion }
SnapshotLister helps list Snapshots. All objects returned here must be treated as read-only.
func NewSnapshotLister ¶
func NewSnapshotLister(indexer cache.Indexer) SnapshotLister
NewSnapshotLister returns a new SnapshotLister.
type SnapshotListerExpansion ¶
type SnapshotListerExpansion interface{}
SnapshotListerExpansion allows custom methods to be added to SnapshotLister.
type SnapshotNamespaceLister ¶
type SnapshotNamespaceLister interface { // List lists all Snapshots in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Snapshot, err error) // Get retrieves the Snapshot from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.Snapshot, error) SnapshotNamespaceListerExpansion }
SnapshotNamespaceLister helps list and get Snapshots. All objects returned here must be treated as read-only.
type SnapshotNamespaceListerExpansion ¶
type SnapshotNamespaceListerExpansion interface{}
SnapshotNamespaceListerExpansion allows custom methods to be added to SnapshotNamespaceLister.