kubernetes/staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/unstructured/unstructured_list.go

var _

var _

type UnstructuredList

func (u *UnstructuredList) GetObjectKind() schema.ObjectKind {}

func (u *UnstructuredList) IsList() bool {}

func (u *UnstructuredList) EachListItem(fn func(runtime.Object) error) error {}

func (u *UnstructuredList) EachListItemWithAlloc(fn func(runtime.Object) error) error {}

// NewEmptyInstance returns a new instance of the concrete type containing only kind/apiVersion and no other data.
// This should be called instead of reflect.New() for unstructured types because the go type alone does not preserve kind/apiVersion info.
func (u *UnstructuredList) NewEmptyInstance() runtime.Unstructured {}

// UnstructuredContent returns a map contain an overlay of the Items field onto
// the Object field. Items always overwrites overlay.
func (u *UnstructuredList) UnstructuredContent() map[string]interface{}

// SetUnstructuredContent obeys the conventions of List and keeps Items and the items
// array in sync. If items is not an array of objects in the incoming map, then any
// mismatched item will be removed.
func (obj *UnstructuredList) SetUnstructuredContent(content map[string]interface{}

func (u *UnstructuredList) DeepCopy() *UnstructuredList {}

// MarshalJSON ensures that the unstructured list object produces proper
// JSON when passed to Go's standard JSON library.
func (u *UnstructuredList) MarshalJSON() ([]byte, error) {}

// UnmarshalJSON ensures that the unstructured list object properly
// decodes JSON when passed to Go's standard JSON library.
func (u *UnstructuredList) UnmarshalJSON(b []byte) error {}

func (u *UnstructuredList) GetAPIVersion() string {}

func (u *UnstructuredList) SetAPIVersion(version string) {}

func (u *UnstructuredList) GetKind() string {}

func (u *UnstructuredList) SetKind(kind string) {}

func (u *UnstructuredList) GetResourceVersion() string {}

func (u *UnstructuredList) SetResourceVersion(version string) {}

func (u *UnstructuredList) GetSelfLink() string {}

func (u *UnstructuredList) SetSelfLink(selfLink string) {}

func (u *UnstructuredList) GetContinue() string {}

func (u *UnstructuredList) SetContinue(c string) {}

func (u *UnstructuredList) GetRemainingItemCount() *int64 {}

func (u *UnstructuredList) SetRemainingItemCount(c *int64) {}

func (u *UnstructuredList) SetGroupVersionKind(gvk schema.GroupVersionKind) {}

func (u *UnstructuredList) GroupVersionKind() schema.GroupVersionKind {}

func (u *UnstructuredList) setNestedField(value interface{}