kubernetesk8s.io/kubernetes/pkg/client/listers/policy/v1alpha1 Index | Files

package v1alpha1

import "k8s.io/kubernetes/pkg/client/listers/policy/v1alpha1"

Index

Types

type PodDisruptionBudgetLister

type PodDisruptionBudgetLister interface {
	// List lists all PodDisruptionBudgets in the indexer.
	List(selector labels.Selector) (ret []*v1alpha1.PodDisruptionBudget, err error)
	// PodDisruptionBudgets returns an object that can list and get PodDisruptionBudgets.
	PodDisruptionBudgets(namespace string) PodDisruptionBudgetNamespaceLister
	PodDisruptionBudgetListerExpansion
}

PodDisruptionBudgetLister helps list PodDisruptionBudgets.

func NewPodDisruptionBudgetLister

func NewPodDisruptionBudgetLister(indexer cache.Indexer) PodDisruptionBudgetLister

NewPodDisruptionBudgetLister returns a new PodDisruptionBudgetLister.

type PodDisruptionBudgetListerExpansion

type PodDisruptionBudgetListerExpansion interface{}

PodDisruptionBudgetListerExpansion allows custom methods to be added to PodDisruptionBudgetLister.

type PodDisruptionBudgetNamespaceLister

type PodDisruptionBudgetNamespaceLister interface {
	// List lists all PodDisruptionBudgets in the indexer for a given namespace.
	List(selector labels.Selector) (ret []*v1alpha1.PodDisruptionBudget, err error)
	// Get retrieves the PodDisruptionBudget from the indexer for a given namespace and name.
	Get(name string) (*v1alpha1.PodDisruptionBudget, error)
	PodDisruptionBudgetNamespaceListerExpansion
}

PodDisruptionBudgetNamespaceLister helps list and get PodDisruptionBudgets.

type PodDisruptionBudgetNamespaceListerExpansion

type PodDisruptionBudgetNamespaceListerExpansion interface{}

PodDisruptionBudgetNamespaceListerExpansion allows custom methods to be added to PodDisruptionBudgetNamespaeLister.

Source Files

expansion_generated.go poddisruptionbudget.go

Version
v1.5.6
Published
Mar 28, 2017
Platform
linux/amd64
Imports
5 packages
Last checked
3 minutes ago

Tools for package owners.