Documentation ¶
Index ¶
- type DomainLister
- type DomainListerExpansion
- type DomainNamespaceLister
- type DomainNamespaceListerExpansion
- type DomainRecordLister
- type DomainRecordListerExpansion
- type DomainRecordNamespaceLister
- type DomainRecordNamespaceListerExpansion
- type FirewallLister
- type FirewallListerExpansion
- type FirewallNamespaceLister
- type FirewallNamespaceListerExpansion
- type ImageLister
- type ImageListerExpansion
- type ImageNamespaceLister
- type ImageNamespaceListerExpansion
- type InstanceLister
- type InstanceListerExpansion
- type InstanceNamespaceLister
- type InstanceNamespaceListerExpansion
- type LkeClusterLister
- type LkeClusterListerExpansion
- type LkeClusterNamespaceLister
- type LkeClusterNamespaceListerExpansion
- type NodebalancerConfigLister
- type NodebalancerConfigListerExpansion
- type NodebalancerConfigNamespaceLister
- type NodebalancerConfigNamespaceListerExpansion
- type NodebalancerLister
- type NodebalancerListerExpansion
- type NodebalancerNamespaceLister
- type NodebalancerNamespaceListerExpansion
- type NodebalancerNodeLister
- type NodebalancerNodeListerExpansion
- type NodebalancerNodeNamespaceLister
- type NodebalancerNodeNamespaceListerExpansion
- type ObjectStorageBucketLister
- type ObjectStorageBucketListerExpansion
- type ObjectStorageBucketNamespaceLister
- type ObjectStorageBucketNamespaceListerExpansion
- type ObjectStorageKeyLister
- type ObjectStorageKeyListerExpansion
- type ObjectStorageKeyNamespaceLister
- type ObjectStorageKeyNamespaceListerExpansion
- type RdnsLister
- type RdnsListerExpansion
- type RdnsNamespaceLister
- type RdnsNamespaceListerExpansion
- type SshkeyLister
- type SshkeyListerExpansion
- type SshkeyNamespaceLister
- type SshkeyNamespaceListerExpansion
- type StackscriptLister
- type StackscriptListerExpansion
- type StackscriptNamespaceLister
- type StackscriptNamespaceListerExpansion
- type TokenLister
- type TokenListerExpansion
- type TokenNamespaceLister
- type TokenNamespaceListerExpansion
- type VolumeLister
- type VolumeListerExpansion
- type VolumeNamespaceLister
- type VolumeNamespaceListerExpansion
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type DomainLister ¶
type DomainLister interface { // List lists all Domains in the indexer. List(selector labels.Selector) (ret []*v1alpha1.Domain, err error) // Domains returns an object that can list and get Domains. Domains(namespace string) DomainNamespaceLister DomainListerExpansion }
DomainLister helps list Domains.
func NewDomainLister ¶
func NewDomainLister(indexer cache.Indexer) DomainLister
NewDomainLister returns a new DomainLister.
type DomainListerExpansion ¶
type DomainListerExpansion interface{}
DomainListerExpansion allows custom methods to be added to DomainLister.
type DomainNamespaceLister ¶ added in v0.0.2
type DomainNamespaceLister interface { // List lists all Domains in the indexer for a given namespace. List(selector labels.Selector) (ret []*v1alpha1.Domain, err error) // Get retrieves the Domain from the indexer for a given namespace and name. Get(name string) (*v1alpha1.Domain, error) DomainNamespaceListerExpansion }
DomainNamespaceLister helps list and get Domains.
type DomainNamespaceListerExpansion ¶ added in v0.0.2
type DomainNamespaceListerExpansion interface{}
DomainNamespaceListerExpansion allows custom methods to be added to DomainNamespaceLister.
type DomainRecordLister ¶
type DomainRecordLister interface { // List lists all DomainRecords in the indexer. List(selector labels.Selector) (ret []*v1alpha1.DomainRecord, err error) // DomainRecords returns an object that can list and get DomainRecords. DomainRecords(namespace string) DomainRecordNamespaceLister DomainRecordListerExpansion }
DomainRecordLister helps list DomainRecords.
func NewDomainRecordLister ¶
func NewDomainRecordLister(indexer cache.Indexer) DomainRecordLister
NewDomainRecordLister returns a new DomainRecordLister.
type DomainRecordListerExpansion ¶
type DomainRecordListerExpansion interface{}
DomainRecordListerExpansion allows custom methods to be added to DomainRecordLister.
type DomainRecordNamespaceLister ¶ added in v0.0.2
type DomainRecordNamespaceLister interface { // List lists all DomainRecords in the indexer for a given namespace. List(selector labels.Selector) (ret []*v1alpha1.DomainRecord, err error) // Get retrieves the DomainRecord from the indexer for a given namespace and name. Get(name string) (*v1alpha1.DomainRecord, error) DomainRecordNamespaceListerExpansion }
DomainRecordNamespaceLister helps list and get DomainRecords.
type DomainRecordNamespaceListerExpansion ¶ added in v0.0.2
type DomainRecordNamespaceListerExpansion interface{}
DomainRecordNamespaceListerExpansion allows custom methods to be added to DomainRecordNamespaceLister.
type FirewallLister ¶ added in v0.2.0
type FirewallLister interface { // List lists all Firewalls in the indexer. List(selector labels.Selector) (ret []*v1alpha1.Firewall, err error) // Firewalls returns an object that can list and get Firewalls. Firewalls(namespace string) FirewallNamespaceLister FirewallListerExpansion }
FirewallLister helps list Firewalls.
func NewFirewallLister ¶ added in v0.2.0
func NewFirewallLister(indexer cache.Indexer) FirewallLister
NewFirewallLister returns a new FirewallLister.
type FirewallListerExpansion ¶ added in v0.2.0
type FirewallListerExpansion interface{}
FirewallListerExpansion allows custom methods to be added to FirewallLister.
type FirewallNamespaceLister ¶ added in v0.2.0
type FirewallNamespaceLister interface { // List lists all Firewalls in the indexer for a given namespace. List(selector labels.Selector) (ret []*v1alpha1.Firewall, err error) // Get retrieves the Firewall from the indexer for a given namespace and name. Get(name string) (*v1alpha1.Firewall, error) FirewallNamespaceListerExpansion }
FirewallNamespaceLister helps list and get Firewalls.
type FirewallNamespaceListerExpansion ¶ added in v0.2.0
type FirewallNamespaceListerExpansion interface{}
FirewallNamespaceListerExpansion allows custom methods to be added to FirewallNamespaceLister.
type ImageLister ¶
type ImageLister interface { // List lists all Images in the indexer. 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.
func NewImageLister ¶
func NewImageLister(indexer cache.Indexer) ImageLister
NewImageLister returns a new ImageLister.
type ImageListerExpansion ¶
type ImageListerExpansion interface{}
ImageListerExpansion allows custom methods to be added to ImageLister.
type ImageNamespaceLister ¶ added in v0.0.2
type ImageNamespaceLister interface { // List lists all Images in the indexer for a given namespace. List(selector labels.Selector) (ret []*v1alpha1.Image, err error) // Get retrieves the Image from the indexer for a given namespace and name. Get(name string) (*v1alpha1.Image, error) ImageNamespaceListerExpansion }
ImageNamespaceLister helps list and get Images.
type ImageNamespaceListerExpansion ¶ added in v0.0.2
type ImageNamespaceListerExpansion interface{}
ImageNamespaceListerExpansion allows custom methods to be added to ImageNamespaceLister.
type InstanceLister ¶
type InstanceLister interface { // List lists all Instances in the indexer. List(selector labels.Selector) (ret []*v1alpha1.Instance, err error) // Instances returns an object that can list and get Instances. Instances(namespace string) InstanceNamespaceLister InstanceListerExpansion }
InstanceLister helps list Instances.
func NewInstanceLister ¶
func NewInstanceLister(indexer cache.Indexer) InstanceLister
NewInstanceLister returns a new InstanceLister.
type InstanceListerExpansion ¶
type InstanceListerExpansion interface{}
InstanceListerExpansion allows custom methods to be added to InstanceLister.
type InstanceNamespaceLister ¶ added in v0.0.2
type InstanceNamespaceLister interface { // List lists all Instances in the indexer for a given namespace. List(selector labels.Selector) (ret []*v1alpha1.Instance, err error) // Get retrieves the Instance from the indexer for a given namespace and name. Get(name string) (*v1alpha1.Instance, error) InstanceNamespaceListerExpansion }
InstanceNamespaceLister helps list and get Instances.
type InstanceNamespaceListerExpansion ¶ added in v0.0.2
type InstanceNamespaceListerExpansion interface{}
InstanceNamespaceListerExpansion allows custom methods to be added to InstanceNamespaceLister.
type LkeClusterLister ¶ added in v0.2.0
type LkeClusterLister interface { // List lists all LkeClusters in the indexer. List(selector labels.Selector) (ret []*v1alpha1.LkeCluster, err error) // LkeClusters returns an object that can list and get LkeClusters. LkeClusters(namespace string) LkeClusterNamespaceLister LkeClusterListerExpansion }
LkeClusterLister helps list LkeClusters.
func NewLkeClusterLister ¶ added in v0.2.0
func NewLkeClusterLister(indexer cache.Indexer) LkeClusterLister
NewLkeClusterLister returns a new LkeClusterLister.
type LkeClusterListerExpansion ¶ added in v0.2.0
type LkeClusterListerExpansion interface{}
LkeClusterListerExpansion allows custom methods to be added to LkeClusterLister.
type LkeClusterNamespaceLister ¶ added in v0.2.0
type LkeClusterNamespaceLister interface { // List lists all LkeClusters in the indexer for a given namespace. List(selector labels.Selector) (ret []*v1alpha1.LkeCluster, err error) // Get retrieves the LkeCluster from the indexer for a given namespace and name. Get(name string) (*v1alpha1.LkeCluster, error) LkeClusterNamespaceListerExpansion }
LkeClusterNamespaceLister helps list and get LkeClusters.
type LkeClusterNamespaceListerExpansion ¶ added in v0.2.0
type LkeClusterNamespaceListerExpansion interface{}
LkeClusterNamespaceListerExpansion allows custom methods to be added to LkeClusterNamespaceLister.
type NodebalancerConfigLister ¶
type NodebalancerConfigLister interface { // List lists all NodebalancerConfigs in the indexer. List(selector labels.Selector) (ret []*v1alpha1.NodebalancerConfig, err error) // NodebalancerConfigs returns an object that can list and get NodebalancerConfigs. NodebalancerConfigs(namespace string) NodebalancerConfigNamespaceLister NodebalancerConfigListerExpansion }
NodebalancerConfigLister helps list NodebalancerConfigs.
func NewNodebalancerConfigLister ¶
func NewNodebalancerConfigLister(indexer cache.Indexer) NodebalancerConfigLister
NewNodebalancerConfigLister returns a new NodebalancerConfigLister.
type NodebalancerConfigListerExpansion ¶
type NodebalancerConfigListerExpansion interface{}
NodebalancerConfigListerExpansion allows custom methods to be added to NodebalancerConfigLister.
type NodebalancerConfigNamespaceLister ¶ added in v0.0.2
type NodebalancerConfigNamespaceLister interface { // List lists all NodebalancerConfigs in the indexer for a given namespace. List(selector labels.Selector) (ret []*v1alpha1.NodebalancerConfig, err error) // Get retrieves the NodebalancerConfig from the indexer for a given namespace and name. Get(name string) (*v1alpha1.NodebalancerConfig, error) NodebalancerConfigNamespaceListerExpansion }
NodebalancerConfigNamespaceLister helps list and get NodebalancerConfigs.
type NodebalancerConfigNamespaceListerExpansion ¶ added in v0.0.2
type NodebalancerConfigNamespaceListerExpansion interface{}
NodebalancerConfigNamespaceListerExpansion allows custom methods to be added to NodebalancerConfigNamespaceLister.
type NodebalancerLister ¶
type NodebalancerLister interface { // List lists all Nodebalancers in the indexer. List(selector labels.Selector) (ret []*v1alpha1.Nodebalancer, err error) // Nodebalancers returns an object that can list and get Nodebalancers. Nodebalancers(namespace string) NodebalancerNamespaceLister NodebalancerListerExpansion }
NodebalancerLister helps list Nodebalancers.
func NewNodebalancerLister ¶
func NewNodebalancerLister(indexer cache.Indexer) NodebalancerLister
NewNodebalancerLister returns a new NodebalancerLister.
type NodebalancerListerExpansion ¶
type NodebalancerListerExpansion interface{}
NodebalancerListerExpansion allows custom methods to be added to NodebalancerLister.
type NodebalancerNamespaceLister ¶ added in v0.0.2
type NodebalancerNamespaceLister interface { // List lists all Nodebalancers in the indexer for a given namespace. List(selector labels.Selector) (ret []*v1alpha1.Nodebalancer, err error) // Get retrieves the Nodebalancer from the indexer for a given namespace and name. Get(name string) (*v1alpha1.Nodebalancer, error) NodebalancerNamespaceListerExpansion }
NodebalancerNamespaceLister helps list and get Nodebalancers.
type NodebalancerNamespaceListerExpansion ¶ added in v0.0.2
type NodebalancerNamespaceListerExpansion interface{}
NodebalancerNamespaceListerExpansion allows custom methods to be added to NodebalancerNamespaceLister.
type NodebalancerNodeLister ¶
type NodebalancerNodeLister interface { // List lists all NodebalancerNodes in the indexer. List(selector labels.Selector) (ret []*v1alpha1.NodebalancerNode, err error) // NodebalancerNodes returns an object that can list and get NodebalancerNodes. NodebalancerNodes(namespace string) NodebalancerNodeNamespaceLister NodebalancerNodeListerExpansion }
NodebalancerNodeLister helps list NodebalancerNodes.
func NewNodebalancerNodeLister ¶
func NewNodebalancerNodeLister(indexer cache.Indexer) NodebalancerNodeLister
NewNodebalancerNodeLister returns a new NodebalancerNodeLister.
type NodebalancerNodeListerExpansion ¶
type NodebalancerNodeListerExpansion interface{}
NodebalancerNodeListerExpansion allows custom methods to be added to NodebalancerNodeLister.
type NodebalancerNodeNamespaceLister ¶ added in v0.0.2
type NodebalancerNodeNamespaceLister interface { // List lists all NodebalancerNodes in the indexer for a given namespace. List(selector labels.Selector) (ret []*v1alpha1.NodebalancerNode, err error) // Get retrieves the NodebalancerNode from the indexer for a given namespace and name. Get(name string) (*v1alpha1.NodebalancerNode, error) NodebalancerNodeNamespaceListerExpansion }
NodebalancerNodeNamespaceLister helps list and get NodebalancerNodes.
type NodebalancerNodeNamespaceListerExpansion ¶ added in v0.0.2
type NodebalancerNodeNamespaceListerExpansion interface{}
NodebalancerNodeNamespaceListerExpansion allows custom methods to be added to NodebalancerNodeNamespaceLister.
type ObjectStorageBucketLister ¶ added in v0.2.0
type ObjectStorageBucketLister interface { // List lists all ObjectStorageBuckets in the indexer. List(selector labels.Selector) (ret []*v1alpha1.ObjectStorageBucket, err error) // ObjectStorageBuckets returns an object that can list and get ObjectStorageBuckets. ObjectStorageBuckets(namespace string) ObjectStorageBucketNamespaceLister ObjectStorageBucketListerExpansion }
ObjectStorageBucketLister helps list ObjectStorageBuckets.
func NewObjectStorageBucketLister ¶ added in v0.2.0
func NewObjectStorageBucketLister(indexer cache.Indexer) ObjectStorageBucketLister
NewObjectStorageBucketLister returns a new ObjectStorageBucketLister.
type ObjectStorageBucketListerExpansion ¶ added in v0.2.0
type ObjectStorageBucketListerExpansion interface{}
ObjectStorageBucketListerExpansion allows custom methods to be added to ObjectStorageBucketLister.
type ObjectStorageBucketNamespaceLister ¶ added in v0.2.0
type ObjectStorageBucketNamespaceLister interface { // List lists all ObjectStorageBuckets in the indexer for a given namespace. List(selector labels.Selector) (ret []*v1alpha1.ObjectStorageBucket, err error) // Get retrieves the ObjectStorageBucket from the indexer for a given namespace and name. Get(name string) (*v1alpha1.ObjectStorageBucket, error) ObjectStorageBucketNamespaceListerExpansion }
ObjectStorageBucketNamespaceLister helps list and get ObjectStorageBuckets.
type ObjectStorageBucketNamespaceListerExpansion ¶ added in v0.2.0
type ObjectStorageBucketNamespaceListerExpansion interface{}
ObjectStorageBucketNamespaceListerExpansion allows custom methods to be added to ObjectStorageBucketNamespaceLister.
type ObjectStorageKeyLister ¶ added in v0.2.0
type ObjectStorageKeyLister interface { // List lists all ObjectStorageKeys in the indexer. List(selector labels.Selector) (ret []*v1alpha1.ObjectStorageKey, err error) // ObjectStorageKeys returns an object that can list and get ObjectStorageKeys. ObjectStorageKeys(namespace string) ObjectStorageKeyNamespaceLister ObjectStorageKeyListerExpansion }
ObjectStorageKeyLister helps list ObjectStorageKeys.
func NewObjectStorageKeyLister ¶ added in v0.2.0
func NewObjectStorageKeyLister(indexer cache.Indexer) ObjectStorageKeyLister
NewObjectStorageKeyLister returns a new ObjectStorageKeyLister.
type ObjectStorageKeyListerExpansion ¶ added in v0.2.0
type ObjectStorageKeyListerExpansion interface{}
ObjectStorageKeyListerExpansion allows custom methods to be added to ObjectStorageKeyLister.
type ObjectStorageKeyNamespaceLister ¶ added in v0.2.0
type ObjectStorageKeyNamespaceLister interface { // List lists all ObjectStorageKeys in the indexer for a given namespace. List(selector labels.Selector) (ret []*v1alpha1.ObjectStorageKey, err error) // Get retrieves the ObjectStorageKey from the indexer for a given namespace and name. Get(name string) (*v1alpha1.ObjectStorageKey, error) ObjectStorageKeyNamespaceListerExpansion }
ObjectStorageKeyNamespaceLister helps list and get ObjectStorageKeys.
type ObjectStorageKeyNamespaceListerExpansion ¶ added in v0.2.0
type ObjectStorageKeyNamespaceListerExpansion interface{}
ObjectStorageKeyNamespaceListerExpansion allows custom methods to be added to ObjectStorageKeyNamespaceLister.
type RdnsLister ¶
type RdnsLister interface { // List lists all Rdnses in the indexer. List(selector labels.Selector) (ret []*v1alpha1.Rdns, err error) // Rdnses returns an object that can list and get Rdnses. Rdnses(namespace string) RdnsNamespaceLister RdnsListerExpansion }
RdnsLister helps list Rdnses.
func NewRdnsLister ¶
func NewRdnsLister(indexer cache.Indexer) RdnsLister
NewRdnsLister returns a new RdnsLister.
type RdnsListerExpansion ¶
type RdnsListerExpansion interface{}
RdnsListerExpansion allows custom methods to be added to RdnsLister.
type RdnsNamespaceLister ¶ added in v0.0.2
type RdnsNamespaceLister interface { // List lists all Rdnses in the indexer for a given namespace. List(selector labels.Selector) (ret []*v1alpha1.Rdns, err error) // Get retrieves the Rdns from the indexer for a given namespace and name. Get(name string) (*v1alpha1.Rdns, error) RdnsNamespaceListerExpansion }
RdnsNamespaceLister helps list and get Rdnses.
type RdnsNamespaceListerExpansion ¶ added in v0.0.2
type RdnsNamespaceListerExpansion interface{}
RdnsNamespaceListerExpansion allows custom methods to be added to RdnsNamespaceLister.
type SshkeyLister ¶
type SshkeyLister interface { // List lists all Sshkeys in the indexer. List(selector labels.Selector) (ret []*v1alpha1.Sshkey, err error) // Sshkeys returns an object that can list and get Sshkeys. Sshkeys(namespace string) SshkeyNamespaceLister SshkeyListerExpansion }
SshkeyLister helps list Sshkeys.
func NewSshkeyLister ¶
func NewSshkeyLister(indexer cache.Indexer) SshkeyLister
NewSshkeyLister returns a new SshkeyLister.
type SshkeyListerExpansion ¶
type SshkeyListerExpansion interface{}
SshkeyListerExpansion allows custom methods to be added to SshkeyLister.
type SshkeyNamespaceLister ¶ added in v0.0.2
type SshkeyNamespaceLister interface { // List lists all Sshkeys in the indexer for a given namespace. List(selector labels.Selector) (ret []*v1alpha1.Sshkey, err error) // Get retrieves the Sshkey from the indexer for a given namespace and name. Get(name string) (*v1alpha1.Sshkey, error) SshkeyNamespaceListerExpansion }
SshkeyNamespaceLister helps list and get Sshkeys.
type SshkeyNamespaceListerExpansion ¶ added in v0.0.2
type SshkeyNamespaceListerExpansion interface{}
SshkeyNamespaceListerExpansion allows custom methods to be added to SshkeyNamespaceLister.
type StackscriptLister ¶
type StackscriptLister interface { // List lists all Stackscripts in the indexer. List(selector labels.Selector) (ret []*v1alpha1.Stackscript, err error) // Stackscripts returns an object that can list and get Stackscripts. Stackscripts(namespace string) StackscriptNamespaceLister StackscriptListerExpansion }
StackscriptLister helps list Stackscripts.
func NewStackscriptLister ¶
func NewStackscriptLister(indexer cache.Indexer) StackscriptLister
NewStackscriptLister returns a new StackscriptLister.
type StackscriptListerExpansion ¶
type StackscriptListerExpansion interface{}
StackscriptListerExpansion allows custom methods to be added to StackscriptLister.
type StackscriptNamespaceLister ¶ added in v0.0.2
type StackscriptNamespaceLister interface { // List lists all Stackscripts in the indexer for a given namespace. List(selector labels.Selector) (ret []*v1alpha1.Stackscript, err error) // Get retrieves the Stackscript from the indexer for a given namespace and name. Get(name string) (*v1alpha1.Stackscript, error) StackscriptNamespaceListerExpansion }
StackscriptNamespaceLister helps list and get Stackscripts.
type StackscriptNamespaceListerExpansion ¶ added in v0.0.2
type StackscriptNamespaceListerExpansion interface{}
StackscriptNamespaceListerExpansion allows custom methods to be added to StackscriptNamespaceLister.
type TokenLister ¶
type TokenLister interface { // List lists all Tokens in the indexer. List(selector labels.Selector) (ret []*v1alpha1.Token, err error) // Tokens returns an object that can list and get Tokens. Tokens(namespace string) TokenNamespaceLister TokenListerExpansion }
TokenLister helps list Tokens.
func NewTokenLister ¶
func NewTokenLister(indexer cache.Indexer) TokenLister
NewTokenLister returns a new TokenLister.
type TokenListerExpansion ¶
type TokenListerExpansion interface{}
TokenListerExpansion allows custom methods to be added to TokenLister.
type TokenNamespaceLister ¶ added in v0.0.2
type TokenNamespaceLister interface { // List lists all Tokens in the indexer for a given namespace. List(selector labels.Selector) (ret []*v1alpha1.Token, err error) // Get retrieves the Token from the indexer for a given namespace and name. Get(name string) (*v1alpha1.Token, error) TokenNamespaceListerExpansion }
TokenNamespaceLister helps list and get Tokens.
type TokenNamespaceListerExpansion ¶ added in v0.0.2
type TokenNamespaceListerExpansion interface{}
TokenNamespaceListerExpansion allows custom methods to be added to TokenNamespaceLister.
type VolumeLister ¶
type VolumeLister interface { // List lists all Volumes in the indexer. List(selector labels.Selector) (ret []*v1alpha1.Volume, err error) // Volumes returns an object that can list and get Volumes. Volumes(namespace string) VolumeNamespaceLister VolumeListerExpansion }
VolumeLister helps list Volumes.
func NewVolumeLister ¶
func NewVolumeLister(indexer cache.Indexer) VolumeLister
NewVolumeLister returns a new VolumeLister.
type VolumeListerExpansion ¶
type VolumeListerExpansion interface{}
VolumeListerExpansion allows custom methods to be added to VolumeLister.
type VolumeNamespaceLister ¶ added in v0.0.2
type VolumeNamespaceLister interface { // List lists all Volumes in the indexer for a given namespace. List(selector labels.Selector) (ret []*v1alpha1.Volume, err error) // Get retrieves the Volume from the indexer for a given namespace and name. Get(name string) (*v1alpha1.Volume, error) VolumeNamespaceListerExpansion }
VolumeNamespaceLister helps list and get Volumes.
type VolumeNamespaceListerExpansion ¶ added in v0.0.2
type VolumeNamespaceListerExpansion interface{}
VolumeNamespaceListerExpansion allows custom methods to be added to VolumeNamespaceLister.