Interface FolderServiceAsync.WithRawResponse
-
- All Implemented Interfaces:
public interface FolderServiceAsync.WithRawResponseA view of FolderServiceAsync that provides access to raw HTTP responses for each method.
-
-
Method Summary
-
-
Method Detail
-
withOptions
abstract FolderServiceAsync.WithRawResponse withOptions(Consumer<ClientOptions.Builder> modifier)
Returns a view of this service with the given option modifications applied.
The original service is not modified.
-
job
abstract JobServiceAsync.WithRawResponse job()
-
create
CompletableFuture<HttpResponseFor<FolderCreateResponse>> create(FolderCreateParams params)
Returns a raw HTTP response for
post /v1/folder, but is otherwise the same as FolderServiceAsync.create.
-
create
abstract CompletableFuture<HttpResponseFor<FolderCreateResponse>> create(FolderCreateParams params, RequestOptions requestOptions)
-
delete
CompletableFuture<HttpResponseFor<FolderDeleteResponse>> delete(FolderDeleteParams params)
Returns a raw HTTP response for
delete /v1/folder, but is otherwise the same as FolderServiceAsync.delete.
-
delete
abstract CompletableFuture<HttpResponseFor<FolderDeleteResponse>> delete(FolderDeleteParams params, RequestOptions requestOptions)
-
copy
CompletableFuture<HttpResponseFor<FolderCopyResponse>> copy(FolderCopyParams params)
Returns a raw HTTP response for
post /v1/bulkJobs/copyFolder, but is otherwise the same as FolderServiceAsync.copy.
-
copy
abstract CompletableFuture<HttpResponseFor<FolderCopyResponse>> copy(FolderCopyParams params, RequestOptions requestOptions)
-
move
CompletableFuture<HttpResponseFor<FolderMoveResponse>> move(FolderMoveParams params)
Returns a raw HTTP response for
post /v1/bulkJobs/moveFolder, but is otherwise the same as FolderServiceAsync.move.
-
move
abstract CompletableFuture<HttpResponseFor<FolderMoveResponse>> move(FolderMoveParams params, RequestOptions requestOptions)
-
rename
CompletableFuture<HttpResponseFor<FolderRenameResponse>> rename(FolderRenameParams params)
Returns a raw HTTP response for
post /v1/bulkJobs/renameFolder, but is otherwise the same as FolderServiceAsync.rename.
-
rename
abstract CompletableFuture<HttpResponseFor<FolderRenameResponse>> rename(FolderRenameParams params, RequestOptions requestOptions)
-
-
-
-