Interface UrlEndpointService
-
- All Implemented Interfaces:
public interface UrlEndpointService
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public interfaceUrlEndpointService.WithRawResponseA view of UrlEndpointService that provides access to raw HTTP responses for each method.
-
Method Summary
-
-
Method Detail
-
withRawResponse
abstract UrlEndpointService.WithRawResponse withRawResponse()
Returns a view of this service that provides access to raw HTTP responses for each method.
-
withOptions
abstract UrlEndpointService withOptions(Consumer<ClientOptions.Builder> modifier)
Returns a view of this service with the given option modifications applied.
The original service is not modified.
-
create
UrlEndpointResponse create(UrlEndpointCreateParams params)
Note: This API is currently in beta. Creates a new URL‑endpoint and returns the resulting object.
-
create
abstract UrlEndpointResponse create(UrlEndpointCreateParams params, RequestOptions requestOptions)
-
create
UrlEndpointResponse create(UrlEndpointRequest urlEndpointRequest, RequestOptions requestOptions)
-
create
UrlEndpointResponse create(UrlEndpointRequest urlEndpointRequest)
-
update
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
UrlEndpointResponse update(String id, UrlEndpointUpdateParams params, RequestOptions requestOptions)
-
update
UrlEndpointResponse update(UrlEndpointUpdateParams params)
-
update
abstract UrlEndpointResponse update(UrlEndpointUpdateParams params, RequestOptions requestOptions)
-
list
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 List<UrlEndpointResponse> list(UrlEndpointListParams params, RequestOptions requestOptions)
-
list
List<UrlEndpointResponse> list(UrlEndpointListParams params)
-
list
List<UrlEndpointResponse> list(RequestOptions requestOptions)
-
delete
Unit 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
Unit delete(String id, UrlEndpointDeleteParams params, RequestOptions requestOptions)
-
delete
Unit delete(String id, UrlEndpointDeleteParams params)
-
delete
abstract Unit delete(UrlEndpointDeleteParams params, RequestOptions requestOptions)
-
delete
Unit delete(UrlEndpointDeleteParams params)
-
delete
Unit delete(String id, RequestOptions requestOptions)
-
get
UrlEndpointResponse get(String id)
Note: This API is currently in beta. Retrieves the URL‑endpoint identified by
id.
-
get
UrlEndpointResponse get(String id, UrlEndpointGetParams params, RequestOptions requestOptions)
-
get
UrlEndpointResponse get(String id, UrlEndpointGetParams params)
-
get
abstract UrlEndpointResponse get(UrlEndpointGetParams params, RequestOptions requestOptions)
-
get
UrlEndpointResponse get(UrlEndpointGetParams params)
-
get
UrlEndpointResponse get(String id, RequestOptions requestOptions)
-
-
-
-