Documentation ¶
Index ¶
- type IPPoolCache
- func (c IPPoolCache) AddIndexer(indexName string, indexer ctlnetworkv1.IPPoolIndexer)
- func (c IPPoolCache) Get(namespace, name string) (*networkv1.IPPool, error)
- func (c IPPoolCache) GetByIndex(indexName, key string) ([]*networkv1.IPPool, error)
- func (c IPPoolCache) List(namespace string, selector labels.Selector) ([]*networkv1.IPPool, error)
- type IPPoolClient
- func (c IPPoolClient) Create(*networkv1.IPPool) (*networkv1.IPPool, error)
- func (c IPPoolClient) Delete(namespace, name string, options *metav1.DeleteOptions) error
- func (c IPPoolClient) Get(namespace, name string, options metav1.GetOptions) (*networkv1.IPPool, error)
- func (c IPPoolClient) List(namespace string, opts metav1.ListOptions) (*networkv1.IPPoolList, error)
- func (c IPPoolClient) Patch(namespace, name string, pt types.PatchType, data []byte, ...) (result *networkv1.IPPool, err error)
- func (c IPPoolClient) Update(ipPool *networkv1.IPPool) (*networkv1.IPPool, error)
- func (c IPPoolClient) UpdateStatus(ipPool *networkv1.IPPool) (*networkv1.IPPool, error)
- func (c IPPoolClient) Watch(namespace string, opts metav1.ListOptions) (watch.Interface, error)
- type NetworkAttachmentDefinitionCache
- func (c NetworkAttachmentDefinitionCache) AddIndexer(indexName string, indexer ctlcniv1.NetworkAttachmentDefinitionIndexer)
- func (c NetworkAttachmentDefinitionCache) Get(namespace, name string) (*cniv1.NetworkAttachmentDefinition, error)
- func (c NetworkAttachmentDefinitionCache) GetByIndex(indexName, key string) ([]*cniv1.NetworkAttachmentDefinition, error)
- func (c NetworkAttachmentDefinitionCache) List(namespace string, selector labels.Selector) ([]*cniv1.NetworkAttachmentDefinition, error)
- type NetworkAttachmentDefinitionClient
- func (c NetworkAttachmentDefinitionClient) Create(nad *cniv1.NetworkAttachmentDefinition) (*cniv1.NetworkAttachmentDefinition, error)
- func (c NetworkAttachmentDefinitionClient) Delete(namespace, name string, options *metav1.DeleteOptions) error
- func (c NetworkAttachmentDefinitionClient) Get(namespace, name string, options metav1.GetOptions) (*cniv1.NetworkAttachmentDefinition, error)
- func (c NetworkAttachmentDefinitionClient) List(namespace string, opts metav1.ListOptions) (*cniv1.NetworkAttachmentDefinitionList, error)
- func (c NetworkAttachmentDefinitionClient) Patch(namespace, name string, pt types.PatchType, data []byte, ...) (result *cniv1.NetworkAttachmentDefinition, err error)
- func (c NetworkAttachmentDefinitionClient) Update(nad *cniv1.NetworkAttachmentDefinition) (*cniv1.NetworkAttachmentDefinition, error)
- func (c NetworkAttachmentDefinitionClient) Watch(namespace string, opts metav1.ListOptions) (watch.Interface, error)
- type PodCache
- func (c PodCache) AddIndexer(indexName string, indexer ctlcorev1.PodIndexer)
- func (c PodCache) Get(namespace, name string) (*corev1.Pod, error)
- func (c PodCache) GetByIndex(indexName, key string) ([]*corev1.Pod, error)
- func (c PodCache) List(namespace string, selector labels.Selector) ([]*corev1.Pod, error)
- type PodClient
- func (c PodClient) Create(pod *corev1.Pod) (*corev1.Pod, error)
- func (c PodClient) Delete(namespace, name string, options *metav1.DeleteOptions) error
- func (c PodClient) Get(namespace, name string, options metav1.GetOptions) (*corev1.Pod, error)
- func (c PodClient) List(namespace string, opts metav1.ListOptions) (*corev1.PodList, error)
- func (c PodClient) Patch(namespace, name string, pt types.PatchType, data []byte, ...) (result *corev1.Pod, err error)
- func (c PodClient) Update(pod *corev1.Pod) (*corev1.Pod, error)
- func (c PodClient) UpdateStatus(pod *corev1.Pod) (*corev1.Pod, error)
- func (c PodClient) Watch(namespace string, opts metav1.ListOptions) (watch.Interface, error)
- type VirtualMachineNetworkConfigCache
- func (c VirtualMachineNetworkConfigCache) AddIndexer(indexName string, indexer ctlnetworkv1.VirtualMachineNetworkConfigIndexer)
- func (c VirtualMachineNetworkConfigCache) Get(namespace, name string) (*networkv1.VirtualMachineNetworkConfig, error)
- func (c VirtualMachineNetworkConfigCache) GetByIndex(indexName, key string) ([]*networkv1.VirtualMachineNetworkConfig, error)
- func (c VirtualMachineNetworkConfigCache) List(namespace string, selector labels.Selector) ([]*networkv1.VirtualMachineNetworkConfig, error)
- type VirtualMachineNetworkConfigClient
- func (c VirtualMachineNetworkConfigClient) Create(*networkv1.VirtualMachineNetworkConfig) (*networkv1.VirtualMachineNetworkConfig, error)
- func (c VirtualMachineNetworkConfigClient) Delete(namespace, name string, options *metav1.DeleteOptions) error
- func (c VirtualMachineNetworkConfigClient) Get(namespace, name string, options metav1.GetOptions) (*networkv1.VirtualMachineNetworkConfig, error)
- func (c VirtualMachineNetworkConfigClient) List(namespace string, opts metav1.ListOptions) (*networkv1.VirtualMachineNetworkConfigList, error)
- func (c VirtualMachineNetworkConfigClient) Patch(namespace, name string, pt types.PatchType, data []byte, ...) (result *networkv1.VirtualMachineNetworkConfig, err error)
- func (c VirtualMachineNetworkConfigClient) Update(vmNetCfg *networkv1.VirtualMachineNetworkConfig) (*networkv1.VirtualMachineNetworkConfig, error)
- func (c VirtualMachineNetworkConfigClient) UpdateStatus(vmNetCfg *networkv1.VirtualMachineNetworkConfig) (*networkv1.VirtualMachineNetworkConfig, error)
- func (c VirtualMachineNetworkConfigClient) Watch(namespace string, opts metav1.ListOptions) (watch.Interface, error)
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type IPPoolCache ¶
type IPPoolCache func(string) typenetworkv1.IPPoolInterface
func (IPPoolCache) AddIndexer ¶
func (c IPPoolCache) AddIndexer(indexName string, indexer ctlnetworkv1.IPPoolIndexer)
func (IPPoolCache) Get ¶
func (c IPPoolCache) Get(namespace, name string) (*networkv1.IPPool, error)
func (IPPoolCache) GetByIndex ¶
func (c IPPoolCache) GetByIndex(indexName, key string) ([]*networkv1.IPPool, error)
type IPPoolClient ¶
type IPPoolClient func(string) typenetworkv1.IPPoolInterface
func (IPPoolClient) Delete ¶
func (c IPPoolClient) Delete(namespace, name string, options *metav1.DeleteOptions) error
func (IPPoolClient) Get ¶
func (c IPPoolClient) Get(namespace, name string, options metav1.GetOptions) (*networkv1.IPPool, error)
func (IPPoolClient) List ¶
func (c IPPoolClient) List(namespace string, opts metav1.ListOptions) (*networkv1.IPPoolList, error)
func (IPPoolClient) UpdateStatus ¶
func (IPPoolClient) Watch ¶
func (c IPPoolClient) Watch(namespace string, opts metav1.ListOptions) (watch.Interface, error)
type NetworkAttachmentDefinitionCache ¶
type NetworkAttachmentDefinitionCache func(string) typecniv1.NetworkAttachmentDefinitionInterface
func (NetworkAttachmentDefinitionCache) AddIndexer ¶
func (c NetworkAttachmentDefinitionCache) AddIndexer(indexName string, indexer ctlcniv1.NetworkAttachmentDefinitionIndexer)
func (NetworkAttachmentDefinitionCache) Get ¶
func (c NetworkAttachmentDefinitionCache) Get(namespace, name string) (*cniv1.NetworkAttachmentDefinition, error)
func (NetworkAttachmentDefinitionCache) GetByIndex ¶
func (c NetworkAttachmentDefinitionCache) GetByIndex(indexName, key string) ([]*cniv1.NetworkAttachmentDefinition, error)
func (NetworkAttachmentDefinitionCache) List ¶
func (c NetworkAttachmentDefinitionCache) List(namespace string, selector labels.Selector) ([]*cniv1.NetworkAttachmentDefinition, error)
type NetworkAttachmentDefinitionClient ¶
type NetworkAttachmentDefinitionClient func(string) typecniv1.NetworkAttachmentDefinitionInterface
func (NetworkAttachmentDefinitionClient) Create ¶
func (c NetworkAttachmentDefinitionClient) Create(nad *cniv1.NetworkAttachmentDefinition) (*cniv1.NetworkAttachmentDefinition, error)
func (NetworkAttachmentDefinitionClient) Delete ¶
func (c NetworkAttachmentDefinitionClient) Delete(namespace, name string, options *metav1.DeleteOptions) error
func (NetworkAttachmentDefinitionClient) Get ¶
func (c NetworkAttachmentDefinitionClient) Get(namespace, name string, options metav1.GetOptions) (*cniv1.NetworkAttachmentDefinition, error)
func (NetworkAttachmentDefinitionClient) List ¶
func (c NetworkAttachmentDefinitionClient) List(namespace string, opts metav1.ListOptions) (*cniv1.NetworkAttachmentDefinitionList, error)
func (NetworkAttachmentDefinitionClient) Patch ¶
func (c NetworkAttachmentDefinitionClient) Patch(namespace, name string, pt types.PatchType, data []byte, subresources ...string) (result *cniv1.NetworkAttachmentDefinition, err error)
func (NetworkAttachmentDefinitionClient) Update ¶
func (c NetworkAttachmentDefinitionClient) Update(nad *cniv1.NetworkAttachmentDefinition) (*cniv1.NetworkAttachmentDefinition, error)
func (NetworkAttachmentDefinitionClient) Watch ¶
func (c NetworkAttachmentDefinitionClient) Watch(namespace string, opts metav1.ListOptions) (watch.Interface, error)
type PodCache ¶
type PodCache func(string) typecorev1.PodInterface
func (PodCache) AddIndexer ¶
func (c PodCache) AddIndexer(indexName string, indexer ctlcorev1.PodIndexer)
func (PodCache) GetByIndex ¶
type PodClient ¶
type PodClient func(string) typecorev1.PodInterface
func (PodClient) Delete ¶
func (c PodClient) Delete(namespace, name string, options *metav1.DeleteOptions) error
func (PodClient) UpdateStatus ¶
type VirtualMachineNetworkConfigCache ¶
type VirtualMachineNetworkConfigCache func(string) typenetworkv1.VirtualMachineNetworkConfigInterface
func (VirtualMachineNetworkConfigCache) AddIndexer ¶
func (c VirtualMachineNetworkConfigCache) AddIndexer(indexName string, indexer ctlnetworkv1.VirtualMachineNetworkConfigIndexer)
func (VirtualMachineNetworkConfigCache) Get ¶
func (c VirtualMachineNetworkConfigCache) Get(namespace, name string) (*networkv1.VirtualMachineNetworkConfig, error)
func (VirtualMachineNetworkConfigCache) GetByIndex ¶
func (c VirtualMachineNetworkConfigCache) GetByIndex(indexName, key string) ([]*networkv1.VirtualMachineNetworkConfig, error)
func (VirtualMachineNetworkConfigCache) List ¶
func (c VirtualMachineNetworkConfigCache) List(namespace string, selector labels.Selector) ([]*networkv1.VirtualMachineNetworkConfig, error)
type VirtualMachineNetworkConfigClient ¶
type VirtualMachineNetworkConfigClient func(string) typenetworkv1.VirtualMachineNetworkConfigInterface
func (VirtualMachineNetworkConfigClient) Delete ¶
func (c VirtualMachineNetworkConfigClient) Delete(namespace, name string, options *metav1.DeleteOptions) error
func (VirtualMachineNetworkConfigClient) Get ¶
func (c VirtualMachineNetworkConfigClient) Get(namespace, name string, options metav1.GetOptions) (*networkv1.VirtualMachineNetworkConfig, error)
func (VirtualMachineNetworkConfigClient) List ¶
func (c VirtualMachineNetworkConfigClient) List(namespace string, opts metav1.ListOptions) (*networkv1.VirtualMachineNetworkConfigList, error)
func (VirtualMachineNetworkConfigClient) Patch ¶
func (c VirtualMachineNetworkConfigClient) Patch(namespace, name string, pt types.PatchType, data []byte, subresources ...string) (result *networkv1.VirtualMachineNetworkConfig, err error)
func (VirtualMachineNetworkConfigClient) Update ¶
func (c VirtualMachineNetworkConfigClient) Update(vmNetCfg *networkv1.VirtualMachineNetworkConfig) (*networkv1.VirtualMachineNetworkConfig, error)
func (VirtualMachineNetworkConfigClient) UpdateStatus ¶
func (c VirtualMachineNetworkConfigClient) UpdateStatus(vmNetCfg *networkv1.VirtualMachineNetworkConfig) (*networkv1.VirtualMachineNetworkConfig, error)
func (VirtualMachineNetworkConfigClient) Watch ¶
func (c VirtualMachineNetworkConfigClient) Watch(namespace string, opts metav1.ListOptions) (watch.Interface, error)
Click to show internal directories.
Click to hide internal directories.