Interface CatalogServiceAsync
-
- All Implemented Interfaces:
public interface CatalogServiceAsync
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public interfaceCatalogServiceAsync.WithRawResponseA view of CatalogServiceAsync that provides access to raw HTTP responses for each method.
-
Method Summary
Modifier and Type Method Description abstract CatalogServiceAsync.WithRawResponsewithRawResponse()Returns a view of this service that provides access to raw HTTP responses for each method. abstract CatalogServiceAsyncwithOptions(Consumer<ClientOptions.Builder> modifier)Returns a view of this service with the given option modifications applied. CompletableFuture<CatalogListResponse>list()Returns the catalog of available provider types with their display names, descriptions, and configuration schema fields (snake_case, with typeandrequired).abstract CompletableFuture<CatalogListResponse>list(CatalogListParams params, RequestOptions requestOptions)CompletableFuture<CatalogListResponse>list(CatalogListParams params)CompletableFuture<CatalogListResponse>list(RequestOptions requestOptions)-
-
Method Detail
-
withRawResponse
abstract CatalogServiceAsync.WithRawResponse withRawResponse()
Returns a view of this service that provides access to raw HTTP responses for each method.
-
withOptions
abstract CatalogServiceAsync withOptions(Consumer<ClientOptions.Builder> modifier)
Returns a view of this service with the given option modifications applied.
The original service is not modified.
-
list
CompletableFuture<CatalogListResponse> list()
Returns the catalog of available provider types with their display names, descriptions, and configuration schema fields (snake_case, with
typeandrequired). Providers with no configurable schema return onlyprovider,name, anddescription.
-
list
abstract CompletableFuture<CatalogListResponse> list(CatalogListParams params, RequestOptions requestOptions)
-
list
CompletableFuture<CatalogListResponse> list(CatalogListParams params)
-
list
CompletableFuture<CatalogListResponse> list(RequestOptions requestOptions)
-
-
-
-