Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Clientset ¶
type Clientset struct {
// contains filtered or unexported fields
}
Clientset is a client for the topology crds.
func NewForConfig ¶
NewForConfig returns a new Clientset based on c.
func (*Clientset) Topology ¶
func (c *Clientset) Topology(namespace string) TopologyInterface
type Interface ¶
type Interface interface {
Topology(namespace string) TopologyInterface
}
Interface is the clientset interface for topology.
type TopologyInterface ¶
type TopologyInterface interface { List(ctx context.Context, opts metav1.ListOptions) (*topologyv1.TopologyList, error) Get(ctx context.Context, name string, options metav1.GetOptions) (*topologyv1.Topology, error) Create(ctx context.Context, topology *topologyv1.Topology) (*topologyv1.Topology, error) Delete(ctx context.Context, name string, opts metav1.DeleteOptions) error Watch(ctx context.Context, opts metav1.ListOptions) (watch.Interface, error) Unstructured(ctx context.Context, name string, opts metav1.GetOptions, subresources ...string) (*unstructured.Unstructured, error) Update(ctx context.Context, obj *unstructured.Unstructured, opts metav1.UpdateOptions) (*topologyv1.Topology, error) }
TopologyInterface provides access to the Topology CRD.
Click to show internal directories.
Click to hide internal directories.