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 {
*rest.RESTClient
}
AppsClient is used to interact with features provided by the Apps group.
func New ¶
func New(c *rest.RESTClient) *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) GetRESTClient ¶
func (c *AppsClient) GetRESTClient() *rest.RESTClient
GetRESTClient returns a RESTClient that is used to communicate with API server by this client implementation.
func (*AppsClient) PetSets ¶
func (c *AppsClient) PetSets(namespace string) PetSetInterface
type AppsInterface ¶
type AppsInterface interface { GetRESTClient() *rest.RESTClient PetSetsGetter }
type PetSetExpansion ¶
type PetSetExpansion interface{}
type PetSetInterface ¶
type PetSetInterface interface { Create(*v1alpha1.PetSet) (*v1alpha1.PetSet, error) Update(*v1alpha1.PetSet) (*v1alpha1.PetSet, error) UpdateStatus(*v1alpha1.PetSet) (*v1alpha1.PetSet, error) Delete(name string, options *api.DeleteOptions) error DeleteCollection(options *api.DeleteOptions, listOptions api.ListOptions) error Get(name string) (*v1alpha1.PetSet, error) List(opts api.ListOptions) (*v1alpha1.PetSetList, error) Watch(opts api.ListOptions) (watch.Interface, error) Patch(name string, pt api.PatchType, data []byte, subresources ...string) (result *v1alpha1.PetSet, err error) PetSetExpansion }
PetSetInterface has methods to work with PetSet resources.
type PetSetsGetter ¶
type PetSetsGetter interface {
PetSets(namespace string) PetSetInterface
}
PetSetsGetter has a method to return a PetSetInterface. A group's client should implement this interface.