Interface DeploymentService.WithRawResponse
-
- All Implemented Interfaces:
public interface DeploymentService.WithRawResponseA view of DeploymentService that provides access to raw HTTP responses for each method.
-
-
Method Summary
-
-
Method Detail
-
withOptions
abstract DeploymentService.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
@MustBeClosed() HttpResponse create(DeploymentCreateParams params)
Returns a raw HTTP response for
post /applications/v1/deployments, but is otherwise the same as DeploymentService.create.
-
create
@MustBeClosed() abstract HttpResponse create(DeploymentCreateParams params, RequestOptions requestOptions)
-
retrieve
@MustBeClosed() HttpResponse retrieve(String id, DeploymentRetrieveParams params)
Returns a raw HTTP response for
get /applications/v1/deployments/{id}, but is otherwise the same as DeploymentService.retrieve.
-
retrieve
@MustBeClosed() HttpResponse retrieve(String id, DeploymentRetrieveParams params, RequestOptions requestOptions)
-
retrieve
@MustBeClosed() HttpResponse retrieve(DeploymentRetrieveParams params)
-
retrieve
@MustBeClosed() abstract HttpResponse retrieve(DeploymentRetrieveParams params, RequestOptions requestOptions)
-
list
@MustBeClosed() HttpResponse list(DeploymentListParams params)
Returns a raw HTTP response for
get /applications/v1/deployments, but is otherwise the same as DeploymentService.list.
-
list
@MustBeClosed() abstract HttpResponse list(DeploymentListParams params, RequestOptions requestOptions)
-
cancel
@MustBeClosed() HttpResponse cancel(String id, DeploymentCancelParams params)
Returns a raw HTTP response for
post /applications/v1/deployments/{id}/cancel, but is otherwise the same as DeploymentService.cancel.
-
cancel
@MustBeClosed() HttpResponse cancel(String id, DeploymentCancelParams params, RequestOptions requestOptions)
-
cancel
@MustBeClosed() HttpResponse cancel(DeploymentCancelParams params)
-
cancel
@MustBeClosed() abstract HttpResponse cancel(DeploymentCancelParams params, RequestOptions requestOptions)
-
createFromFiles
@MustBeClosed() HttpResponse createFromFiles()
Returns a raw HTTP response for
post /applications/v1/deployments/from-files, but is otherwise the same as DeploymentService.createFromFiles.
-
createFromFiles
@MustBeClosed() abstract HttpResponse createFromFiles(DeploymentCreateFromFilesParams params, RequestOptions requestOptions)
-
createFromFiles
@MustBeClosed() HttpResponse createFromFiles(DeploymentCreateFromFilesParams params)
-
createFromFiles
@MustBeClosed() HttpResponse createFromFiles(RequestOptions requestOptions)
-
getLogs
@MustBeClosed() HttpResponse getLogs(String id, DeploymentGetLogsParams params)
Returns a raw HTTP response for
get /applications/v1/deployments/{id}/logs, but is otherwise the same as DeploymentService.getLogs.
-
getLogs
@MustBeClosed() HttpResponse getLogs(String id, DeploymentGetLogsParams params, RequestOptions requestOptions)
-
getLogs
@MustBeClosed() HttpResponse getLogs(DeploymentGetLogsParams params)
-
getLogs
@MustBeClosed() abstract HttpResponse getLogs(DeploymentGetLogsParams params, RequestOptions requestOptions)
-
getStatus
@MustBeClosed() HttpResponse getStatus(String id)
Returns a raw HTTP response for
get /applications/v1/deployments/{id}/status, but is otherwise the same as DeploymentService.getStatus.
-
getStatus
@MustBeClosed() HttpResponse getStatus(String id, DeploymentGetStatusParams params, RequestOptions requestOptions)
-
getStatus
@MustBeClosed() HttpResponse getStatus(String id, DeploymentGetStatusParams params)
-
getStatus
@MustBeClosed() abstract HttpResponse getStatus(DeploymentGetStatusParams params, RequestOptions requestOptions)
-
getStatus
@MustBeClosed() HttpResponse getStatus(DeploymentGetStatusParams params)
-
getStatus
@MustBeClosed() HttpResponse getStatus(String id, RequestOptions requestOptions)
-
stream
@MustBeClosed() HttpResponse stream(String id, DeploymentStreamParams params)
Returns a raw HTTP response for
get /applications/v1/deployments/{id}/stream, but is otherwise the same as DeploymentService.stream.
-
stream
@MustBeClosed() HttpResponse stream(String id, DeploymentStreamParams params, RequestOptions requestOptions)
-
stream
@MustBeClosed() HttpResponse stream(DeploymentStreamParams params)
-
stream
@MustBeClosed() abstract HttpResponse stream(DeploymentStreamParams params, RequestOptions requestOptions)
-
-
-
-