Interface ProjectTagService.WithRawResponse
-
- All Implemented Interfaces:
public interface ProjectTagService.WithRawResponseA view of ProjectTagService that provides access to raw HTTP responses for each method.
-
-
Method Summary
-
-
Method Detail
-
create
@MustBeClosed() HttpResponseFor<ProjectTag> create(ProjectTagCreateParams params)
Returns a raw HTTP response for
post /v1/project_tag, but is otherwise the same as ProjectTagService.create.
-
create
@MustBeClosed() abstract HttpResponseFor<ProjectTag> create(ProjectTagCreateParams params, RequestOptions requestOptions)
-
retrieve
@MustBeClosed() HttpResponseFor<ProjectTag> retrieve(ProjectTagRetrieveParams params)
Returns a raw HTTP response for
get /v1/project_tag/{project_tag_id}, but is otherwise the same as ProjectTagService.retrieve.
-
retrieve
@MustBeClosed() abstract HttpResponseFor<ProjectTag> retrieve(ProjectTagRetrieveParams params, RequestOptions requestOptions)
-
update
@MustBeClosed() HttpResponseFor<ProjectTag> update(ProjectTagUpdateParams params)
Returns a raw HTTP response for
patch /v1/project_tag/{project_tag_id}, but is otherwise the same as ProjectTagService.update.
-
update
@MustBeClosed() abstract HttpResponseFor<ProjectTag> update(ProjectTagUpdateParams params, RequestOptions requestOptions)
-
list
@MustBeClosed() HttpResponseFor<ProjectTagListPage> list()
Returns a raw HTTP response for
get /v1/project_tag, but is otherwise the same as ProjectTagService.list.
-
list
@MustBeClosed() abstract HttpResponseFor<ProjectTagListPage> list(ProjectTagListParams params, RequestOptions requestOptions)
-
list
@MustBeClosed() HttpResponseFor<ProjectTagListPage> list(ProjectTagListParams params)
-
list
@MustBeClosed() HttpResponseFor<ProjectTagListPage> list(RequestOptions requestOptions)
-
delete
@MustBeClosed() HttpResponseFor<ProjectTag> delete(ProjectTagDeleteParams params)
Returns a raw HTTP response for
delete /v1/project_tag/{project_tag_id}, but is otherwise the same as ProjectTagService.delete.
-
delete
@MustBeClosed() abstract HttpResponseFor<ProjectTag> delete(ProjectTagDeleteParams params, RequestOptions requestOptions)
-
replace
@MustBeClosed() HttpResponseFor<ProjectTag> replace(ProjectTagReplaceParams params)
Returns a raw HTTP response for
put /v1/project_tag, but is otherwise the same as ProjectTagService.replace.
-
replace
@MustBeClosed() abstract HttpResponseFor<ProjectTag> replace(ProjectTagReplaceParams params, RequestOptions requestOptions)
-
-
-
-