Documentation ¶ Overview ¶ Package change contains data structures for capturing resource state change related information. Index ¶ type Info func (i Info) String() string type Type Constants ¶ This section is empty. Variables ¶ This section is empty. Functions ¶ This section is empty. Types ¶ type Info ¶ type Info struct { Type Type Name string GroupVersion schema.GroupVersion } Info captures information about a Kubernetes resource change. func (Info) String ¶ func (i Info) String() string type Type ¶ type Type int Type is the type of the change. const ( // Add means a Kubernetes resource was added. Add Type = iota // Update means a Kubernetes resource was updated. Update // Delete means a Kubernetes resource was deleted. Delete ) Source Files ¶ View all Source files info.go type.go Click to show internal directories. Click to hide internal directories.