kubernetes/staging/src/k8s.io/kubectl/pkg/rawhttp/raw.go

// RawPost uses the REST client to POST content
func RawPost(restClient *rest.RESTClient, streams genericiooptions.IOStreams, url, filename string) error {}

// RawPut uses the REST client to PUT content
func RawPut(restClient *rest.RESTClient, streams genericiooptions.IOStreams, url, filename string) error {}

// RawGet uses the REST client to GET content
func RawGet(restClient *rest.RESTClient, streams genericiooptions.IOStreams, url string) error {}

// RawDelete uses the REST client to DELETE content
func RawDelete(restClient *rest.RESTClient, streams genericiooptions.IOStreams, url, filename string) error {}

// raw makes a simple HTTP request to the provided path on the server using the default credentials.
func raw(restClient *rest.RESTClient, streams genericiooptions.IOStreams, url, filename, requestType string) error {}