Interface MetadataService.WithRawResponse
-
- All Implemented Interfaces:
public interface MetadataService.WithRawResponseA view of MetadataService that provides access to raw HTTP responses for each method.
-
-
Method Summary
-
-
Method Detail
-
withOptions
abstract MetadataService.WithRawResponse withOptions(Consumer<ClientOptions.Builder> modifier)
Returns a view of this service with the given option modifications applied.
The original service is not modified.
-
get
@MustBeClosed() HttpResponseFor<Metadata> get(String fileId)
Returns a raw HTTP response for
get /v1/files/{fileId}/metadata, but is otherwise the same as MetadataService.get.
-
get
@MustBeClosed() HttpResponseFor<Metadata> get(String fileId, MetadataGetParams params, RequestOptions requestOptions)
-
get
@MustBeClosed() HttpResponseFor<Metadata> get(String fileId, MetadataGetParams params)
-
get
@MustBeClosed() abstract HttpResponseFor<Metadata> get(MetadataGetParams params, RequestOptions requestOptions)
-
get
@MustBeClosed() HttpResponseFor<Metadata> get(MetadataGetParams params)
-
get
@MustBeClosed() HttpResponseFor<Metadata> get(String fileId, RequestOptions requestOptions)
-
getFromUrl
@MustBeClosed() HttpResponseFor<Metadata> getFromUrl(MetadataGetFromUrlParams params)
Returns a raw HTTP response for
get /v1/metadata, but is otherwise the same as MetadataService.getFromUrl.
-
getFromUrl
@MustBeClosed() abstract HttpResponseFor<Metadata> getFromUrl(MetadataGetFromUrlParams params, RequestOptions requestOptions)
-
-
-
-