Interface UrlEndpointServiceAsync
-
- All Implemented Interfaces:
public interface UrlEndpointServiceAsync
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public interfaceUrlEndpointServiceAsync.WithRawResponseA view of UrlEndpointServiceAsync that provides access to raw HTTP responses for each method.
-
Method Summary
-
-
Method Detail
-
withRawResponse
abstract UrlEndpointServiceAsync.WithRawResponse withRawResponse()
Returns a view of this service that provides access to raw HTTP responses for each method.
-
withOptions
abstract UrlEndpointServiceAsync withOptions(Consumer<ClientOptions.Builder> modifier)
Returns a view of this service with the given option modifications applied.
The original service is not modified.
-
create
CompletableFuture<UrlEndpointResponse> create(UrlEndpointCreateParams params)
Note: This API is currently in beta. Creates a new URL‑endpoint and returns the resulting object.
-
create
abstract CompletableFuture<UrlEndpointResponse> create(UrlEndpointCreateParams params, RequestOptions requestOptions)
-
create
CompletableFuture<UrlEndpointResponse> create(UrlEndpointRequest urlEndpointRequest, RequestOptions requestOptions)
-
create
CompletableFuture<UrlEndpointResponse> create(UrlEndpointRequest urlEndpointRequest)
-
update
CompletableFuture<UrlEndpointResponse> update(String id, UrlEndpointUpdateParams params)
Note: This API is currently in beta. Updates the URL‑endpoint identified by
idand returns the updated object.
-
update
CompletableFuture<UrlEndpointResponse> update(String id, UrlEndpointUpdateParams params, RequestOptions requestOptions)
-
update
CompletableFuture<UrlEndpointResponse> update(UrlEndpointUpdateParams params)
-
update
abstract CompletableFuture<UrlEndpointResponse> update(UrlEndpointUpdateParams params, RequestOptions requestOptions)
-
list
CompletableFuture<List<UrlEndpointResponse>> list()
Note: This API is currently in beta. Returns an array of all URL‑endpoints configured including the default URL-endpoint generated by ImageKit during account creation.
-
list
abstract CompletableFuture<List<UrlEndpointResponse>> list(UrlEndpointListParams params, RequestOptions requestOptions)
-
list
CompletableFuture<List<UrlEndpointResponse>> list(UrlEndpointListParams params)
-
list
CompletableFuture<List<UrlEndpointResponse>> list(RequestOptions requestOptions)
-
delete
CompletableFuture<Void> delete(String id)
Note: This API is currently in beta. Deletes the URL‑endpoint identified by
id. You cannot delete the default URL‑endpoint created by ImageKit during account creation.
-
delete
CompletableFuture<Void> delete(String id, UrlEndpointDeleteParams params, RequestOptions requestOptions)
-
delete
CompletableFuture<Void> delete(String id, UrlEndpointDeleteParams params)
-
delete
abstract CompletableFuture<Void> delete(UrlEndpointDeleteParams params, RequestOptions requestOptions)
-
delete
CompletableFuture<Void> delete(UrlEndpointDeleteParams params)
-
delete
CompletableFuture<Void> delete(String id, RequestOptions requestOptions)
-
get
CompletableFuture<UrlEndpointResponse> get(String id)
Note: This API is currently in beta. Retrieves the URL‑endpoint identified by
id.
-
get
CompletableFuture<UrlEndpointResponse> get(String id, UrlEndpointGetParams params, RequestOptions requestOptions)
-
get
CompletableFuture<UrlEndpointResponse> get(String id, UrlEndpointGetParams params)
-
get
abstract CompletableFuture<UrlEndpointResponse> get(UrlEndpointGetParams params, RequestOptions requestOptions)
-
get
CompletableFuture<UrlEndpointResponse> get(UrlEndpointGetParams params)
-
get
CompletableFuture<UrlEndpointResponse> get(String id, RequestOptions requestOptions)
-
-
-
-