# Functions
Create creates the provided object on the server and updates the arg "object" with the result from the server(UID, resourceVersion, etc).
Delete deletes the specified object Returns an error if the object’s TypeMeta(Kind, APIVersion) or ObjectMeta(Name, Namespace) is missing or incorrect.
ExposeMetricsPort generate a Kubernetes Service to expose metrics port.
Get gets the specified object and unmarshals the retrieved data into the "into" object.
Handle registers the handler for all events.
List retrieves the specified object list and unmarshals the retrieved data into the "into" object.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
Patch patches provided "object" on the server with given "patch" and updates the arg "object" with the result from the server(UID, resourceVersion, etc).
Run starts the process of Watching resources, handling Events, and processing Actions.
Update updates the provided object on the server and updates the arg "object" with the result from the server(UID, resourceVersion, etc).
Watch watches for changes on the given resource.
WithDeleteOptions sets the metav1.DeleteOptions for the Delete() operation.
WithGetOptions sets the metav1.GetOptions for the Get() operation.
No description provided by the author
WithListOptions sets the metav1.ListOptions for the List() operation.
WithNumWorkers sets the number of workers for the Watch() operation.
# Variables
RegisteredHandler is the user registered handler set by sdk.Handle().
# Type aliases
DeleteOption configures DeleteOp.
GetOption configures GetOp.
ListOption configures ListOp.
Object is the Kubernetes runtime.Object interface expected of all resources that the user can watch.