Interface ProjectTagServiceAsync
-
- All Implemented Interfaces:
public interface ProjectTagServiceAsync
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public interfaceProjectTagServiceAsync.WithRawResponseA view of ProjectTagServiceAsync that provides access to raw HTTP responses for each method.
-
Method Summary
-
-
Method Detail
-
withRawResponse
abstract ProjectTagServiceAsync.WithRawResponse withRawResponse()
Returns a view of this service that provides access to raw HTTP responses for each method.
-
create
CompletableFuture<ProjectTag> create(ProjectTagCreateParams params)
Create a new project_tag. If there is an existing project_tag in the project with the same name as the one specified in the request, will return the existing project_tag unmodified
-
create
abstract CompletableFuture<ProjectTag> create(ProjectTagCreateParams params, RequestOptions requestOptions)
-
retrieve
CompletableFuture<ProjectTag> retrieve(ProjectTagRetrieveParams params)
Get a project_tag object by its id
-
retrieve
abstract CompletableFuture<ProjectTag> retrieve(ProjectTagRetrieveParams params, RequestOptions requestOptions)
-
update
CompletableFuture<ProjectTag> update(ProjectTagUpdateParams params)
Partially update a project_tag object. Specify the fields to update in the payload. Any object-type fields will be deep-merged with existing content. Currently we do not support removing fields or setting them to null.
-
update
abstract CompletableFuture<ProjectTag> update(ProjectTagUpdateParams params, RequestOptions requestOptions)
-
list
CompletableFuture<ProjectTagListPageAsync> list()
List out all project_tags. The project_tags are sorted by creation date, with the most recently-created project_tags coming first
-
list
abstract CompletableFuture<ProjectTagListPageAsync> list(ProjectTagListParams params, RequestOptions requestOptions)
-
list
CompletableFuture<ProjectTagListPageAsync> list(ProjectTagListParams params)
-
list
CompletableFuture<ProjectTagListPageAsync> list(RequestOptions requestOptions)
-
delete
CompletableFuture<ProjectTag> delete(ProjectTagDeleteParams params)
Delete a project_tag object by its id
-
delete
abstract CompletableFuture<ProjectTag> delete(ProjectTagDeleteParams params, RequestOptions requestOptions)
-
replace
CompletableFuture<ProjectTag> replace(ProjectTagReplaceParams params)
Create or replace project_tag. If there is an existing project_tag in the project with the same name as the one specified in the request, will replace the existing project_tag with the provided fields
-
replace
abstract CompletableFuture<ProjectTag> replace(ProjectTagReplaceParams params, RequestOptions requestOptions)
-
-
-
-