Interface CatalogService.WithRawResponse
-
- All Implemented Interfaces:
public interface CatalogService.WithRawResponseA view of CatalogService that provides access to raw HTTP responses for each method.
-
-
Method Summary
Modifier and Type Method Description abstract CatalogService.WithRawResponsewithOptions(Consumer<ClientOptions.Builder> modifier)Returns a view of this service with the given option modifications applied. HttpResponseFor<CatalogListResponse>list()Returns a raw HTTP response for get /providers/catalog, but is otherwise the same as CatalogService.list.abstract HttpResponseFor<CatalogListResponse>list(CatalogListParams params, RequestOptions requestOptions)HttpResponseFor<CatalogListResponse>list(CatalogListParams params)HttpResponseFor<CatalogListResponse>list(RequestOptions requestOptions)-
-
Method Detail
-
withOptions
abstract CatalogService.WithRawResponse withOptions(Consumer<ClientOptions.Builder> modifier)
Returns a view of this service with the given option modifications applied.
The original service is not modified.
-
list
@MustBeClosed() HttpResponseFor<CatalogListResponse> list()
Returns a raw HTTP response for
get /providers/catalog, but is otherwise the same as CatalogService.list.
-
list
@MustBeClosed() abstract HttpResponseFor<CatalogListResponse> list(CatalogListParams params, RequestOptions requestOptions)
-
list
@MustBeClosed() HttpResponseFor<CatalogListResponse> list(CatalogListParams params)
-
list
@MustBeClosed() HttpResponseFor<CatalogListResponse> list(RequestOptions requestOptions)
-
-
-
-