Package com.lithic.api.services.blocking
Interface AuthStreamEnrollmentService.WithRawResponse
-
- All Implemented Interfaces:
public interface AuthStreamEnrollmentService.WithRawResponseA view of AuthStreamEnrollmentService that provides access to raw HTTP responses for each method.
-
-
Method Summary
Modifier and Type Method Description HttpResponseFor<AuthStreamSecret>retrieveSecret()Returns a raw HTTP response for get /v1/auth_stream/secret, but is otherwise the same as AuthStreamEnrollmentService.retrieveSecret.abstract HttpResponseFor<AuthStreamSecret>retrieveSecret(AuthStreamEnrollmentRetrieveSecretParams params, RequestOptions requestOptions)HttpResponseFor<AuthStreamSecret>retrieveSecret(AuthStreamEnrollmentRetrieveSecretParams params)HttpResponseFor<AuthStreamSecret>retrieveSecret(RequestOptions requestOptions)HttpResponserotateSecret()Returns a raw HTTP response for post /v1/auth_stream/secret/rotate, but is otherwise the same as AuthStreamEnrollmentService.rotateSecret.abstract HttpResponserotateSecret(AuthStreamEnrollmentRotateSecretParams params, RequestOptions requestOptions)HttpResponserotateSecret(AuthStreamEnrollmentRotateSecretParams params)HttpResponserotateSecret(RequestOptions requestOptions)-
-
Method Detail
-
retrieveSecret
@MustBeClosed() HttpResponseFor<AuthStreamSecret> retrieveSecret()
Returns a raw HTTP response for
get /v1/auth_stream/secret, but is otherwise the same as AuthStreamEnrollmentService.retrieveSecret.
-
retrieveSecret
@MustBeClosed() abstract HttpResponseFor<AuthStreamSecret> retrieveSecret(AuthStreamEnrollmentRetrieveSecretParams params, RequestOptions requestOptions)
-
retrieveSecret
@MustBeClosed() HttpResponseFor<AuthStreamSecret> retrieveSecret(AuthStreamEnrollmentRetrieveSecretParams params)
-
retrieveSecret
@MustBeClosed() HttpResponseFor<AuthStreamSecret> retrieveSecret(RequestOptions requestOptions)
-
rotateSecret
@MustBeClosed() HttpResponse rotateSecret()
Returns a raw HTTP response for
post /v1/auth_stream/secret/rotate, but is otherwise the same as AuthStreamEnrollmentService.rotateSecret.
-
rotateSecret
@MustBeClosed() abstract HttpResponse rotateSecret(AuthStreamEnrollmentRotateSecretParams params, RequestOptions requestOptions)
-
rotateSecret
@MustBeClosed() HttpResponse rotateSecret(AuthStreamEnrollmentRotateSecretParams params)
-
rotateSecret
@MustBeClosed() HttpResponse rotateSecret(RequestOptions requestOptions)
-
-
-
-