type ProxyREST …
var _ …
var proxyMethods …
func (r *ProxyREST) New() runtime.Object { … }
func (r *ProxyREST) Destroy() { … }
func (r *ProxyREST) ConnectMethods() []string { … }
func (r *ProxyREST) NewConnectOptions() (runtime.Object, bool, string) { … }
func (r *ProxyREST) Connect(ctx context.Context, id string, opts runtime.Object, responder rest.Responder) (http.Handler, error) { … }
var upgradeableMethods …
type AttachREST …
var _ …
func (r *AttachREST) New() runtime.Object { … }
func (r *AttachREST) Destroy() { … }
func (r *AttachREST) Connect(ctx context.Context, name string, opts runtime.Object, responder rest.Responder) (http.Handler, error) { … }
func (r *AttachREST) NewConnectOptions() (runtime.Object, bool, string) { … }
func (r *AttachREST) ConnectMethods() []string { … }
type ExecREST …
var _ …
func (r *ExecREST) New() runtime.Object { … }
func (r *ExecREST) Destroy() { … }
func (r *ExecREST) Connect(ctx context.Context, name string, opts runtime.Object, responder rest.Responder) (http.Handler, error) { … }
func (r *ExecREST) NewConnectOptions() (runtime.Object, bool, string) { … }
func (r *ExecREST) ConnectMethods() []string { … }
type PortForwardREST …
var _ …
func (r *PortForwardREST) New() runtime.Object { … }
func (r *PortForwardREST) Destroy() { … }
func (r *PortForwardREST) NewConnectOptions() (runtime.Object, bool, string) { … }
func (r *PortForwardREST) ConnectMethods() []string { … }
func (r *PortForwardREST) Connect(ctx context.Context, name string, opts runtime.Object, responder rest.Responder) (http.Handler, error) { … }
func newThrottledUpgradeAwareProxyHandler(location *url.URL, transport http.RoundTripper, wrapTransport, upgradeRequired bool, responder rest.Responder) http.Handler { … }