v1

package
v1.16.13 Latest Latest
Warning

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

Go to latest
Published: May 9, 2024 License: Apache-2.0 Imports: 4 Imported by: 1

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type GatewayLister

type GatewayLister interface {
	// List lists all Gateways in the indexer.
	// Objects returned here must be treated as read-only.
	List(selector labels.Selector) (ret []*v1.Gateway, err error)
	// Gateways returns an object that can list and get Gateways.
	Gateways(namespace string) GatewayNamespaceLister
	GatewayListerExpansion
}

GatewayLister helps list Gateways. All objects returned here must be treated as read-only.

func NewGatewayLister

func NewGatewayLister(indexer cache.Indexer) GatewayLister

NewGatewayLister returns a new GatewayLister.

type GatewayListerExpansion

type GatewayListerExpansion interface{}

GatewayListerExpansion allows custom methods to be added to GatewayLister.

type GatewayNamespaceLister

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

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

type GatewayNamespaceListerExpansion

type GatewayNamespaceListerExpansion interface{}

GatewayNamespaceListerExpansion allows custom methods to be added to GatewayNamespaceLister.

type MatchableHttpGatewayLister added in v1.9.25

type MatchableHttpGatewayLister interface {
	// List lists all MatchableHttpGateways in the indexer.
	// Objects returned here must be treated as read-only.
	List(selector labels.Selector) (ret []*v1.MatchableHttpGateway, err error)
	// MatchableHttpGateways returns an object that can list and get MatchableHttpGateways.
	MatchableHttpGateways(namespace string) MatchableHttpGatewayNamespaceLister
	MatchableHttpGatewayListerExpansion
}

MatchableHttpGatewayLister helps list MatchableHttpGateways. All objects returned here must be treated as read-only.

func NewMatchableHttpGatewayLister added in v1.9.25

func NewMatchableHttpGatewayLister(indexer cache.Indexer) MatchableHttpGatewayLister

NewMatchableHttpGatewayLister returns a new MatchableHttpGatewayLister.

type MatchableHttpGatewayListerExpansion added in v1.9.25

type MatchableHttpGatewayListerExpansion interface{}

MatchableHttpGatewayListerExpansion allows custom methods to be added to MatchableHttpGatewayLister.

type MatchableHttpGatewayNamespaceLister added in v1.9.25

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

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

type MatchableHttpGatewayNamespaceListerExpansion added in v1.9.25

type MatchableHttpGatewayNamespaceListerExpansion interface{}

MatchableHttpGatewayNamespaceListerExpansion allows custom methods to be added to MatchableHttpGatewayNamespaceLister.

type MatchableTcpGatewayLister added in v1.14.4

type MatchableTcpGatewayLister interface {
	// List lists all MatchableTcpGateways in the indexer.
	// Objects returned here must be treated as read-only.
	List(selector labels.Selector) (ret []*v1.MatchableTcpGateway, err error)
	// MatchableTcpGateways returns an object that can list and get MatchableTcpGateways.
	MatchableTcpGateways(namespace string) MatchableTcpGatewayNamespaceLister
	MatchableTcpGatewayListerExpansion
}

MatchableTcpGatewayLister helps list MatchableTcpGateways. All objects returned here must be treated as read-only.

func NewMatchableTcpGatewayLister added in v1.14.4

func NewMatchableTcpGatewayLister(indexer cache.Indexer) MatchableTcpGatewayLister

NewMatchableTcpGatewayLister returns a new MatchableTcpGatewayLister.

type MatchableTcpGatewayListerExpansion added in v1.14.4

type MatchableTcpGatewayListerExpansion interface{}

MatchableTcpGatewayListerExpansion allows custom methods to be added to MatchableTcpGatewayLister.

type MatchableTcpGatewayNamespaceLister added in v1.14.4

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

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

type MatchableTcpGatewayNamespaceListerExpansion added in v1.14.4

type MatchableTcpGatewayNamespaceListerExpansion interface{}

MatchableTcpGatewayNamespaceListerExpansion allows custom methods to be added to MatchableTcpGatewayNamespaceLister.

type RouteOptionLister added in v1.8.0

type RouteOptionLister interface {
	// List lists all RouteOptions in the indexer.
	// Objects returned here must be treated as read-only.
	List(selector labels.Selector) (ret []*v1.RouteOption, err error)
	// RouteOptions returns an object that can list and get RouteOptions.
	RouteOptions(namespace string) RouteOptionNamespaceLister
	RouteOptionListerExpansion
}

RouteOptionLister helps list RouteOptions. All objects returned here must be treated as read-only.

func NewRouteOptionLister added in v1.8.0

func NewRouteOptionLister(indexer cache.Indexer) RouteOptionLister

NewRouteOptionLister returns a new RouteOptionLister.

type RouteOptionListerExpansion added in v1.8.0

type RouteOptionListerExpansion interface{}

RouteOptionListerExpansion allows custom methods to be added to RouteOptionLister.

type RouteOptionNamespaceLister added in v1.8.0

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

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

type RouteOptionNamespaceListerExpansion added in v1.8.0

type RouteOptionNamespaceListerExpansion interface{}

RouteOptionNamespaceListerExpansion allows custom methods to be added to RouteOptionNamespaceLister.

type RouteTableLister

type RouteTableLister interface {
	// List lists all RouteTables in the indexer.
	// Objects returned here must be treated as read-only.
	List(selector labels.Selector) (ret []*v1.RouteTable, err error)
	// RouteTables returns an object that can list and get RouteTables.
	RouteTables(namespace string) RouteTableNamespaceLister
	RouteTableListerExpansion
}

RouteTableLister helps list RouteTables. All objects returned here must be treated as read-only.

func NewRouteTableLister

func NewRouteTableLister(indexer cache.Indexer) RouteTableLister

NewRouteTableLister returns a new RouteTableLister.

type RouteTableListerExpansion

type RouteTableListerExpansion interface{}

RouteTableListerExpansion allows custom methods to be added to RouteTableLister.

type RouteTableNamespaceLister

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

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

type RouteTableNamespaceListerExpansion

type RouteTableNamespaceListerExpansion interface{}

RouteTableNamespaceListerExpansion allows custom methods to be added to RouteTableNamespaceLister.

type VirtualHostOptionLister added in v1.8.0

type VirtualHostOptionLister interface {
	// List lists all VirtualHostOptions in the indexer.
	// Objects returned here must be treated as read-only.
	List(selector labels.Selector) (ret []*v1.VirtualHostOption, err error)
	// VirtualHostOptions returns an object that can list and get VirtualHostOptions.
	VirtualHostOptions(namespace string) VirtualHostOptionNamespaceLister
	VirtualHostOptionListerExpansion
}

VirtualHostOptionLister helps list VirtualHostOptions. All objects returned here must be treated as read-only.

func NewVirtualHostOptionLister added in v1.8.0

func NewVirtualHostOptionLister(indexer cache.Indexer) VirtualHostOptionLister

NewVirtualHostOptionLister returns a new VirtualHostOptionLister.

type VirtualHostOptionListerExpansion added in v1.8.0

type VirtualHostOptionListerExpansion interface{}

VirtualHostOptionListerExpansion allows custom methods to be added to VirtualHostOptionLister.

type VirtualHostOptionNamespaceLister added in v1.8.0

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

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

type VirtualHostOptionNamespaceListerExpansion added in v1.8.0

type VirtualHostOptionNamespaceListerExpansion interface{}

VirtualHostOptionNamespaceListerExpansion allows custom methods to be added to VirtualHostOptionNamespaceLister.

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 []*v1.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 []*v1.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) (*v1.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.

Jump to

Keyboard shortcuts

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