v1alpha1

package
v0.3.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jun 8, 2021 License: Apache-2.0 Imports: 17 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func FromDockhandSecretHandlerToHandler

func FromDockhandSecretHandlerToHandler(sync DockhandSecretHandler) generic.Handler

func FromDockhandSecretsProfileHandlerToHandler

func FromDockhandSecretsProfileHandlerToHandler(sync DockhandSecretsProfileHandler) generic.Handler

Types

type DockhandSecretCache

type DockhandSecretCache interface {
	Get(namespace, name string) (*v1alpha1.DockhandSecret, error)
	List(namespace string, selector labels.Selector) ([]*v1alpha1.DockhandSecret, error)

	AddIndexer(indexName string, indexer DockhandSecretIndexer)
	GetByIndex(indexName, key string) ([]*v1alpha1.DockhandSecret, error)
}

type DockhandSecretClient

type DockhandSecretClient interface {
	Create(*v1alpha1.DockhandSecret) (*v1alpha1.DockhandSecret, error)
	Update(*v1alpha1.DockhandSecret) (*v1alpha1.DockhandSecret, error)

	Delete(namespace, name string, options *metav1.DeleteOptions) error
	Get(namespace, name string, options metav1.GetOptions) (*v1alpha1.DockhandSecret, error)
	List(namespace string, opts metav1.ListOptions) (*v1alpha1.DockhandSecretList, error)
	Watch(namespace string, opts metav1.ListOptions) (watch.Interface, error)
	Patch(namespace, name string, pt types.PatchType, data []byte, subresources ...string) (result *v1alpha1.DockhandSecret, err error)
}

type DockhandSecretController

type DockhandSecretController interface {
	generic.ControllerMeta
	DockhandSecretClient

	OnChange(ctx context.Context, name string, sync DockhandSecretHandler)
	OnRemove(ctx context.Context, name string, sync DockhandSecretHandler)
	Enqueue(namespace, name string)
	EnqueueAfter(namespace, name string, duration time.Duration)

	Cache() DockhandSecretCache
}

func NewDockhandSecretController

func NewDockhandSecretController(gvk schema.GroupVersionKind, resource string, namespaced bool, controller controller.SharedControllerFactory) DockhandSecretController

type DockhandSecretHandler

type DockhandSecretHandler func(string, *v1alpha1.DockhandSecret) (*v1alpha1.DockhandSecret, error)

type DockhandSecretIndexer

type DockhandSecretIndexer func(obj *v1alpha1.DockhandSecret) ([]string, error)

type DockhandSecretsProfileCache

type DockhandSecretsProfileCache interface {
	Get(namespace, name string) (*v1alpha1.DockhandSecretsProfile, error)
	List(namespace string, selector labels.Selector) ([]*v1alpha1.DockhandSecretsProfile, error)

	AddIndexer(indexName string, indexer DockhandSecretsProfileIndexer)
	GetByIndex(indexName, key string) ([]*v1alpha1.DockhandSecretsProfile, error)
}

type DockhandSecretsProfileClient

type DockhandSecretsProfileClient interface {
	Create(*v1alpha1.DockhandSecretsProfile) (*v1alpha1.DockhandSecretsProfile, error)
	Update(*v1alpha1.DockhandSecretsProfile) (*v1alpha1.DockhandSecretsProfile, error)

	Delete(namespace, name string, options *metav1.DeleteOptions) error
	Get(namespace, name string, options metav1.GetOptions) (*v1alpha1.DockhandSecretsProfile, error)
	List(namespace string, opts metav1.ListOptions) (*v1alpha1.DockhandSecretsProfileList, error)
	Watch(namespace string, opts metav1.ListOptions) (watch.Interface, error)
	Patch(namespace, name string, pt types.PatchType, data []byte, subresources ...string) (result *v1alpha1.DockhandSecretsProfile, err error)
}

type DockhandSecretsProfileController

type DockhandSecretsProfileController interface {
	generic.ControllerMeta
	DockhandSecretsProfileClient

	OnChange(ctx context.Context, name string, sync DockhandSecretsProfileHandler)
	OnRemove(ctx context.Context, name string, sync DockhandSecretsProfileHandler)
	Enqueue(namespace, name string)
	EnqueueAfter(namespace, name string, duration time.Duration)

	Cache() DockhandSecretsProfileCache
}

func NewDockhandSecretsProfileController

func NewDockhandSecretsProfileController(gvk schema.GroupVersionKind, resource string, namespaced bool, controller controller.SharedControllerFactory) DockhandSecretsProfileController

type DockhandSecretsProfileIndexer

type DockhandSecretsProfileIndexer func(obj *v1alpha1.DockhandSecretsProfile) ([]string, error)

type Interface

type Interface interface {
	DockhandSecret() DockhandSecretController
	DockhandSecretsProfile() DockhandSecretsProfileController
}

func New

func New(controllerFactory controller.SharedControllerFactory) Interface

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL