func CreateHTTPClient(roundTripper func(*http.Request) (*http.Response, error)) *http.Client
CreateHTTPClient creates an http.Client that will invoke the provided roundTripper func when a request is made.
RESTClient provides a fake RESTClient interface. It is used to mock network interactions via a rest.Request, or to make them via the provided Client to a specific server.
type RESTClient struct { NegotiatedSerializer runtime.NegotiatedSerializer GroupVersion schema.GroupVersion VersionedAPIPath string // Err is returned when any request would be made to the server. If Err is set, // Req will not be recorded, Resp will not be returned, and Client will not be // invoked. Err error // Req is set to the last request that was executed (had the methods Do/DoRaw) invoked. Req *http.Request // If Client is specified, the client will be invoked instead of returning Resp if // Err is not set. Client *http.Client // Resp is returned to the caller after Req is recorded, unless Err or Client are set. Resp *http.Response }
func (c *RESTClient) APIVersion() schema.GroupVersion
func (c *RESTClient) Delete() *restclient.Request
func (c *RESTClient) Get() *restclient.Request
func (c *RESTClient) GetRateLimiter() flowcontrol.RateLimiter
func (c *RESTClient) Patch(pt types.PatchType) *restclient.Request
func (c *RESTClient) Post() *restclient.Request
func (c *RESTClient) Put() *restclient.Request
func (c *RESTClient) Request() *restclient.Request
func (c *RESTClient) Verb(verb string) *restclient.Request