var deleteScheme …
var parameterScheme …
var deleteOptionsCodec …
var dynamicParameterCodec …
var versionV1 …
func init() { … }
type Client …
var _ …
func ConfigFor(inConfig *rest.Config) *rest.Config { … }
func NewForConfigOrDie(c *rest.Config) Interface { … }
func NewForConfig(inConfig *rest.Config) (Interface, error) { … }
func NewForConfigAndClient(inConfig *rest.Config, h *http.Client) (Interface, error) { … }
type client …
func (c *Client) Resource(resource schema.GroupVersionResource) Getter { … }
func (c *client) Namespace(ns string) ResourceInterface { … }
func (c *client) Delete(ctx context.Context, name string, opts metav1.DeleteOptions, subresources ...string) error { … }
func (c *client) DeleteCollection(ctx context.Context, opts metav1.DeleteOptions, listOptions metav1.ListOptions) error { … }
func (c *client) Get(ctx context.Context, name string, opts metav1.GetOptions, subresources ...string) (*metav1.PartialObjectMetadata, error) { … }
func (c *client) List(ctx context.Context, opts metav1.ListOptions) (*metav1.PartialObjectMetadataList, error) { … }
func (c *client) list(ctx context.Context, opts metav1.ListOptions) (*metav1.PartialObjectMetadataList, error) { … }
func (c *client) watchList(ctx context.Context, opts metav1.ListOptions) (*metav1.PartialObjectMetadataList, error) { … }
func (c *client) Watch(ctx context.Context, opts metav1.ListOptions) (watch.Interface, error) { … }
func (c *client) Patch(ctx context.Context, name string, pt types.PatchType, data []byte, opts metav1.PatchOptions, subresources ...string) (*metav1.PartialObjectMetadata, error) { … }
func (c *client) makeURLSegments(name string) []string { … }
func isLikelyObjectMetadata(meta *metav1.PartialObjectMetadata) bool { … }