Documentation ¶
Index ¶
- type ConfigLister
- type ConfigListerExpansion
- type ConfigNamespaceLister
- type ConfigNamespaceListerExpansion
- type ConfigSetLister
- type ConfigSetListerExpansion
- type ConfigSetNamespaceLister
- type ConfigSetNamespaceListerExpansion
- type RunningConfigLister
- type RunningConfigListerExpansion
- type RunningConfigNamespaceLister
- type RunningConfigNamespaceListerExpansion
- type UnManagedConfigLister
- type UnManagedConfigListerExpansion
- type UnManagedConfigNamespaceLister
- type UnManagedConfigNamespaceListerExpansion
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ConfigLister ¶
type ConfigLister interface { // List lists all Configs in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Config, err error) // Configs returns an object that can list and get Configs. Configs(namespace string) ConfigNamespaceLister ConfigListerExpansion }
ConfigLister helps list Configs. All objects returned here must be treated as read-only.
func NewConfigLister ¶
func NewConfigLister(indexer cache.Indexer) ConfigLister
NewConfigLister returns a new ConfigLister.
type ConfigListerExpansion ¶
type ConfigListerExpansion interface{}
ConfigListerExpansion allows custom methods to be added to ConfigLister.
type ConfigNamespaceLister ¶
type ConfigNamespaceLister interface { // List lists all Configs in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Config, err error) // Get retrieves the Config from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.Config, error) ConfigNamespaceListerExpansion }
ConfigNamespaceLister helps list and get Configs. All objects returned here must be treated as read-only.
type ConfigNamespaceListerExpansion ¶
type ConfigNamespaceListerExpansion interface{}
ConfigNamespaceListerExpansion allows custom methods to be added to ConfigNamespaceLister.
type ConfigSetLister ¶
type ConfigSetLister interface { // List lists all ConfigSets in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.ConfigSet, err error) // ConfigSets returns an object that can list and get ConfigSets. ConfigSets(namespace string) ConfigSetNamespaceLister ConfigSetListerExpansion }
ConfigSetLister helps list ConfigSets. All objects returned here must be treated as read-only.
func NewConfigSetLister ¶
func NewConfigSetLister(indexer cache.Indexer) ConfigSetLister
NewConfigSetLister returns a new ConfigSetLister.
type ConfigSetListerExpansion ¶
type ConfigSetListerExpansion interface{}
ConfigSetListerExpansion allows custom methods to be added to ConfigSetLister.
type ConfigSetNamespaceLister ¶
type ConfigSetNamespaceLister interface { // List lists all ConfigSets in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.ConfigSet, err error) // Get retrieves the ConfigSet from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.ConfigSet, error) ConfigSetNamespaceListerExpansion }
ConfigSetNamespaceLister helps list and get ConfigSets. All objects returned here must be treated as read-only.
type ConfigSetNamespaceListerExpansion ¶
type ConfigSetNamespaceListerExpansion interface{}
ConfigSetNamespaceListerExpansion allows custom methods to be added to ConfigSetNamespaceLister.
type RunningConfigLister ¶
type RunningConfigLister interface { // List lists all RunningConfigs in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.RunningConfig, err error) // RunningConfigs returns an object that can list and get RunningConfigs. RunningConfigs(namespace string) RunningConfigNamespaceLister RunningConfigListerExpansion }
RunningConfigLister helps list RunningConfigs. All objects returned here must be treated as read-only.
func NewRunningConfigLister ¶
func NewRunningConfigLister(indexer cache.Indexer) RunningConfigLister
NewRunningConfigLister returns a new RunningConfigLister.
type RunningConfigListerExpansion ¶
type RunningConfigListerExpansion interface{}
RunningConfigListerExpansion allows custom methods to be added to RunningConfigLister.
type RunningConfigNamespaceLister ¶
type RunningConfigNamespaceLister interface { // List lists all RunningConfigs in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.RunningConfig, err error) // Get retrieves the RunningConfig from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.RunningConfig, error) RunningConfigNamespaceListerExpansion }
RunningConfigNamespaceLister helps list and get RunningConfigs. All objects returned here must be treated as read-only.
type RunningConfigNamespaceListerExpansion ¶
type RunningConfigNamespaceListerExpansion interface{}
RunningConfigNamespaceListerExpansion allows custom methods to be added to RunningConfigNamespaceLister.
type UnManagedConfigLister ¶
type UnManagedConfigLister interface { // List lists all UnManagedConfigs in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.UnManagedConfig, err error) // UnManagedConfigs returns an object that can list and get UnManagedConfigs. UnManagedConfigs(namespace string) UnManagedConfigNamespaceLister UnManagedConfigListerExpansion }
UnManagedConfigLister helps list UnManagedConfigs. All objects returned here must be treated as read-only.
func NewUnManagedConfigLister ¶
func NewUnManagedConfigLister(indexer cache.Indexer) UnManagedConfigLister
NewUnManagedConfigLister returns a new UnManagedConfigLister.
type UnManagedConfigListerExpansion ¶
type UnManagedConfigListerExpansion interface{}
UnManagedConfigListerExpansion allows custom methods to be added to UnManagedConfigLister.
type UnManagedConfigNamespaceLister ¶
type UnManagedConfigNamespaceLister interface { // List lists all UnManagedConfigs in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.UnManagedConfig, err error) // Get retrieves the UnManagedConfig from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.UnManagedConfig, error) UnManagedConfigNamespaceListerExpansion }
UnManagedConfigNamespaceLister helps list and get UnManagedConfigs. All objects returned here must be treated as read-only.
type UnManagedConfigNamespaceListerExpansion ¶
type UnManagedConfigNamespaceListerExpansion interface{}
UnManagedConfigNamespaceListerExpansion allows custom methods to be added to UnManagedConfigNamespaceLister.