internalversion

package
v3.9.0-alpha.0 Latest Latest
Warning

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

Go to latest
Published: Dec 1, 2017 License: Apache-2.0 Imports: 9 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func NewClusterPolicyBindingInformer added in v3.8.0

func NewClusterPolicyBindingInformer(client internalclientset.Interface, resyncPeriod time.Duration, indexers cache.Indexers) cache.SharedIndexInformer

NewClusterPolicyBindingInformer constructs a new informer for ClusterPolicyBinding type. Always prefer using an informer factory to get a shared informer instead of getting an independent one. This reduces memory footprint and number of connections to the server.

func NewClusterPolicyInformer added in v3.8.0

func NewClusterPolicyInformer(client internalclientset.Interface, resyncPeriod time.Duration, indexers cache.Indexers) cache.SharedIndexInformer

NewClusterPolicyInformer constructs a new informer for ClusterPolicy type. Always prefer using an informer factory to get a shared informer instead of getting an independent one. This reduces memory footprint and number of connections to the server.

func NewClusterRoleBindingInformer added in v3.8.0

func NewClusterRoleBindingInformer(client internalclientset.Interface, resyncPeriod time.Duration, indexers cache.Indexers) cache.SharedIndexInformer

NewClusterRoleBindingInformer constructs a new informer for ClusterRoleBinding type. Always prefer using an informer factory to get a shared informer instead of getting an independent one. This reduces memory footprint and number of connections to the server.

func NewClusterRoleInformer added in v3.8.0

func NewClusterRoleInformer(client internalclientset.Interface, resyncPeriod time.Duration, indexers cache.Indexers) cache.SharedIndexInformer

NewClusterRoleInformer constructs a new informer for ClusterRole type. Always prefer using an informer factory to get a shared informer instead of getting an independent one. This reduces memory footprint and number of connections to the server.

func NewPolicyBindingInformer added in v3.8.0

func NewPolicyBindingInformer(client internalclientset.Interface, namespace string, resyncPeriod time.Duration, indexers cache.Indexers) cache.SharedIndexInformer

NewPolicyBindingInformer constructs a new informer for PolicyBinding type. Always prefer using an informer factory to get a shared informer instead of getting an independent one. This reduces memory footprint and number of connections to the server.

func NewPolicyInformer added in v3.8.0

func NewPolicyInformer(client internalclientset.Interface, namespace string, resyncPeriod time.Duration, indexers cache.Indexers) cache.SharedIndexInformer

NewPolicyInformer constructs a new informer for Policy type. Always prefer using an informer factory to get a shared informer instead of getting an independent one. This reduces memory footprint and number of connections to the server.

func NewRoleBindingInformer added in v3.8.0

func NewRoleBindingInformer(client internalclientset.Interface, namespace string, resyncPeriod time.Duration, indexers cache.Indexers) cache.SharedIndexInformer

NewRoleBindingInformer constructs a new informer for RoleBinding type. Always prefer using an informer factory to get a shared informer instead of getting an independent one. This reduces memory footprint and number of connections to the server.

func NewRoleBindingRestrictionInformer added in v3.8.0

func NewRoleBindingRestrictionInformer(client internalclientset.Interface, namespace string, resyncPeriod time.Duration, indexers cache.Indexers) cache.SharedIndexInformer

NewRoleBindingRestrictionInformer constructs a new informer for RoleBindingRestriction type. Always prefer using an informer factory to get a shared informer instead of getting an independent one. This reduces memory footprint and number of connections to the server.

func NewRoleInformer added in v3.8.0

func NewRoleInformer(client internalclientset.Interface, namespace string, resyncPeriod time.Duration, indexers cache.Indexers) cache.SharedIndexInformer

NewRoleInformer constructs a new informer for Role type. Always prefer using an informer factory to get a shared informer instead of getting an independent one. This reduces memory footprint and number of connections to the server.

Types

type ClusterPolicyBindingInformer

type ClusterPolicyBindingInformer interface {
	Informer() cache.SharedIndexInformer
	Lister() internalversion.ClusterPolicyBindingLister
}

ClusterPolicyBindingInformer provides access to a shared informer and lister for ClusterPolicyBindings.

type ClusterPolicyInformer

type ClusterPolicyInformer interface {
	Informer() cache.SharedIndexInformer
	Lister() internalversion.ClusterPolicyLister
}

ClusterPolicyInformer provides access to a shared informer and lister for ClusterPolicies.

type ClusterRoleBindingInformer

type ClusterRoleBindingInformer interface {
	Informer() cache.SharedIndexInformer
	Lister() internalversion.ClusterRoleBindingLister
}

ClusterRoleBindingInformer provides access to a shared informer and lister for ClusterRoleBindings.

type ClusterRoleInformer

type ClusterRoleInformer interface {
	Informer() cache.SharedIndexInformer
	Lister() internalversion.ClusterRoleLister
}

ClusterRoleInformer provides access to a shared informer and lister for ClusterRoles.

type Interface

type Interface interface {
	// ClusterPolicies returns a ClusterPolicyInformer.
	ClusterPolicies() ClusterPolicyInformer
	// ClusterPolicyBindings returns a ClusterPolicyBindingInformer.
	ClusterPolicyBindings() ClusterPolicyBindingInformer
	// ClusterRoles returns a ClusterRoleInformer.
	ClusterRoles() ClusterRoleInformer
	// ClusterRoleBindings returns a ClusterRoleBindingInformer.
	ClusterRoleBindings() ClusterRoleBindingInformer
	// Policies returns a PolicyInformer.
	Policies() PolicyInformer
	// PolicyBindings returns a PolicyBindingInformer.
	PolicyBindings() PolicyBindingInformer
	// Roles returns a RoleInformer.
	Roles() RoleInformer
	// RoleBindings returns a RoleBindingInformer.
	RoleBindings() RoleBindingInformer
	// RoleBindingRestrictions returns a RoleBindingRestrictionInformer.
	RoleBindingRestrictions() RoleBindingRestrictionInformer
}

Interface provides access to all the informers in this group version.

func New

New returns a new Interface.

type PolicyBindingInformer

type PolicyBindingInformer interface {
	Informer() cache.SharedIndexInformer
	Lister() internalversion.PolicyBindingLister
}

PolicyBindingInformer provides access to a shared informer and lister for PolicyBindings.

type PolicyInformer

type PolicyInformer interface {
	Informer() cache.SharedIndexInformer
	Lister() internalversion.PolicyLister
}

PolicyInformer provides access to a shared informer and lister for Policies.

type RoleBindingInformer

type RoleBindingInformer interface {
	Informer() cache.SharedIndexInformer
	Lister() internalversion.RoleBindingLister
}

RoleBindingInformer provides access to a shared informer and lister for RoleBindings.

type RoleBindingRestrictionInformer added in v3.7.0

type RoleBindingRestrictionInformer interface {
	Informer() cache.SharedIndexInformer
	Lister() internalversion.RoleBindingRestrictionLister
}

RoleBindingRestrictionInformer provides access to a shared informer and lister for RoleBindingRestrictions.

type RoleInformer

type RoleInformer interface {
	Informer() cache.SharedIndexInformer
	Lister() internalversion.RoleLister
}

RoleInformer provides access to a shared informer and lister for Roles.

Jump to

Keyboard shortcuts

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