v1alpha1

package
v0.5.0 Latest Latest
Warning

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

Go to latest
Published: May 8, 2022 License: Apache-2.0 Imports: 4 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type CommandLister added in v0.5.0

type CommandLister interface {
	// List lists all Commands in the indexer.
	// Objects returned here must be treated as read-only.
	List(selector labels.Selector) (ret []*v1alpha1.Command, err error)
	// Commands returns an object that can list and get Commands.
	Commands(namespace string) CommandNamespaceLister
	CommandListerExpansion
}

CommandLister helps list Commands. All objects returned here must be treated as read-only.

func NewCommandLister added in v0.5.0

func NewCommandLister(indexer cache.Indexer) CommandLister

NewCommandLister returns a new CommandLister.

type CommandListerExpansion added in v0.5.0

type CommandListerExpansion interface{}

CommandListerExpansion allows custom methods to be added to CommandLister.

type CommandNamespaceLister added in v0.5.0

type CommandNamespaceLister interface {
	// List lists all Commands in the indexer for a given namespace.
	// Objects returned here must be treated as read-only.
	List(selector labels.Selector) (ret []*v1alpha1.Command, err error)
	// Get retrieves the Command from the indexer for a given namespace and name.
	// Objects returned here must be treated as read-only.
	Get(name string) (*v1alpha1.Command, error)
	CommandNamespaceListerExpansion
}

CommandNamespaceLister helps list and get Commands. All objects returned here must be treated as read-only.

type CommandNamespaceListerExpansion added in v0.5.0

type CommandNamespaceListerExpansion interface{}

CommandNamespaceListerExpansion allows custom methods to be added to CommandNamespaceLister.

type DesktopLister added in v0.5.0

type DesktopLister interface {
	// List lists all Desktops in the indexer.
	// Objects returned here must be treated as read-only.
	List(selector labels.Selector) (ret []*v1alpha1.Desktop, err error)
	// Desktops returns an object that can list and get Desktops.
	Desktops(namespace string) DesktopNamespaceLister
	DesktopListerExpansion
}

DesktopLister helps list Desktops. All objects returned here must be treated as read-only.

func NewDesktopLister added in v0.5.0

func NewDesktopLister(indexer cache.Indexer) DesktopLister

NewDesktopLister returns a new DesktopLister.

type DesktopListerExpansion added in v0.5.0

type DesktopListerExpansion interface{}

DesktopListerExpansion allows custom methods to be added to DesktopLister.

type DesktopNamespaceLister added in v0.5.0

type DesktopNamespaceLister interface {
	// List lists all Desktops in the indexer for a given namespace.
	// Objects returned here must be treated as read-only.
	List(selector labels.Selector) (ret []*v1alpha1.Desktop, err error)
	// Get retrieves the Desktop from the indexer for a given namespace and name.
	// Objects returned here must be treated as read-only.
	Get(name string) (*v1alpha1.Desktop, error)
	DesktopNamespaceListerExpansion
}

DesktopNamespaceLister helps list and get Desktops. All objects returned here must be treated as read-only.

type DesktopNamespaceListerExpansion added in v0.5.0

type DesktopNamespaceListerExpansion interface{}

DesktopNamespaceListerExpansion allows custom methods to be added to DesktopNamespaceLister.

type ImageLister added in v0.5.0

type ImageLister interface {
	// List lists all Images in the indexer.
	// Objects returned here must be treated as read-only.
	List(selector labels.Selector) (ret []*v1alpha1.Image, err error)
	// Images returns an object that can list and get Images.
	Images(namespace string) ImageNamespaceLister
	ImageListerExpansion
}

ImageLister helps list Images. All objects returned here must be treated as read-only.

func NewImageLister added in v0.5.0

func NewImageLister(indexer cache.Indexer) ImageLister

NewImageLister returns a new ImageLister.

type ImageListerExpansion added in v0.5.0

type ImageListerExpansion interface{}

ImageListerExpansion allows custom methods to be added to ImageLister.

type ImageNamespaceLister added in v0.5.0

type ImageNamespaceLister interface {
	// List lists all Images in the indexer for a given namespace.
	// Objects returned here must be treated as read-only.
	List(selector labels.Selector) (ret []*v1alpha1.Image, err error)
	// Get retrieves the Image from the indexer for a given namespace and name.
	// Objects returned here must be treated as read-only.
	Get(name string) (*v1alpha1.Image, error)
	ImageNamespaceListerExpansion
}

ImageNamespaceLister helps list and get Images. All objects returned here must be treated as read-only.

type ImageNamespaceListerExpansion added in v0.5.0

type ImageNamespaceListerExpansion interface{}

ImageNamespaceListerExpansion allows custom methods to be added to ImageNamespaceLister.

type NasFileSystemLister added in v0.5.0

type NasFileSystemLister interface {
	// List lists all NasFileSystems in the indexer.
	// Objects returned here must be treated as read-only.
	List(selector labels.Selector) (ret []*v1alpha1.NasFileSystem, err error)
	// NasFileSystems returns an object that can list and get NasFileSystems.
	NasFileSystems(namespace string) NasFileSystemNamespaceLister
	NasFileSystemListerExpansion
}

NasFileSystemLister helps list NasFileSystems. All objects returned here must be treated as read-only.

func NewNasFileSystemLister added in v0.5.0

func NewNasFileSystemLister(indexer cache.Indexer) NasFileSystemLister

NewNasFileSystemLister returns a new NasFileSystemLister.

type NasFileSystemListerExpansion added in v0.5.0

type NasFileSystemListerExpansion interface{}

NasFileSystemListerExpansion allows custom methods to be added to NasFileSystemLister.

type NasFileSystemNamespaceLister added in v0.5.0

type NasFileSystemNamespaceLister interface {
	// List lists all NasFileSystems in the indexer for a given namespace.
	// Objects returned here must be treated as read-only.
	List(selector labels.Selector) (ret []*v1alpha1.NasFileSystem, err error)
	// Get retrieves the NasFileSystem from the indexer for a given namespace and name.
	// Objects returned here must be treated as read-only.
	Get(name string) (*v1alpha1.NasFileSystem, error)
	NasFileSystemNamespaceListerExpansion
}

NasFileSystemNamespaceLister helps list and get NasFileSystems. All objects returned here must be treated as read-only.

type NasFileSystemNamespaceListerExpansion added in v0.5.0

type NasFileSystemNamespaceListerExpansion interface{}

NasFileSystemNamespaceListerExpansion allows custom methods to be added to NasFileSystemNamespaceLister.

type NetworkPackageLister added in v0.5.0

type NetworkPackageLister interface {
	// List lists all NetworkPackages in the indexer.
	// Objects returned here must be treated as read-only.
	List(selector labels.Selector) (ret []*v1alpha1.NetworkPackage, err error)
	// NetworkPackages returns an object that can list and get NetworkPackages.
	NetworkPackages(namespace string) NetworkPackageNamespaceLister
	NetworkPackageListerExpansion
}

NetworkPackageLister helps list NetworkPackages. All objects returned here must be treated as read-only.

func NewNetworkPackageLister added in v0.5.0

func NewNetworkPackageLister(indexer cache.Indexer) NetworkPackageLister

NewNetworkPackageLister returns a new NetworkPackageLister.

type NetworkPackageListerExpansion added in v0.5.0

type NetworkPackageListerExpansion interface{}

NetworkPackageListerExpansion allows custom methods to be added to NetworkPackageLister.

type NetworkPackageNamespaceLister added in v0.5.0

type NetworkPackageNamespaceLister interface {
	// List lists all NetworkPackages in the indexer for a given namespace.
	// Objects returned here must be treated as read-only.
	List(selector labels.Selector) (ret []*v1alpha1.NetworkPackage, err error)
	// Get retrieves the NetworkPackage from the indexer for a given namespace and name.
	// Objects returned here must be treated as read-only.
	Get(name string) (*v1alpha1.NetworkPackage, error)
	NetworkPackageNamespaceListerExpansion
}

NetworkPackageNamespaceLister helps list and get NetworkPackages. All objects returned here must be treated as read-only.

type NetworkPackageNamespaceListerExpansion added in v0.5.0

type NetworkPackageNamespaceListerExpansion interface{}

NetworkPackageNamespaceListerExpansion allows custom methods to be added to NetworkPackageNamespaceLister.

type PolicyGroupLister

type PolicyGroupLister interface {
	// List lists all PolicyGroups in the indexer.
	// Objects returned here must be treated as read-only.
	List(selector labels.Selector) (ret []*v1alpha1.PolicyGroup, err error)
	// PolicyGroups returns an object that can list and get PolicyGroups.
	PolicyGroups(namespace string) PolicyGroupNamespaceLister
	PolicyGroupListerExpansion
}

PolicyGroupLister helps list PolicyGroups. All objects returned here must be treated as read-only.

func NewPolicyGroupLister

func NewPolicyGroupLister(indexer cache.Indexer) PolicyGroupLister

NewPolicyGroupLister returns a new PolicyGroupLister.

type PolicyGroupListerExpansion

type PolicyGroupListerExpansion interface{}

PolicyGroupListerExpansion allows custom methods to be added to PolicyGroupLister.

type PolicyGroupNamespaceLister

type PolicyGroupNamespaceLister interface {
	// List lists all PolicyGroups in the indexer for a given namespace.
	// Objects returned here must be treated as read-only.
	List(selector labels.Selector) (ret []*v1alpha1.PolicyGroup, err error)
	// Get retrieves the PolicyGroup from the indexer for a given namespace and name.
	// Objects returned here must be treated as read-only.
	Get(name string) (*v1alpha1.PolicyGroup, error)
	PolicyGroupNamespaceListerExpansion
}

PolicyGroupNamespaceLister helps list and get PolicyGroups. All objects returned here must be treated as read-only.

type PolicyGroupNamespaceListerExpansion

type PolicyGroupNamespaceListerExpansion interface{}

PolicyGroupNamespaceListerExpansion allows custom methods to be added to PolicyGroupNamespaceLister.

type SimpleOfficeSiteLister

type SimpleOfficeSiteLister interface {
	// List lists all SimpleOfficeSites in the indexer.
	// Objects returned here must be treated as read-only.
	List(selector labels.Selector) (ret []*v1alpha1.SimpleOfficeSite, err error)
	// SimpleOfficeSites returns an object that can list and get SimpleOfficeSites.
	SimpleOfficeSites(namespace string) SimpleOfficeSiteNamespaceLister
	SimpleOfficeSiteListerExpansion
}

SimpleOfficeSiteLister helps list SimpleOfficeSites. All objects returned here must be treated as read-only.

func NewSimpleOfficeSiteLister

func NewSimpleOfficeSiteLister(indexer cache.Indexer) SimpleOfficeSiteLister

NewSimpleOfficeSiteLister returns a new SimpleOfficeSiteLister.

type SimpleOfficeSiteListerExpansion

type SimpleOfficeSiteListerExpansion interface{}

SimpleOfficeSiteListerExpansion allows custom methods to be added to SimpleOfficeSiteLister.

type SimpleOfficeSiteNamespaceLister

type SimpleOfficeSiteNamespaceLister interface {
	// List lists all SimpleOfficeSites in the indexer for a given namespace.
	// Objects returned here must be treated as read-only.
	List(selector labels.Selector) (ret []*v1alpha1.SimpleOfficeSite, err error)
	// Get retrieves the SimpleOfficeSite from the indexer for a given namespace and name.
	// Objects returned here must be treated as read-only.
	Get(name string) (*v1alpha1.SimpleOfficeSite, error)
	SimpleOfficeSiteNamespaceListerExpansion
}

SimpleOfficeSiteNamespaceLister helps list and get SimpleOfficeSites. All objects returned here must be treated as read-only.

type SimpleOfficeSiteNamespaceListerExpansion

type SimpleOfficeSiteNamespaceListerExpansion interface{}

SimpleOfficeSiteNamespaceListerExpansion allows custom methods to be added to SimpleOfficeSiteNamespaceLister.

type UserLister added in v0.5.0

type UserLister interface {
	// List lists all Users in the indexer.
	// Objects returned here must be treated as read-only.
	List(selector labels.Selector) (ret []*v1alpha1.User, err error)
	// Users returns an object that can list and get Users.
	Users(namespace string) UserNamespaceLister
	UserListerExpansion
}

UserLister helps list Users. All objects returned here must be treated as read-only.

func NewUserLister added in v0.5.0

func NewUserLister(indexer cache.Indexer) UserLister

NewUserLister returns a new UserLister.

type UserListerExpansion added in v0.5.0

type UserListerExpansion interface{}

UserListerExpansion allows custom methods to be added to UserLister.

type UserNamespaceLister added in v0.5.0

type UserNamespaceLister interface {
	// List lists all Users in the indexer for a given namespace.
	// Objects returned here must be treated as read-only.
	List(selector labels.Selector) (ret []*v1alpha1.User, err error)
	// Get retrieves the User from the indexer for a given namespace and name.
	// Objects returned here must be treated as read-only.
	Get(name string) (*v1alpha1.User, error)
	UserNamespaceListerExpansion
}

UserNamespaceLister helps list and get Users. All objects returned here must be treated as read-only.

type UserNamespaceListerExpansion added in v0.5.0

type UserNamespaceListerExpansion interface{}

UserNamespaceListerExpansion allows custom methods to be added to UserNamespaceLister.

Jump to

Keyboard shortcuts

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