Documentation ¶
Overview ¶
This package has the automatically generated typed clients.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type AppsClient ¶
type AppsClient struct {
// contains filtered or unexported fields
}
AppsClient is used to interact with features provided by the Apps group.
func New ¶
func New(c rest.Interface) *AppsClient
New creates a new AppsClient for the given RESTClient.
func NewForConfig ¶
func NewForConfig(c *rest.Config) (*AppsClient, error)
NewForConfig creates a new AppsClient for the given config.
func NewForConfigOrDie ¶
func NewForConfigOrDie(c *rest.Config) *AppsClient
NewForConfigOrDie creates a new AppsClient for the given config and panics if there is an error in the config.
func (*AppsClient) RESTClient ¶
func (c *AppsClient) RESTClient() rest.Interface
RESTClient returns a RESTClient that is used to communicate with API server by this client implementation.
func (*AppsClient) StatefulSets ¶
func (c *AppsClient) StatefulSets(namespace string) StatefulSetInterface
type AppsInterface ¶
type AppsInterface interface { RESTClient() rest.Interface StatefulSetsGetter }
type StatefulSetExpansion ¶
type StatefulSetExpansion interface{}
type StatefulSetInterface ¶
type StatefulSetInterface interface { Create(*v1alpha1.StatefulSet) (*v1alpha1.StatefulSet, error) Update(*v1alpha1.StatefulSet) (*v1alpha1.StatefulSet, error) UpdateStatus(*v1alpha1.StatefulSet) (*v1alpha1.StatefulSet, error) Delete(name string, options *v1.DeleteOptions) error DeleteCollection(options *v1.DeleteOptions, listOptions v1.ListOptions) error Get(name string) (*v1alpha1.StatefulSet, error) List(opts v1.ListOptions) (*v1alpha1.StatefulSetList, error) Watch(opts v1.ListOptions) (watch.Interface, error) Patch(name string, pt api.PatchType, data []byte, subresources ...string) (result *v1alpha1.StatefulSet, err error) StatefulSetExpansion }
StatefulSetInterface has methods to work with StatefulSet resources.
type StatefulSetsGetter ¶
type StatefulSetsGetter interface {
StatefulSets(namespace string) StatefulSetInterface
}
StatefulSetsGetter has a method to return a StatefulSetInterface. A group's client should implement this interface.