Documentation ¶
Index ¶
- type ChartGroupLister
- type ChartGroupListerExpansion
- type ChartGroupNamespaceLister
- type ChartGroupNamespaceListerExpansion
- type ConfigMapLister
- type ConfigMapListerExpansion
- type ImageNamespaceLister
- type ImageNamespaceListerExpansion
- type ImageNamespaceNamespaceLister
- type ImageNamespaceNamespaceListerExpansion
- type NamespaceLister
- type NamespaceListerExpansion
- type NamespaceNamespaceLister
- type NamespaceNamespaceListerExpansion
- type NsEmigrationLister
- type NsEmigrationListerExpansion
- type NsEmigrationNamespaceLister
- type NsEmigrationNamespaceListerExpansion
- type PlatformLister
- type PlatformListerExpansion
- type PortalLister
- type PortalListerExpansion
- type ProjectLister
- type ProjectListerExpansion
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ChartGroupLister ¶
type ChartGroupLister interface { // List lists all ChartGroups in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1.ChartGroup, err error) // ChartGroups returns an object that can list and get ChartGroups. ChartGroups(namespace string) ChartGroupNamespaceLister ChartGroupListerExpansion }
ChartGroupLister helps list ChartGroups. All objects returned here must be treated as read-only.
func NewChartGroupLister ¶
func NewChartGroupLister(indexer cache.Indexer) ChartGroupLister
NewChartGroupLister returns a new ChartGroupLister.
type ChartGroupListerExpansion ¶
type ChartGroupListerExpansion interface{}
ChartGroupListerExpansion allows custom methods to be added to ChartGroupLister.
type ChartGroupNamespaceLister ¶
type ChartGroupNamespaceLister interface { // List lists all ChartGroups in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1.ChartGroup, err error) // Get retrieves the ChartGroup from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1.ChartGroup, error) ChartGroupNamespaceListerExpansion }
ChartGroupNamespaceLister helps list and get ChartGroups. All objects returned here must be treated as read-only.
type ChartGroupNamespaceListerExpansion ¶
type ChartGroupNamespaceListerExpansion interface{}
ChartGroupNamespaceListerExpansion allows custom methods to be added to ChartGroupNamespaceLister.
type ConfigMapLister ¶
type ConfigMapLister interface { // List lists all ConfigMaps in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1.ConfigMap, err error) // Get retrieves the ConfigMap from the index for a given name. // Objects returned here must be treated as read-only. Get(name string) (*v1.ConfigMap, error) ConfigMapListerExpansion }
ConfigMapLister helps list ConfigMaps. All objects returned here must be treated as read-only.
func NewConfigMapLister ¶
func NewConfigMapLister(indexer cache.Indexer) ConfigMapLister
NewConfigMapLister returns a new ConfigMapLister.
type ConfigMapListerExpansion ¶
type ConfigMapListerExpansion interface{}
ConfigMapListerExpansion allows custom methods to be added to ConfigMapLister.
type ImageNamespaceLister ¶
type ImageNamespaceLister interface { // List lists all ImageNamespaces in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1.ImageNamespace, err error) // ImageNamespaces returns an object that can list and get ImageNamespaces. ImageNamespaces(namespace string) ImageNamespaceNamespaceLister ImageNamespaceListerExpansion }
ImageNamespaceLister helps list ImageNamespaces. All objects returned here must be treated as read-only.
func NewImageNamespaceLister ¶
func NewImageNamespaceLister(indexer cache.Indexer) ImageNamespaceLister
NewImageNamespaceLister returns a new ImageNamespaceLister.
type ImageNamespaceListerExpansion ¶
type ImageNamespaceListerExpansion interface{}
ImageNamespaceListerExpansion allows custom methods to be added to ImageNamespaceLister.
type ImageNamespaceNamespaceLister ¶
type ImageNamespaceNamespaceLister interface { // List lists all ImageNamespaces in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1.ImageNamespace, err error) // Get retrieves the ImageNamespace from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1.ImageNamespace, error) ImageNamespaceNamespaceListerExpansion }
ImageNamespaceNamespaceLister helps list and get ImageNamespaces. All objects returned here must be treated as read-only.
type ImageNamespaceNamespaceListerExpansion ¶
type ImageNamespaceNamespaceListerExpansion interface{}
ImageNamespaceNamespaceListerExpansion allows custom methods to be added to ImageNamespaceNamespaceLister.
type NamespaceLister ¶
type NamespaceLister interface { // List lists all Namespaces in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1.Namespace, err error) // Namespaces returns an object that can list and get Namespaces. Namespaces(namespace string) NamespaceNamespaceLister NamespaceListerExpansion }
NamespaceLister helps list Namespaces. All objects returned here must be treated as read-only.
func NewNamespaceLister ¶
func NewNamespaceLister(indexer cache.Indexer) NamespaceLister
NewNamespaceLister returns a new NamespaceLister.
type NamespaceListerExpansion ¶
type NamespaceListerExpansion interface{}
NamespaceListerExpansion allows custom methods to be added to NamespaceLister.
type NamespaceNamespaceLister ¶
type NamespaceNamespaceLister interface { // List lists all Namespaces in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1.Namespace, err error) // Get retrieves the Namespace from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1.Namespace, error) NamespaceNamespaceListerExpansion }
NamespaceNamespaceLister helps list and get Namespaces. All objects returned here must be treated as read-only.
type NamespaceNamespaceListerExpansion ¶
type NamespaceNamespaceListerExpansion interface{}
NamespaceNamespaceListerExpansion allows custom methods to be added to NamespaceNamespaceLister.
type NsEmigrationLister ¶ added in v1.3.1
type NsEmigrationLister interface { // List lists all NsEmigrations in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1.NsEmigration, err error) // NsEmigrations returns an object that can list and get NsEmigrations. NsEmigrations(namespace string) NsEmigrationNamespaceLister NsEmigrationListerExpansion }
NsEmigrationLister helps list NsEmigrations. All objects returned here must be treated as read-only.
func NewNsEmigrationLister ¶ added in v1.3.1
func NewNsEmigrationLister(indexer cache.Indexer) NsEmigrationLister
NewNsEmigrationLister returns a new NsEmigrationLister.
type NsEmigrationListerExpansion ¶ added in v1.3.1
type NsEmigrationListerExpansion interface{}
NsEmigrationListerExpansion allows custom methods to be added to NsEmigrationLister.
type NsEmigrationNamespaceLister ¶ added in v1.3.1
type NsEmigrationNamespaceLister interface { // List lists all NsEmigrations in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1.NsEmigration, err error) // Get retrieves the NsEmigration from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1.NsEmigration, error) NsEmigrationNamespaceListerExpansion }
NsEmigrationNamespaceLister helps list and get NsEmigrations. All objects returned here must be treated as read-only.
type NsEmigrationNamespaceListerExpansion ¶ added in v1.3.1
type NsEmigrationNamespaceListerExpansion interface{}
NsEmigrationNamespaceListerExpansion allows custom methods to be added to NsEmigrationNamespaceLister.
type PlatformLister ¶
type PlatformLister interface { // List lists all Platforms in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1.Platform, err error) // Get retrieves the Platform from the index for a given name. // Objects returned here must be treated as read-only. Get(name string) (*v1.Platform, error) PlatformListerExpansion }
PlatformLister helps list Platforms. All objects returned here must be treated as read-only.
func NewPlatformLister ¶
func NewPlatformLister(indexer cache.Indexer) PlatformLister
NewPlatformLister returns a new PlatformLister.
type PlatformListerExpansion ¶
type PlatformListerExpansion interface{}
PlatformListerExpansion allows custom methods to be added to PlatformLister.
type PortalLister ¶
type PortalLister interface { // List lists all Portals in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1.Portal, err error) // Get retrieves the Portal from the index for a given name. // Objects returned here must be treated as read-only. Get(name string) (*v1.Portal, error) PortalListerExpansion }
PortalLister helps list Portals. All objects returned here must be treated as read-only.
func NewPortalLister ¶
func NewPortalLister(indexer cache.Indexer) PortalLister
NewPortalLister returns a new PortalLister.
type PortalListerExpansion ¶
type PortalListerExpansion interface{}
PortalListerExpansion allows custom methods to be added to PortalLister.
type ProjectLister ¶
type ProjectLister interface { // List lists all Projects in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1.Project, err error) // Get retrieves the Project from the index for a given name. // Objects returned here must be treated as read-only. Get(name string) (*v1.Project, error) ProjectListerExpansion }
ProjectLister helps list Projects. All objects returned here must be treated as read-only.
func NewProjectLister ¶
func NewProjectLister(indexer cache.Indexer) ProjectLister
NewProjectLister returns a new ProjectLister.
type ProjectListerExpansion ¶
type ProjectListerExpansion interface{}
ProjectListerExpansion allows custom methods to be added to ProjectLister.