Interface RateLimitServiceAsync.WithRawResponse
-
- All Implemented Interfaces:
public interface RateLimitServiceAsync.WithRawResponseA view of RateLimitServiceAsync that provides access to raw HTTP responses for each method.
-
-
Method Summary
-
-
Method Detail
-
withOptions
abstract RateLimitServiceAsync.WithRawResponse withOptions(Consumer<ClientOptions.Builder> modifier)
Returns a view of this service with the given option modifications applied.
The original service is not modified.
-
listRateLimits
CompletableFuture<HttpResponseFor<RateLimitListRateLimitsPageAsync>> listRateLimits(String projectId)
Returns a raw HTTP response for
get /organization/projects/{project_id}/rate_limits, but is otherwise the same as RateLimitServiceAsync.listRateLimits.
-
listRateLimits
CompletableFuture<HttpResponseFor<RateLimitListRateLimitsPageAsync>> listRateLimits(String projectId, RateLimitListRateLimitsParams params, RequestOptions requestOptions)
-
listRateLimits
CompletableFuture<HttpResponseFor<RateLimitListRateLimitsPageAsync>> listRateLimits(String projectId, RateLimitListRateLimitsParams params)
-
listRateLimits
abstract CompletableFuture<HttpResponseFor<RateLimitListRateLimitsPageAsync>> listRateLimits(RateLimitListRateLimitsParams params, RequestOptions requestOptions)
-
listRateLimits
CompletableFuture<HttpResponseFor<RateLimitListRateLimitsPageAsync>> listRateLimits(RateLimitListRateLimitsParams params)
-
listRateLimits
CompletableFuture<HttpResponseFor<RateLimitListRateLimitsPageAsync>> listRateLimits(String projectId, RequestOptions requestOptions)
-
updateRateLimit
CompletableFuture<HttpResponseFor<ProjectRateLimit>> updateRateLimit(String rateLimitId, RateLimitUpdateRateLimitParams params)
Returns a raw HTTP response for
post /organization/projects/{project_id}/rate_limits/{rate_limit_id}, but is otherwise the same as RateLimitServiceAsync.updateRateLimit.
-
updateRateLimit
CompletableFuture<HttpResponseFor<ProjectRateLimit>> updateRateLimit(String rateLimitId, RateLimitUpdateRateLimitParams params, RequestOptions requestOptions)
-
updateRateLimit
CompletableFuture<HttpResponseFor<ProjectRateLimit>> updateRateLimit(RateLimitUpdateRateLimitParams params)
-
updateRateLimit
abstract CompletableFuture<HttpResponseFor<ProjectRateLimit>> updateRateLimit(RateLimitUpdateRateLimitParams params, RequestOptions requestOptions)
-
-
-
-