Documentation ¶
Index ¶
- type MeshLister
- type MeshListerExpansion
- type VirtualNodeLister
- type VirtualNodeListerExpansion
- type VirtualNodeNamespaceLister
- type VirtualNodeNamespaceListerExpansion
- type VirtualServiceLister
- type VirtualServiceListerExpansion
- type VirtualServiceNamespaceLister
- type VirtualServiceNamespaceListerExpansion
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type MeshLister ¶
type MeshLister interface { // List lists all Meshes in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1beta1.Mesh, err error) // Get retrieves the Mesh from the index for a given name. // Objects returned here must be treated as read-only. Get(name string) (*v1beta1.Mesh, error) MeshListerExpansion }
MeshLister helps list Meshes. All objects returned here must be treated as read-only.
func NewMeshLister ¶
func NewMeshLister(indexer cache.Indexer) MeshLister
NewMeshLister returns a new MeshLister.
type MeshListerExpansion ¶
type MeshListerExpansion interface{}
MeshListerExpansion allows custom methods to be added to MeshLister.
type VirtualNodeLister ¶
type VirtualNodeLister interface { // List lists all VirtualNodes in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1beta1.VirtualNode, err error) // VirtualNodes returns an object that can list and get VirtualNodes. VirtualNodes(namespace string) VirtualNodeNamespaceLister VirtualNodeListerExpansion }
VirtualNodeLister helps list VirtualNodes. All objects returned here must be treated as read-only.
func NewVirtualNodeLister ¶
func NewVirtualNodeLister(indexer cache.Indexer) VirtualNodeLister
NewVirtualNodeLister returns a new VirtualNodeLister.
type VirtualNodeListerExpansion ¶
type VirtualNodeListerExpansion interface{}
VirtualNodeListerExpansion allows custom methods to be added to VirtualNodeLister.
type VirtualNodeNamespaceLister ¶
type VirtualNodeNamespaceLister interface { // List lists all VirtualNodes in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1beta1.VirtualNode, err error) // Get retrieves the VirtualNode from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1beta1.VirtualNode, error) VirtualNodeNamespaceListerExpansion }
VirtualNodeNamespaceLister helps list and get VirtualNodes. All objects returned here must be treated as read-only.
type VirtualNodeNamespaceListerExpansion ¶
type VirtualNodeNamespaceListerExpansion interface{}
VirtualNodeNamespaceListerExpansion allows custom methods to be added to VirtualNodeNamespaceLister.
type VirtualServiceLister ¶
type VirtualServiceLister interface { // List lists all VirtualServices in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1beta1.VirtualService, err error) // VirtualServices returns an object that can list and get VirtualServices. VirtualServices(namespace string) VirtualServiceNamespaceLister VirtualServiceListerExpansion }
VirtualServiceLister helps list VirtualServices. All objects returned here must be treated as read-only.
func NewVirtualServiceLister ¶
func NewVirtualServiceLister(indexer cache.Indexer) VirtualServiceLister
NewVirtualServiceLister returns a new VirtualServiceLister.
type VirtualServiceListerExpansion ¶
type VirtualServiceListerExpansion interface{}
VirtualServiceListerExpansion allows custom methods to be added to VirtualServiceLister.
type VirtualServiceNamespaceLister ¶
type VirtualServiceNamespaceLister interface { // List lists all VirtualServices in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1beta1.VirtualService, err error) // Get retrieves the VirtualService from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1beta1.VirtualService, error) VirtualServiceNamespaceListerExpansion }
VirtualServiceNamespaceLister helps list and get VirtualServices. All objects returned here must be treated as read-only.
type VirtualServiceNamespaceListerExpansion ¶
type VirtualServiceNamespaceListerExpansion interface{}
VirtualServiceNamespaceListerExpansion allows custom methods to be added to VirtualServiceNamespaceLister.