Interface DeploymentServiceAsync.WithRawResponse
-
- All Implemented Interfaces:
public interface DeploymentServiceAsync.WithRawResponseA view of DeploymentServiceAsync that provides access to raw HTTP responses for each method.
-
-
Method Summary
-
-
Method Detail
-
withOptions
abstract DeploymentServiceAsync.WithRawResponse withOptions(Consumer<ClientOptions.Builder> modifier)
Returns a view of this service with the given option modifications applied.
The original service is not modified.
-
create
CompletableFuture<HttpResponse> create(DeploymentCreateParams params)
Returns a raw HTTP response for
post /applications/v1/deployments, but is otherwise the same as DeploymentServiceAsync.create.
-
create
abstract CompletableFuture<HttpResponse> create(DeploymentCreateParams params, RequestOptions requestOptions)
-
retrieve
CompletableFuture<HttpResponse> retrieve(String id, DeploymentRetrieveParams params)
Returns a raw HTTP response for
get /applications/v1/deployments/{id}, but is otherwise the same as DeploymentServiceAsync.retrieve.
-
retrieve
CompletableFuture<HttpResponse> retrieve(String id, DeploymentRetrieveParams params, RequestOptions requestOptions)
-
retrieve
CompletableFuture<HttpResponse> retrieve(DeploymentRetrieveParams params)
-
retrieve
abstract CompletableFuture<HttpResponse> retrieve(DeploymentRetrieveParams params, RequestOptions requestOptions)
-
list
CompletableFuture<HttpResponse> list(DeploymentListParams params)
Returns a raw HTTP response for
get /applications/v1/deployments, but is otherwise the same as DeploymentServiceAsync.list.
-
list
abstract CompletableFuture<HttpResponse> list(DeploymentListParams params, RequestOptions requestOptions)
-
cancel
CompletableFuture<HttpResponse> cancel(String id, DeploymentCancelParams params)
Returns a raw HTTP response for
post /applications/v1/deployments/{id}/cancel, but is otherwise the same as DeploymentServiceAsync.cancel.
-
cancel
CompletableFuture<HttpResponse> cancel(String id, DeploymentCancelParams params, RequestOptions requestOptions)
-
cancel
CompletableFuture<HttpResponse> cancel(DeploymentCancelParams params)
-
cancel
abstract CompletableFuture<HttpResponse> cancel(DeploymentCancelParams params, RequestOptions requestOptions)
-
createFromFiles
CompletableFuture<HttpResponse> createFromFiles()
Returns a raw HTTP response for
post /applications/v1/deployments/from-files, but is otherwise the same as DeploymentServiceAsync.createFromFiles.
-
createFromFiles
abstract CompletableFuture<HttpResponse> createFromFiles(DeploymentCreateFromFilesParams params, RequestOptions requestOptions)
-
createFromFiles
CompletableFuture<HttpResponse> createFromFiles(DeploymentCreateFromFilesParams params)
-
createFromFiles
CompletableFuture<HttpResponse> createFromFiles(RequestOptions requestOptions)
-
getLogs
CompletableFuture<HttpResponse> getLogs(String id, DeploymentGetLogsParams params)
Returns a raw HTTP response for
get /applications/v1/deployments/{id}/logs, but is otherwise the same as DeploymentServiceAsync.getLogs.
-
getLogs
CompletableFuture<HttpResponse> getLogs(String id, DeploymentGetLogsParams params, RequestOptions requestOptions)
-
getLogs
CompletableFuture<HttpResponse> getLogs(DeploymentGetLogsParams params)
-
getLogs
abstract CompletableFuture<HttpResponse> getLogs(DeploymentGetLogsParams params, RequestOptions requestOptions)
-
getStatus
CompletableFuture<HttpResponse> getStatus(String id)
Returns a raw HTTP response for
get /applications/v1/deployments/{id}/status, but is otherwise the same as DeploymentServiceAsync.getStatus.
-
getStatus
CompletableFuture<HttpResponse> getStatus(String id, DeploymentGetStatusParams params, RequestOptions requestOptions)
-
getStatus
CompletableFuture<HttpResponse> getStatus(String id, DeploymentGetStatusParams params)
-
getStatus
abstract CompletableFuture<HttpResponse> getStatus(DeploymentGetStatusParams params, RequestOptions requestOptions)
-
getStatus
CompletableFuture<HttpResponse> getStatus(DeploymentGetStatusParams params)
-
getStatus
CompletableFuture<HttpResponse> getStatus(String id, RequestOptions requestOptions)
-
stream
CompletableFuture<HttpResponse> stream(String id, DeploymentStreamParams params)
Returns a raw HTTP response for
get /applications/v1/deployments/{id}/stream, but is otherwise the same as DeploymentServiceAsync.stream.
-
stream
CompletableFuture<HttpResponse> stream(String id, DeploymentStreamParams params, RequestOptions requestOptions)
-
stream
CompletableFuture<HttpResponse> stream(DeploymentStreamParams params)
-
stream
abstract CompletableFuture<HttpResponse> stream(DeploymentStreamParams params, RequestOptions requestOptions)
-
-
-
-