var metadataAccessor …
type Helper …
func NewHelper(client RESTClient, mapping *meta.RESTMapping) *Helper { … }
func (m *Helper) DryRun(dryRun bool) *Helper { … }
func (m *Helper) WithFieldManager(fieldManager string) *Helper { … }
func (m *Helper) WithFieldValidation(validationDirective string) *Helper { … }
func (m *Helper) WithSubresource(subresource string) *Helper { … }
func (m *Helper) Get(namespace, name string) (runtime.Object, error) { … }
func (m *Helper) List(namespace, apiVersion string, options *metav1.ListOptions) (runtime.Object, error) { … }
func FollowContinue(initialOpts *metav1.ListOptions,
listFunc func(metav1.ListOptions) (runtime.Object, error)) error { … }
func EnhanceListError(err error, opts metav1.ListOptions, subj string) error { … }
func (m *Helper) Watch(namespace, apiVersion string, options *metav1.ListOptions) (watch.Interface, error) { … }
func (m *Helper) WatchSingle(namespace, name, resourceVersion string) (watch.Interface, error) { … }
func (m *Helper) Delete(namespace, name string) (runtime.Object, error) { … }
func (m *Helper) DeleteWithOptions(namespace, name string, options *metav1.DeleteOptions) (runtime.Object, error) { … }
func (m *Helper) Create(namespace string, modify bool, obj runtime.Object) (runtime.Object, error) { … }
func (m *Helper) CreateWithOptions(namespace string, modify bool, obj runtime.Object, options *metav1.CreateOptions) (runtime.Object, error) { … }
func (m *Helper) createResource(c RESTClient, resource, namespace string, obj runtime.Object, options *metav1.CreateOptions) (runtime.Object, error) { … }
func (m *Helper) Patch(namespace, name string, pt types.PatchType, data []byte, options *metav1.PatchOptions) (runtime.Object, error) { … }
func (m *Helper) Replace(namespace, name string, overwrite bool, obj runtime.Object) (runtime.Object, error) { … }
func (m *Helper) replaceResource(c RESTClient, resource, namespace, name string, obj runtime.Object, options *metav1.UpdateOptions) (runtime.Object, error) { … }