Interface ApiKeyServiceAsync.WithRawResponse
-
- All Implemented Interfaces:
public interface ApiKeyServiceAsync.WithRawResponseA view of ApiKeyServiceAsync that provides access to raw HTTP responses for each method.
-
-
Method Summary
-
-
Method Detail
-
withOptions
abstract ApiKeyServiceAsync.WithRawResponse withOptions(Consumer<ClientOptions.Builder> modifier)
Returns a view of this service with the given option modifications applied.
The original service is not modified.
-
retrieve
CompletableFuture<HttpResponseFor<ProjectApiKey>> retrieve(String apiKeyId, ApiKeyRetrieveParams params)
Returns a raw HTTP response for
get /organization/projects/{project_id}/api_keys/{api_key_id}, but is otherwise the same as ApiKeyServiceAsync.retrieve.
-
retrieve
CompletableFuture<HttpResponseFor<ProjectApiKey>> retrieve(String apiKeyId, ApiKeyRetrieveParams params, RequestOptions requestOptions)
-
retrieve
CompletableFuture<HttpResponseFor<ProjectApiKey>> retrieve(ApiKeyRetrieveParams params)
-
retrieve
abstract CompletableFuture<HttpResponseFor<ProjectApiKey>> retrieve(ApiKeyRetrieveParams params, RequestOptions requestOptions)
-
list
CompletableFuture<HttpResponseFor<ApiKeyListPageAsync>> list(String projectId)
Returns a raw HTTP response for
get /organization/projects/{project_id}/api_keys, but is otherwise the same as ApiKeyServiceAsync.list.
-
list
CompletableFuture<HttpResponseFor<ApiKeyListPageAsync>> list(String projectId, ApiKeyListParams params, RequestOptions requestOptions)
-
list
CompletableFuture<HttpResponseFor<ApiKeyListPageAsync>> list(String projectId, ApiKeyListParams params)
-
list
abstract CompletableFuture<HttpResponseFor<ApiKeyListPageAsync>> list(ApiKeyListParams params, RequestOptions requestOptions)
-
list
CompletableFuture<HttpResponseFor<ApiKeyListPageAsync>> list(ApiKeyListParams params)
-
list
CompletableFuture<HttpResponseFor<ApiKeyListPageAsync>> list(String projectId, RequestOptions requestOptions)
-
delete
CompletableFuture<HttpResponseFor<ApiKeyDeleteResponse>> delete(String apiKeyId, ApiKeyDeleteParams params)
Returns a raw HTTP response for
delete /organization/projects/{project_id}/api_keys/{api_key_id}, but is otherwise the same as ApiKeyServiceAsync.delete.
-
delete
CompletableFuture<HttpResponseFor<ApiKeyDeleteResponse>> delete(String apiKeyId, ApiKeyDeleteParams params, RequestOptions requestOptions)
-
delete
CompletableFuture<HttpResponseFor<ApiKeyDeleteResponse>> delete(ApiKeyDeleteParams params)
-
delete
abstract CompletableFuture<HttpResponseFor<ApiKeyDeleteResponse>> delete(ApiKeyDeleteParams params, RequestOptions requestOptions)
-
-
-
-