Documentation ¶
Index ¶
- type AgentLister
- type AgentListerExpansion
- type AgentNamespaceLister
- type AgentNamespaceListerExpansion
- type CxAgentLister
- type CxAgentListerExpansion
- type CxAgentNamespaceLister
- type CxAgentNamespaceListerExpansion
- type EntityTypeLister
- type EntityTypeListerExpansion
- type EntityTypeNamespaceLister
- type EntityTypeNamespaceListerExpansion
- type FulfillmentLister
- type FulfillmentListerExpansion
- type FulfillmentNamespaceLister
- type FulfillmentNamespaceListerExpansion
- type IntentLister
- type IntentListerExpansion
- type IntentNamespaceLister
- type IntentNamespaceListerExpansion
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type AgentLister ¶
type AgentLister interface { // List lists all Agents in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Agent, err error) // Agents returns an object that can list and get Agents. Agents(namespace string) AgentNamespaceLister AgentListerExpansion }
AgentLister helps list Agents. All objects returned here must be treated as read-only.
func NewAgentLister ¶
func NewAgentLister(indexer cache.Indexer) AgentLister
NewAgentLister returns a new AgentLister.
type AgentListerExpansion ¶
type AgentListerExpansion interface{}
AgentListerExpansion allows custom methods to be added to AgentLister.
type AgentNamespaceLister ¶
type AgentNamespaceLister interface { // List lists all Agents in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Agent, err error) // Get retrieves the Agent from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.Agent, error) AgentNamespaceListerExpansion }
AgentNamespaceLister helps list and get Agents. All objects returned here must be treated as read-only.
type AgentNamespaceListerExpansion ¶
type AgentNamespaceListerExpansion interface{}
AgentNamespaceListerExpansion allows custom methods to be added to AgentNamespaceLister.
type CxAgentLister ¶
type CxAgentLister interface { // List lists all CxAgents in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.CxAgent, err error) // CxAgents returns an object that can list and get CxAgents. CxAgents(namespace string) CxAgentNamespaceLister CxAgentListerExpansion }
CxAgentLister helps list CxAgents. All objects returned here must be treated as read-only.
func NewCxAgentLister ¶
func NewCxAgentLister(indexer cache.Indexer) CxAgentLister
NewCxAgentLister returns a new CxAgentLister.
type CxAgentListerExpansion ¶
type CxAgentListerExpansion interface{}
CxAgentListerExpansion allows custom methods to be added to CxAgentLister.
type CxAgentNamespaceLister ¶
type CxAgentNamespaceLister interface { // List lists all CxAgents in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.CxAgent, err error) // Get retrieves the CxAgent from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.CxAgent, error) CxAgentNamespaceListerExpansion }
CxAgentNamespaceLister helps list and get CxAgents. All objects returned here must be treated as read-only.
type CxAgentNamespaceListerExpansion ¶
type CxAgentNamespaceListerExpansion interface{}
CxAgentNamespaceListerExpansion allows custom methods to be added to CxAgentNamespaceLister.
type EntityTypeLister ¶
type EntityTypeLister interface { // List lists all EntityTypes in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.EntityType, err error) // EntityTypes returns an object that can list and get EntityTypes. EntityTypes(namespace string) EntityTypeNamespaceLister EntityTypeListerExpansion }
EntityTypeLister helps list EntityTypes. All objects returned here must be treated as read-only.
func NewEntityTypeLister ¶
func NewEntityTypeLister(indexer cache.Indexer) EntityTypeLister
NewEntityTypeLister returns a new EntityTypeLister.
type EntityTypeListerExpansion ¶
type EntityTypeListerExpansion interface{}
EntityTypeListerExpansion allows custom methods to be added to EntityTypeLister.
type EntityTypeNamespaceLister ¶
type EntityTypeNamespaceLister interface { // List lists all EntityTypes in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.EntityType, err error) // Get retrieves the EntityType from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.EntityType, error) EntityTypeNamespaceListerExpansion }
EntityTypeNamespaceLister helps list and get EntityTypes. All objects returned here must be treated as read-only.
type EntityTypeNamespaceListerExpansion ¶
type EntityTypeNamespaceListerExpansion interface{}
EntityTypeNamespaceListerExpansion allows custom methods to be added to EntityTypeNamespaceLister.
type FulfillmentLister ¶
type FulfillmentLister interface { // List lists all Fulfillments in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Fulfillment, err error) // Fulfillments returns an object that can list and get Fulfillments. Fulfillments(namespace string) FulfillmentNamespaceLister FulfillmentListerExpansion }
FulfillmentLister helps list Fulfillments. All objects returned here must be treated as read-only.
func NewFulfillmentLister ¶
func NewFulfillmentLister(indexer cache.Indexer) FulfillmentLister
NewFulfillmentLister returns a new FulfillmentLister.
type FulfillmentListerExpansion ¶
type FulfillmentListerExpansion interface{}
FulfillmentListerExpansion allows custom methods to be added to FulfillmentLister.
type FulfillmentNamespaceLister ¶
type FulfillmentNamespaceLister interface { // List lists all Fulfillments in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Fulfillment, err error) // Get retrieves the Fulfillment from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.Fulfillment, error) FulfillmentNamespaceListerExpansion }
FulfillmentNamespaceLister helps list and get Fulfillments. All objects returned here must be treated as read-only.
type FulfillmentNamespaceListerExpansion ¶
type FulfillmentNamespaceListerExpansion interface{}
FulfillmentNamespaceListerExpansion allows custom methods to be added to FulfillmentNamespaceLister.
type IntentLister ¶
type IntentLister interface { // List lists all Intents in the indexer. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Intent, err error) // Intents returns an object that can list and get Intents. Intents(namespace string) IntentNamespaceLister IntentListerExpansion }
IntentLister helps list Intents. All objects returned here must be treated as read-only.
func NewIntentLister ¶
func NewIntentLister(indexer cache.Indexer) IntentLister
NewIntentLister returns a new IntentLister.
type IntentListerExpansion ¶
type IntentListerExpansion interface{}
IntentListerExpansion allows custom methods to be added to IntentLister.
type IntentNamespaceLister ¶
type IntentNamespaceLister interface { // List lists all Intents in the indexer for a given namespace. // Objects returned here must be treated as read-only. List(selector labels.Selector) (ret []*v1alpha1.Intent, err error) // Get retrieves the Intent from the indexer for a given namespace and name. // Objects returned here must be treated as read-only. Get(name string) (*v1alpha1.Intent, error) IntentNamespaceListerExpansion }
IntentNamespaceLister helps list and get Intents. All objects returned here must be treated as read-only.
type IntentNamespaceListerExpansion ¶
type IntentNamespaceListerExpansion interface{}
IntentNamespaceListerExpansion allows custom methods to be added to IntentNamespaceLister.