Interface EnvironmentServiceAsync.WithRawResponse
-
- All Implemented Interfaces:
public interface EnvironmentServiceAsync.WithRawResponseA view of EnvironmentServiceAsync that provides access to raw HTTP responses for each method.
-
-
Method Summary
-
-
Method Detail
-
withOptions
abstract EnvironmentServiceAsync.WithRawResponse withOptions(Consumer<ClientOptions.Builder> modifier)
Returns a view of this service with the given option modifications applied.
The original service is not modified.
-
work
abstract WorkServiceAsync.WithRawResponse work()
-
create
CompletableFuture<HttpResponseFor<BetaEnvironment>> create(EnvironmentCreateParams params)
Returns a raw HTTP response for
post /v1/environments?beta=true, but is otherwise the same as EnvironmentServiceAsync.create.
-
create
abstract CompletableFuture<HttpResponseFor<BetaEnvironment>> create(EnvironmentCreateParams params, RequestOptions requestOptions)
-
retrieve
CompletableFuture<HttpResponseFor<BetaEnvironment>> retrieve(String environmentId)
Returns a raw HTTP response for
get /v1/environments/{environment_id}?beta=true, but is otherwise the same as EnvironmentServiceAsync.retrieve.
-
retrieve
CompletableFuture<HttpResponseFor<BetaEnvironment>> retrieve(String environmentId, EnvironmentRetrieveParams params, RequestOptions requestOptions)
-
retrieve
CompletableFuture<HttpResponseFor<BetaEnvironment>> retrieve(String environmentId, EnvironmentRetrieveParams params)
-
retrieve
abstract CompletableFuture<HttpResponseFor<BetaEnvironment>> retrieve(EnvironmentRetrieveParams params, RequestOptions requestOptions)
-
retrieve
CompletableFuture<HttpResponseFor<BetaEnvironment>> retrieve(EnvironmentRetrieveParams params)
-
retrieve
CompletableFuture<HttpResponseFor<BetaEnvironment>> retrieve(String environmentId, RequestOptions requestOptions)
-
update
CompletableFuture<HttpResponseFor<BetaEnvironment>> update(String environmentId)
Returns a raw HTTP response for
post /v1/environments/{environment_id}?beta=true, but is otherwise the same as EnvironmentServiceAsync.update.
-
update
CompletableFuture<HttpResponseFor<BetaEnvironment>> update(String environmentId, EnvironmentUpdateParams params, RequestOptions requestOptions)
-
update
CompletableFuture<HttpResponseFor<BetaEnvironment>> update(String environmentId, EnvironmentUpdateParams params)
-
update
abstract CompletableFuture<HttpResponseFor<BetaEnvironment>> update(EnvironmentUpdateParams params, RequestOptions requestOptions)
-
update
CompletableFuture<HttpResponseFor<BetaEnvironment>> update(EnvironmentUpdateParams params)
-
update
CompletableFuture<HttpResponseFor<BetaEnvironment>> update(String environmentId, RequestOptions requestOptions)
-
list
CompletableFuture<HttpResponseFor<EnvironmentListPageAsync>> list()
Returns a raw HTTP response for
get /v1/environments?beta=true, but is otherwise the same as EnvironmentServiceAsync.list.
-
list
abstract CompletableFuture<HttpResponseFor<EnvironmentListPageAsync>> list(EnvironmentListParams params, RequestOptions requestOptions)
-
list
CompletableFuture<HttpResponseFor<EnvironmentListPageAsync>> list(EnvironmentListParams params)
-
list
CompletableFuture<HttpResponseFor<EnvironmentListPageAsync>> list(RequestOptions requestOptions)
-
delete
CompletableFuture<HttpResponseFor<BetaEnvironmentDeleteResponse>> delete(String environmentId)
Returns a raw HTTP response for
delete /v1/environments/{environment_id}?beta=true, but is otherwise the same as EnvironmentServiceAsync.delete.
-
delete
CompletableFuture<HttpResponseFor<BetaEnvironmentDeleteResponse>> delete(String environmentId, EnvironmentDeleteParams params, RequestOptions requestOptions)
-
delete
CompletableFuture<HttpResponseFor<BetaEnvironmentDeleteResponse>> delete(String environmentId, EnvironmentDeleteParams params)
-
delete
abstract CompletableFuture<HttpResponseFor<BetaEnvironmentDeleteResponse>> delete(EnvironmentDeleteParams params, RequestOptions requestOptions)
-
delete
CompletableFuture<HttpResponseFor<BetaEnvironmentDeleteResponse>> delete(EnvironmentDeleteParams params)
-
delete
CompletableFuture<HttpResponseFor<BetaEnvironmentDeleteResponse>> delete(String environmentId, RequestOptions requestOptions)
-
archive
CompletableFuture<HttpResponseFor<BetaEnvironment>> archive(String environmentId)
Returns a raw HTTP response for
post /v1/environments/{environment_id}/archive?beta=true, but is otherwise the same as EnvironmentServiceAsync.archive.
-
archive
CompletableFuture<HttpResponseFor<BetaEnvironment>> archive(String environmentId, EnvironmentArchiveParams params, RequestOptions requestOptions)
-
archive
CompletableFuture<HttpResponseFor<BetaEnvironment>> archive(String environmentId, EnvironmentArchiveParams params)
-
archive
abstract CompletableFuture<HttpResponseFor<BetaEnvironment>> archive(EnvironmentArchiveParams params, RequestOptions requestOptions)
-
archive
CompletableFuture<HttpResponseFor<BetaEnvironment>> archive(EnvironmentArchiveParams params)
-
archive
CompletableFuture<HttpResponseFor<BetaEnvironment>> archive(String environmentId, RequestOptions requestOptions)
-
-
-
-