Interface PermissionService.WithRawResponse
-
- All Implemented Interfaces:
public interface PermissionService.WithRawResponse
A view of PermissionService that provides access to raw HTTP responses for each method.
-
-
Method Summary
Modifier and Type Method Description HttpResponseFor<PermissionCreatePage>
create(PermissionCreateParams params)
Returns a raw HTTP response for post /fine_tuning/checkpoints/{fine_tuned_model_checkpoint}/permissions
, but is otherwise the same as PermissionService.create.abstract HttpResponseFor<PermissionCreatePage>
create(PermissionCreateParams params, RequestOptions requestOptions)
HttpResponseFor<PermissionRetrieveResponse>
retrieve(PermissionRetrieveParams params)
Returns a raw HTTP response for get /fine_tuning/checkpoints/{fine_tuned_model_checkpoint}/permissions
, but is otherwise the same as PermissionService.retrieve.abstract HttpResponseFor<PermissionRetrieveResponse>
retrieve(PermissionRetrieveParams params, RequestOptions requestOptions)
HttpResponseFor<PermissionDeleteResponse>
delete(PermissionDeleteParams params)
Returns a raw HTTP response for delete /fine_tuning/checkpoints/{fine_tuned_model_checkpoint}/permissions
, but is otherwise the same as PermissionService.delete.abstract HttpResponseFor<PermissionDeleteResponse>
delete(PermissionDeleteParams params, RequestOptions requestOptions)
-
-
Method Detail
-
create
@MustBeClosed() HttpResponseFor<PermissionCreatePage> create(PermissionCreateParams params)
Returns a raw HTTP response for
post /fine_tuning/checkpoints/{fine_tuned_model_checkpoint}/permissions
, but is otherwise the same as PermissionService.create.
-
create
@MustBeClosed() abstract HttpResponseFor<PermissionCreatePage> create(PermissionCreateParams params, RequestOptions requestOptions)
-
retrieve
@MustBeClosed() HttpResponseFor<PermissionRetrieveResponse> retrieve(PermissionRetrieveParams params)
Returns a raw HTTP response for
get /fine_tuning/checkpoints/{fine_tuned_model_checkpoint}/permissions
, but is otherwise the same as PermissionService.retrieve.
-
retrieve
@MustBeClosed() abstract HttpResponseFor<PermissionRetrieveResponse> retrieve(PermissionRetrieveParams params, RequestOptions requestOptions)
-
delete
@MustBeClosed() HttpResponseFor<PermissionDeleteResponse> delete(PermissionDeleteParams params)
Returns a raw HTTP response for
delete /fine_tuning/checkpoints/{fine_tuned_model_checkpoint}/permissions
, but is otherwise the same as PermissionService.delete.
-
delete
@MustBeClosed() abstract HttpResponseFor<PermissionDeleteResponse> delete(PermissionDeleteParams params, RequestOptions requestOptions)
-
-
-
-