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
-
-
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.
-
retrieve
@MustBeClosed() 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 ApiKeyService.retrieve.
-
retrieve
@MustBeClosed() HttpResponseFor<ProjectApiKey> retrieve(String apiKeyId, ApiKeyRetrieveParams params, RequestOptions requestOptions)
-
retrieve
@MustBeClosed() HttpResponseFor<ProjectApiKey> retrieve(ApiKeyRetrieveParams params)
-
retrieve
@MustBeClosed() abstract HttpResponseFor<ProjectApiKey> retrieve(ApiKeyRetrieveParams params, RequestOptions requestOptions)
-
list
@MustBeClosed() HttpResponseFor<ApiKeyListPage> list(String projectId)
Returns a raw HTTP response for
get /organization/projects/{project_id}/api_keys, but is otherwise the same as ApiKeyService.list.
-
list
@MustBeClosed() HttpResponseFor<ApiKeyListPage> list(String projectId, ApiKeyListParams params, RequestOptions requestOptions)
-
list
@MustBeClosed() HttpResponseFor<ApiKeyListPage> list(String projectId, ApiKeyListParams params)
-
list
@MustBeClosed() abstract HttpResponseFor<ApiKeyListPage> list(ApiKeyListParams params, RequestOptions requestOptions)
-
list
@MustBeClosed() HttpResponseFor<ApiKeyListPage> list(ApiKeyListParams params)
-
list
@MustBeClosed() HttpResponseFor<ApiKeyListPage> list(String projectId, RequestOptions requestOptions)
-
delete
@MustBeClosed() 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 ApiKeyService.delete.
-
delete
@MustBeClosed() HttpResponseFor<ApiKeyDeleteResponse> delete(String apiKeyId, ApiKeyDeleteParams params, RequestOptions requestOptions)
-
delete
@MustBeClosed() HttpResponseFor<ApiKeyDeleteResponse> delete(ApiKeyDeleteParams params)
-
delete
@MustBeClosed() abstract HttpResponseFor<ApiKeyDeleteResponse> delete(ApiKeyDeleteParams params, RequestOptions requestOptions)
-
-
-
-