Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var ParameterCodec = runtime.NewParameterCodec(scheme)
ParameterCodec handles versioning of objects that are converted to query parameters.
Functions ¶
This section is empty.
Types ¶
type ListOptions ¶
type ListOptions struct { metav1.TypeMeta // A selector based on labels LabelSelector labels.Selector // A selector based on fields FieldSelector fields.Selector // If true, partially initialized resources are included in the response. // +optional IncludeUninitialized bool // If true, watch for changes to this list Watch bool // When specified with a watch call, shows changes that occur after that particular version of a resource. // Defaults to changes from the beginning of history. // When specified for list: // - if unset, then the result is returned from remote storage based on quorum-read flag; // - if it's 0, then we simply return what we currently have in cache, no guarantee; // - if set to non zero, then the result is at least as fresh as given rv. ResourceVersion string // Timeout for the list/watch call. TimeoutSeconds *int64 }
ListOptions is the query options to a standard REST list call, and has future support for watch calls.
Click to show internal directories.
Click to hide internal directories.