Interface ApiKeyService.WithRawResponse
-
- All Implemented Interfaces:
public interface ApiKeyService.WithRawResponseA view of ApiKeyService that provides access to raw HTTP responses for each method.
-
-
Method Summary
Modifier and Type Method Description abstract ApiKeyService.WithRawResponsewithOptions(Consumer<ClientOptions.Builder> modifier)Returns a view of this service with the given option modifications applied. HttpResponseFor<ApiKeyCreateResponse>create(String workspaceId)Returns a raw HTTP response for post /workspaces/{workspaceId}/api-keys, but is otherwise the same as ApiKeyService.create.HttpResponseFor<ApiKeyCreateResponse>create(String workspaceId, ApiKeyCreateParams params, RequestOptions requestOptions)HttpResponseFor<ApiKeyCreateResponse>create(String workspaceId, ApiKeyCreateParams params)abstract HttpResponseFor<ApiKeyCreateResponse>create(ApiKeyCreateParams params, RequestOptions requestOptions)HttpResponseFor<ApiKeyCreateResponse>create(ApiKeyCreateParams params)HttpResponseFor<ApiKeyCreateResponse>create(String workspaceId, RequestOptions requestOptions)-
-
Method Detail
-
withOptions
abstract ApiKeyService.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() HttpResponseFor<ApiKeyCreateResponse> create(String workspaceId)
Returns a raw HTTP response for
post /workspaces/{workspaceId}/api-keys, but is otherwise the same as ApiKeyService.create.
-
create
@MustBeClosed() HttpResponseFor<ApiKeyCreateResponse> create(String workspaceId, ApiKeyCreateParams params, RequestOptions requestOptions)
-
create
@MustBeClosed() HttpResponseFor<ApiKeyCreateResponse> create(String workspaceId, ApiKeyCreateParams params)
-
create
@MustBeClosed() abstract HttpResponseFor<ApiKeyCreateResponse> create(ApiKeyCreateParams params, RequestOptions requestOptions)
-
create
@MustBeClosed() HttpResponseFor<ApiKeyCreateResponse> create(ApiKeyCreateParams params)
-
create
@MustBeClosed() HttpResponseFor<ApiKeyCreateResponse> create(String workspaceId, RequestOptions requestOptions)
-
-
-
-