Interface ProjectService.WithRawResponse
-
- All Implemented Interfaces:
public interface ProjectService.WithRawResponseA view of ProjectService that provides access to raw HTTP responses for each method.
-
-
Method Summary
-
-
Method Detail
-
withOptions
abstract ProjectService.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 UserService.WithRawResponse users()
-
serviceAccounts
abstract ServiceAccountService.WithRawResponse serviceAccounts()
-
apiKeys
abstract ApiKeyService.WithRawResponse apiKeys()
-
rateLimits
abstract RateLimitService.WithRawResponse rateLimits()
-
modelPermissions
abstract ModelPermissionService.WithRawResponse modelPermissions()
-
hostedToolPermissions
abstract HostedToolPermissionService.WithRawResponse hostedToolPermissions()
-
groups
abstract GroupService.WithRawResponse groups()
-
roles
abstract RoleService.WithRawResponse roles()
-
dataRetention
abstract DataRetentionService.WithRawResponse dataRetention()
-
spendAlerts
abstract SpendAlertService.WithRawResponse spendAlerts()
-
certificates
abstract CertificateService.WithRawResponse certificates()
-
create
@MustBeClosed() HttpResponseFor<Project> create(ProjectCreateParams params)
Returns a raw HTTP response for
post /organization/projects, but is otherwise the same as ProjectService.create.
-
create
@MustBeClosed() abstract HttpResponseFor<Project> create(ProjectCreateParams params, RequestOptions requestOptions)
-
retrieve
@MustBeClosed() HttpResponseFor<Project> retrieve(String projectId)
Returns a raw HTTP response for
get /organization/projects/{project_id}, but is otherwise the same as ProjectService.retrieve.
-
retrieve
@MustBeClosed() HttpResponseFor<Project> retrieve(String projectId, ProjectRetrieveParams params, RequestOptions requestOptions)
-
retrieve
@MustBeClosed() HttpResponseFor<Project> retrieve(String projectId, ProjectRetrieveParams params)
-
retrieve
@MustBeClosed() abstract HttpResponseFor<Project> retrieve(ProjectRetrieveParams params, RequestOptions requestOptions)
-
retrieve
@MustBeClosed() HttpResponseFor<Project> retrieve(ProjectRetrieveParams params)
-
retrieve
@MustBeClosed() HttpResponseFor<Project> retrieve(String projectId, RequestOptions requestOptions)
-
update
@MustBeClosed() HttpResponseFor<Project> update(String projectId)
Returns a raw HTTP response for
post /organization/projects/{project_id}, but is otherwise the same as ProjectService.update.
-
update
@MustBeClosed() HttpResponseFor<Project> update(String projectId, ProjectUpdateParams params, RequestOptions requestOptions)
-
update
@MustBeClosed() HttpResponseFor<Project> update(String projectId, ProjectUpdateParams params)
-
update
@MustBeClosed() abstract HttpResponseFor<Project> update(ProjectUpdateParams params, RequestOptions requestOptions)
-
update
@MustBeClosed() HttpResponseFor<Project> update(ProjectUpdateParams params)
-
update
@MustBeClosed() HttpResponseFor<Project> update(String projectId, RequestOptions requestOptions)
-
list
@MustBeClosed() HttpResponseFor<ProjectListPage> list()
Returns a raw HTTP response for
get /organization/projects, but is otherwise the same as ProjectService.list.
-
list
@MustBeClosed() abstract HttpResponseFor<ProjectListPage> list(ProjectListParams params, RequestOptions requestOptions)
-
list
@MustBeClosed() HttpResponseFor<ProjectListPage> list(ProjectListParams params)
-
list
@MustBeClosed() HttpResponseFor<ProjectListPage> list(RequestOptions requestOptions)
-
archive
@MustBeClosed() HttpResponseFor<Project> archive(String projectId)
Returns a raw HTTP response for
post /organization/projects/{project_id}/archive, but is otherwise the same as ProjectService.archive.
-
archive
@MustBeClosed() HttpResponseFor<Project> archive(String projectId, ProjectArchiveParams params, RequestOptions requestOptions)
-
archive
@MustBeClosed() HttpResponseFor<Project> archive(String projectId, ProjectArchiveParams params)
-
archive
@MustBeClosed() abstract HttpResponseFor<Project> archive(ProjectArchiveParams params, RequestOptions requestOptions)
-
archive
@MustBeClosed() HttpResponseFor<Project> archive(ProjectArchiveParams params)
-
archive
@MustBeClosed() HttpResponseFor<Project> archive(String projectId, RequestOptions requestOptions)
-
-
-
-