Interface VersionService.WithRawResponse
-
- All Implemented Interfaces:
public interface VersionService.WithRawResponseA view of VersionService that provides access to raw HTTP responses for each method.
-
-
Method Summary
Modifier and Type Method Description abstract VersionService.WithRawResponsewithOptions(Consumer<ClientOptions.Builder> modifier)Returns a view of this service with the given option modifications applied. HttpResponseFor<VersionListPage>list(String agentId)Returns a raw HTTP response for get /v1/agents/{agent_id}/versions?beta=true, but is otherwise the same as VersionService.list.HttpResponseFor<VersionListPage>list(String agentId, VersionListParams params, RequestOptions requestOptions)HttpResponseFor<VersionListPage>list(String agentId, VersionListParams params)abstract HttpResponseFor<VersionListPage>list(VersionListParams params, RequestOptions requestOptions)HttpResponseFor<VersionListPage>list(VersionListParams params)HttpResponseFor<VersionListPage>list(String agentId, RequestOptions requestOptions)-
-
Method Detail
-
withOptions
abstract VersionService.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<VersionListPage> list(String agentId)
Returns a raw HTTP response for
get /v1/agents/{agent_id}/versions?beta=true, but is otherwise the same as VersionService.list.
-
list
@MustBeClosed() HttpResponseFor<VersionListPage> list(String agentId, VersionListParams params, RequestOptions requestOptions)
-
list
@MustBeClosed() HttpResponseFor<VersionListPage> list(String agentId, VersionListParams params)
-
list
@MustBeClosed() abstract HttpResponseFor<VersionListPage> list(VersionListParams params, RequestOptions requestOptions)
-
list
@MustBeClosed() HttpResponseFor<VersionListPage> list(VersionListParams params)
-
list
@MustBeClosed() HttpResponseFor<VersionListPage> list(String agentId, RequestOptions requestOptions)
-
-
-
-