Interface ProjectServiceAsync.WithRawResponse
-
- All Implemented Interfaces:
public interface ProjectServiceAsync.WithRawResponseA view of ProjectServiceAsync that provides access to raw HTTP responses for each method.
-
-
Method Summary
-
-
Method Detail
-
withOptions
abstract ProjectServiceAsync.WithRawResponse withOptions(Consumer<ClientOptions.Builder> modifier)
Returns a view of this service with the given option modifications applied.
The original service is not modified.
-
users
abstract UserServiceAsync.WithRawResponse users()
-
serviceAccounts
abstract ServiceAccountServiceAsync.WithRawResponse serviceAccounts()
-
apiKeys
abstract ApiKeyServiceAsync.WithRawResponse apiKeys()
-
rateLimits
abstract RateLimitServiceAsync.WithRawResponse rateLimits()
-
modelPermissions
abstract ModelPermissionServiceAsync.WithRawResponse modelPermissions()
-
hostedToolPermissions
abstract HostedToolPermissionServiceAsync.WithRawResponse hostedToolPermissions()
-
groups
abstract GroupServiceAsync.WithRawResponse groups()
-
roles
abstract RoleServiceAsync.WithRawResponse roles()
-
dataRetention
abstract DataRetentionServiceAsync.WithRawResponse dataRetention()
-
spendAlerts
abstract SpendAlertServiceAsync.WithRawResponse spendAlerts()
-
certificates
abstract CertificateServiceAsync.WithRawResponse certificates()
-
create
CompletableFuture<HttpResponseFor<Project>> create(ProjectCreateParams params)
Returns a raw HTTP response for
post /organization/projects, but is otherwise the same as ProjectServiceAsync.create.
-
create
abstract CompletableFuture<HttpResponseFor<Project>> create(ProjectCreateParams params, RequestOptions requestOptions)
-
retrieve
CompletableFuture<HttpResponseFor<Project>> retrieve(String projectId)
Returns a raw HTTP response for
get /organization/projects/{project_id}, but is otherwise the same as ProjectServiceAsync.retrieve.
-
retrieve
CompletableFuture<HttpResponseFor<Project>> retrieve(String projectId, ProjectRetrieveParams params, RequestOptions requestOptions)
-
retrieve
CompletableFuture<HttpResponseFor<Project>> retrieve(String projectId, ProjectRetrieveParams params)
-
retrieve
abstract CompletableFuture<HttpResponseFor<Project>> retrieve(ProjectRetrieveParams params, RequestOptions requestOptions)
-
retrieve
CompletableFuture<HttpResponseFor<Project>> retrieve(ProjectRetrieveParams params)
-
retrieve
CompletableFuture<HttpResponseFor<Project>> retrieve(String projectId, RequestOptions requestOptions)
-
update
CompletableFuture<HttpResponseFor<Project>> update(String projectId)
Returns a raw HTTP response for
post /organization/projects/{project_id}, but is otherwise the same as ProjectServiceAsync.update.
-
update
CompletableFuture<HttpResponseFor<Project>> update(String projectId, ProjectUpdateParams params, RequestOptions requestOptions)
-
update
CompletableFuture<HttpResponseFor<Project>> update(String projectId, ProjectUpdateParams params)
-
update
abstract CompletableFuture<HttpResponseFor<Project>> update(ProjectUpdateParams params, RequestOptions requestOptions)
-
update
CompletableFuture<HttpResponseFor<Project>> update(ProjectUpdateParams params)
-
update
CompletableFuture<HttpResponseFor<Project>> update(String projectId, RequestOptions requestOptions)
-
list
CompletableFuture<HttpResponseFor<ProjectListPageAsync>> list()
Returns a raw HTTP response for
get /organization/projects, but is otherwise the same as ProjectServiceAsync.list.
-
list
abstract CompletableFuture<HttpResponseFor<ProjectListPageAsync>> list(ProjectListParams params, RequestOptions requestOptions)
-
list
CompletableFuture<HttpResponseFor<ProjectListPageAsync>> list(ProjectListParams params)
-
list
CompletableFuture<HttpResponseFor<ProjectListPageAsync>> list(RequestOptions requestOptions)
-
archive
CompletableFuture<HttpResponseFor<Project>> archive(String projectId)
Returns a raw HTTP response for
post /organization/projects/{project_id}/archive, but is otherwise the same as ProjectServiceAsync.archive.
-
archive
CompletableFuture<HttpResponseFor<Project>> archive(String projectId, ProjectArchiveParams params, RequestOptions requestOptions)
-
archive
CompletableFuture<HttpResponseFor<Project>> archive(String projectId, ProjectArchiveParams params)
-
archive
abstract CompletableFuture<HttpResponseFor<Project>> archive(ProjectArchiveParams params, RequestOptions requestOptions)
-
archive
CompletableFuture<HttpResponseFor<Project>> archive(ProjectArchiveParams params)
-
archive
CompletableFuture<HttpResponseFor<Project>> archive(String projectId, RequestOptions requestOptions)
-
-
-
-