> + @RequestFilters(RequestAuthorization.class)
> + @MapBinder(BindToJsonPayload.class)
> + @Produces(APPLICATION_JSON)
> + GetUploadPartResponse getUploadPartUrl(@PayloadParam("fileId") String
> fileId);
> +
> + @Named("b2_upload_part")
> + @POST
> + @MapBinder(UploadPartBinder.class)
> + UploadPartResponse uploadPart(@PayloadParam("response")
> GetUploadPartResponse response, @HeaderParam("X-Bz-Part-Number") int
> partNumber, @HeaderParam("X-Bz-Content-Sha1") String sha1,
> @PayloadParam("payload") Payload payload);
> +
> + @Named("b2_list_parts")
> + @POST
> + @Path("/b2api/v1/b2_list_parts")
> + @RequestFilters(RequestAuthorization.class)
> + @MapBinder(BindToJsonPayload.class)
> + @Consumes(APPLICATION_JSON)
Done. Sorry I missed these!
---
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs/pull/282/files/3119a8be67053528b143acb9ad0a5c383df51a89#r67440041