The EvictionExpansion interface allows manually adding extra methods to the ScaleInterface.
type EvictionExpansion interface { Evict(ctx context.Context, eviction *policy.Eviction) error }
EvictionInterface has methods to work with Eviction resources.
type EvictionInterface interface { EvictionExpansion }
EvictionsGetter has a method to return a EvictionInterface. A group's client should implement this interface.
type EvictionsGetter interface { Evictions(namespace string) EvictionInterface }
type PodDisruptionBudgetExpansion interface{}
PodDisruptionBudgetInterface has methods to work with PodDisruptionBudget resources.
type PodDisruptionBudgetInterface interface { Create(ctx context.Context, podDisruptionBudget *v1.PodDisruptionBudget, opts metav1.CreateOptions) (*v1.PodDisruptionBudget, error) Update(ctx context.Context, podDisruptionBudget *v1.PodDisruptionBudget, opts metav1.UpdateOptions) (*v1.PodDisruptionBudget, error) UpdateStatus(ctx context.Context, podDisruptionBudget *v1.PodDisruptionBudget, opts metav1.UpdateOptions) (*v1.PodDisruptionBudget, error) Delete(ctx context.Context, name string, opts metav1.DeleteOptions) error DeleteCollection(ctx context.Context, opts metav1.DeleteOptions, listOpts metav1.ListOptions) error Get(ctx context.Context, name string, opts metav1.GetOptions) (*v1.PodDisruptionBudget, error) List(ctx context.Context, opts metav1.ListOptions) (*v1.PodDisruptionBudgetList, error) Watch(ctx context.Context, opts metav1.ListOptions) (watch.Interface, error) Patch(ctx context.Context, name string, pt types.PatchType, data []byte, opts metav1.PatchOptions, subresources ...string) (result *v1.PodDisruptionBudget, err error) Apply(ctx context.Context, podDisruptionBudget *policyv1.PodDisruptionBudgetApplyConfiguration, opts metav1.ApplyOptions) (result *v1.PodDisruptionBudget, err error) ApplyStatus(ctx context.Context, podDisruptionBudget *policyv1.PodDisruptionBudgetApplyConfiguration, opts metav1.ApplyOptions) (result *v1.PodDisruptionBudget, err error) PodDisruptionBudgetExpansion }
PodDisruptionBudgetsGetter has a method to return a PodDisruptionBudgetInterface. A group's client should implement this interface.
type PodDisruptionBudgetsGetter interface { PodDisruptionBudgets(namespace string) PodDisruptionBudgetInterface }
PolicyV1Client is used to interact with features provided by the policy group.
type PolicyV1Client struct {
// contains filtered or unexported fields
}
func New(c rest.Interface) *PolicyV1Client
New creates a new PolicyV1Client for the given RESTClient.
func NewForConfig(c *rest.Config) (*PolicyV1Client, error)
NewForConfig creates a new PolicyV1Client for the given config. NewForConfig is equivalent to NewForConfigAndClient(c, httpClient), where httpClient was generated with rest.HTTPClientFor(c).
func NewForConfigAndClient(c *rest.Config, h *http.Client) (*PolicyV1Client, error)
NewForConfigAndClient creates a new PolicyV1Client for the given config and http client. Note the http client provided takes precedence over the configured transport values.
func NewForConfigOrDie(c *rest.Config) *PolicyV1Client
NewForConfigOrDie creates a new PolicyV1Client for the given config and panics if there is an error in the config.
func (c *PolicyV1Client) Evictions(namespace string) EvictionInterface
func (c *PolicyV1Client) PodDisruptionBudgets(namespace string) PodDisruptionBudgetInterface
func (c *PolicyV1Client) RESTClient() rest.Interface
RESTClient returns a RESTClient that is used to communicate with API server by this client implementation.
type PolicyV1Interface interface { RESTClient() rest.Interface EvictionsGetter PodDisruptionBudgetsGetter }